/*!
 * 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 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0; }

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

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

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

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

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

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

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

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

small {
  font-size: 80%; }

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

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

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

pre {
  overflow: auto; }

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

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

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

input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield; }

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

fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0; }

legend {
  padding: 0;
  border: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
  .table td,
  .table th {
    background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(/public/f4769f9bdb7466be65088239c12046d1.eot);
  src: url(/public/f4769f9bdb7466be65088239c12046d1.eot?#iefix) format("embedded-opentype"), url(/public/448c34a56d699c29117adc64c43affeb.woff2) format("woff2"), url(/public/fa2772327f55d8198301fdb8bcfc8158.woff) format("woff"), url(/public/e18bbf611f2a2e43afc071aa2f4e1512.ttf) format("truetype"), url(/public/89889688147bd7575d6327160d64e760.svg#glyphicons_halflingsregular) format("svg"); }

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "*"; }

.glyphicon-plus:before {
  content: "+"; }

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20AC"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before {
  content: "\270F"; }

.glyphicon-glass:before {
  content: "\E001"; }

.glyphicon-music:before {
  content: "\E002"; }

.glyphicon-search:before {
  content: "\E003"; }

.glyphicon-heart:before {
  content: "\E005"; }

.glyphicon-star:before {
  content: "\E006"; }

.glyphicon-star-empty:before {
  content: "\E007"; }

.glyphicon-user:before {
  content: "\E008"; }

.glyphicon-film:before {
  content: "\E009"; }

.glyphicon-th-large:before {
  content: "\E010"; }

.glyphicon-th:before {
  content: "\E011"; }

.glyphicon-th-list:before {
  content: "\E012"; }

.glyphicon-ok:before {
  content: "\E013"; }

.glyphicon-remove:before {
  content: "\E014"; }

.glyphicon-zoom-in:before {
  content: "\E015"; }

.glyphicon-zoom-out:before {
  content: "\E016"; }

.glyphicon-off:before {
  content: "\E017"; }

.glyphicon-signal:before {
  content: "\E018"; }

.glyphicon-cog:before {
  content: "\E019"; }

.glyphicon-trash:before {
  content: "\E020"; }

.glyphicon-home:before {
  content: "\E021"; }

.glyphicon-file:before {
  content: "\E022"; }

.glyphicon-time:before {
  content: "\E023"; }

.glyphicon-road:before {
  content: "\E024"; }

.glyphicon-download-alt:before {
  content: "\E025"; }

.glyphicon-download:before {
  content: "\E026"; }

.glyphicon-upload:before {
  content: "\E027"; }

.glyphicon-inbox:before {
  content: "\E028"; }

.glyphicon-play-circle:before {
  content: "\E029"; }

.glyphicon-repeat:before {
  content: "\E030"; }

.glyphicon-refresh:before {
  content: "\E031"; }

.glyphicon-list-alt:before {
  content: "\E032"; }

.glyphicon-lock:before {
  content: "\E033"; }

.glyphicon-flag:before {
  content: "\E034"; }

.glyphicon-headphones:before {
  content: "\E035"; }

.glyphicon-volume-off:before {
  content: "\E036"; }

.glyphicon-volume-down:before {
  content: "\E037"; }

.glyphicon-volume-up:before {
  content: "\E038"; }

.glyphicon-qrcode:before {
  content: "\E039"; }

.glyphicon-barcode:before {
  content: "\E040"; }

.glyphicon-tag:before {
  content: "\E041"; }

.glyphicon-tags:before {
  content: "\E042"; }

.glyphicon-book:before {
  content: "\E043"; }

.glyphicon-bookmark:before {
  content: "\E044"; }

.glyphicon-print:before {
  content: "\E045"; }

.glyphicon-camera:before {
  content: "\E046"; }

.glyphicon-font:before {
  content: "\E047"; }

.glyphicon-bold:before {
  content: "\E048"; }

.glyphicon-italic:before {
  content: "\E049"; }

.glyphicon-text-height:before {
  content: "\E050"; }

.glyphicon-text-width:before {
  content: "\E051"; }

.glyphicon-align-left:before {
  content: "\E052"; }

.glyphicon-align-center:before {
  content: "\E053"; }

.glyphicon-align-right:before {
  content: "\E054"; }

.glyphicon-align-justify:before {
  content: "\E055"; }

.glyphicon-list:before {
  content: "\E056"; }

.glyphicon-indent-left:before {
  content: "\E057"; }

.glyphicon-indent-right:before {
  content: "\E058"; }

.glyphicon-facetime-video:before {
  content: "\E059"; }

.glyphicon-picture:before {
  content: "\E060"; }

.glyphicon-map-marker:before {
  content: "\E062"; }

.glyphicon-adjust:before {
  content: "\E063"; }

.glyphicon-tint:before {
  content: "\E064"; }

.glyphicon-edit:before {
  content: "\E065"; }

.glyphicon-share:before {
  content: "\E066"; }

.glyphicon-check:before {
  content: "\E067"; }

.glyphicon-move:before {
  content: "\E068"; }

.glyphicon-step-backward:before {
  content: "\E069"; }

.glyphicon-fast-backward:before {
  content: "\E070"; }

.glyphicon-backward:before {
  content: "\E071"; }

.glyphicon-play:before {
  content: "\E072"; }

.glyphicon-pause:before {
  content: "\E073"; }

.glyphicon-stop:before {
  content: "\E074"; }

.glyphicon-forward:before {
  content: "\E075"; }

.glyphicon-fast-forward:before {
  content: "\E076"; }

.glyphicon-step-forward:before {
  content: "\E077"; }

.glyphicon-eject:before {
  content: "\E078"; }

.glyphicon-chevron-left:before {
  content: "\E079"; }

.glyphicon-chevron-right:before {
  content: "\E080"; }

.glyphicon-plus-sign:before {
  content: "\E081"; }

.glyphicon-minus-sign:before {
  content: "\E082"; }

.glyphicon-remove-sign:before {
  content: "\E083"; }

.glyphicon-ok-sign:before {
  content: "\E084"; }

.glyphicon-question-sign:before {
  content: "\E085"; }

.glyphicon-info-sign:before {
  content: "\E086"; }

.glyphicon-screenshot:before {
  content: "\E087"; }

.glyphicon-remove-circle:before {
  content: "\E088"; }

.glyphicon-ok-circle:before {
  content: "\E089"; }

.glyphicon-ban-circle:before {
  content: "\E090"; }

.glyphicon-arrow-left:before {
  content: "\E091"; }

.glyphicon-arrow-right:before {
  content: "\E092"; }

.glyphicon-arrow-up:before {
  content: "\E093"; }

.glyphicon-arrow-down:before {
  content: "\E094"; }

.glyphicon-share-alt:before {
  content: "\E095"; }

.glyphicon-resize-full:before {
  content: "\E096"; }

.glyphicon-resize-small:before {
  content: "\E097"; }

.glyphicon-exclamation-sign:before {
  content: "\E101"; }

.glyphicon-gift:before {
  content: "\E102"; }

.glyphicon-leaf:before {
  content: "\E103"; }

.glyphicon-fire:before {
  content: "\E104"; }

.glyphicon-eye-open:before {
  content: "\E105"; }

.glyphicon-eye-close:before {
  content: "\E106"; }

.glyphicon-warning-sign:before {
  content: "\E107"; }

.glyphicon-plane:before {
  content: "\E108"; }

.glyphicon-calendar:before {
  content: "\E109"; }

.glyphicon-random:before {
  content: "\E110"; }

.glyphicon-comment:before {
  content: "\E111"; }

.glyphicon-magnet:before {
  content: "\E112"; }

.glyphicon-chevron-up:before {
  content: "\E113"; }

.glyphicon-chevron-down:before {
  content: "\E114"; }

.glyphicon-retweet:before {
  content: "\E115"; }

.glyphicon-shopping-cart:before {
  content: "\E116"; }

.glyphicon-folder-close:before {
  content: "\E117"; }

.glyphicon-folder-open:before {
  content: "\E118"; }

.glyphicon-resize-vertical:before {
  content: "\E119"; }

.glyphicon-resize-horizontal:before {
  content: "\E120"; }

.glyphicon-hdd:before {
  content: "\E121"; }

.glyphicon-bullhorn:before {
  content: "\E122"; }

.glyphicon-bell:before {
  content: "\E123"; }

.glyphicon-certificate:before {
  content: "\E124"; }

.glyphicon-thumbs-up:before {
  content: "\E125"; }

.glyphicon-thumbs-down:before {
  content: "\E126"; }

.glyphicon-hand-right:before {
  content: "\E127"; }

.glyphicon-hand-left:before {
  content: "\E128"; }

.glyphicon-hand-up:before {
  content: "\E129"; }

.glyphicon-hand-down:before {
  content: "\E130"; }

.glyphicon-circle-arrow-right:before {
  content: "\E131"; }

.glyphicon-circle-arrow-left:before {
  content: "\E132"; }

.glyphicon-circle-arrow-up:before {
  content: "\E133"; }

.glyphicon-circle-arrow-down:before {
  content: "\E134"; }

.glyphicon-globe:before {
  content: "\E135"; }

.glyphicon-wrench:before {
  content: "\E136"; }

.glyphicon-tasks:before {
  content: "\E137"; }

.glyphicon-filter:before {
  content: "\E138"; }

.glyphicon-briefcase:before {
  content: "\E139"; }

.glyphicon-fullscreen:before {
  content: "\E140"; }

.glyphicon-dashboard:before {
  content: "\E141"; }

.glyphicon-paperclip:before {
  content: "\E142"; }

.glyphicon-heart-empty:before {
  content: "\E143"; }

.glyphicon-link:before {
  content: "\E144"; }

.glyphicon-phone:before {
  content: "\E145"; }

.glyphicon-pushpin:before {
  content: "\E146"; }

.glyphicon-usd:before {
  content: "\E148"; }

.glyphicon-gbp:before {
  content: "\E149"; }

.glyphicon-sort:before {
  content: "\E150"; }

.glyphicon-sort-by-alphabet:before {
  content: "\E151"; }

.glyphicon-sort-by-alphabet-alt:before {
  content: "\E152"; }

.glyphicon-sort-by-order:before {
  content: "\E153"; }

.glyphicon-sort-by-order-alt:before {
  content: "\E154"; }

.glyphicon-sort-by-attributes:before {
  content: "\E155"; }

.glyphicon-sort-by-attributes-alt:before {
  content: "\E156"; }

.glyphicon-unchecked:before {
  content: "\E157"; }

.glyphicon-expand:before {
  content: "\E158"; }

.glyphicon-collapse-down:before {
  content: "\E159"; }

.glyphicon-collapse-up:before {
  content: "\E160"; }

.glyphicon-log-in:before {
  content: "\E161"; }

.glyphicon-flash:before {
  content: "\E162"; }

.glyphicon-log-out:before {
  content: "\E163"; }

.glyphicon-new-window:before {
  content: "\E164"; }

.glyphicon-record:before {
  content: "\E165"; }

.glyphicon-save:before {
  content: "\E166"; }

.glyphicon-open:before {
  content: "\E167"; }

.glyphicon-saved:before {
  content: "\E168"; }

.glyphicon-import:before {
  content: "\E169"; }

.glyphicon-export:before {
  content: "\E170"; }

.glyphicon-send:before {
  content: "\E171"; }

.glyphicon-floppy-disk:before {
  content: "\E172"; }

.glyphicon-floppy-saved:before {
  content: "\E173"; }

.glyphicon-floppy-remove:before {
  content: "\E174"; }

.glyphicon-floppy-save:before {
  content: "\E175"; }

.glyphicon-floppy-open:before {
  content: "\E176"; }

.glyphicon-credit-card:before {
  content: "\E177"; }

.glyphicon-transfer:before {
  content: "\E178"; }

.glyphicon-cutlery:before {
  content: "\E179"; }

.glyphicon-header:before {
  content: "\E180"; }

.glyphicon-compressed:before {
  content: "\E181"; }

.glyphicon-earphone:before {
  content: "\E182"; }

.glyphicon-phone-alt:before {
  content: "\E183"; }

.glyphicon-tower:before {
  content: "\E184"; }

.glyphicon-stats:before {
  content: "\E185"; }

.glyphicon-sd-video:before {
  content: "\E186"; }

.glyphicon-hd-video:before {
  content: "\E187"; }

.glyphicon-subtitles:before {
  content: "\E188"; }

.glyphicon-sound-stereo:before {
  content: "\E189"; }

.glyphicon-sound-dolby:before {
  content: "\E190"; }

.glyphicon-sound-5-1:before {
  content: "\E191"; }

.glyphicon-sound-6-1:before {
  content: "\E192"; }

.glyphicon-sound-7-1:before {
  content: "\E193"; }

.glyphicon-copyright-mark:before {
  content: "\E194"; }

.glyphicon-registration-mark:before {
  content: "\E195"; }

.glyphicon-cloud-download:before {
  content: "\E197"; }

.glyphicon-cloud-upload:before {
  content: "\E198"; }

.glyphicon-tree-conifer:before {
  content: "\E199"; }

.glyphicon-tree-deciduous:before {
  content: "\E200"; }

.glyphicon-cd:before {
  content: "\E201"; }

.glyphicon-save-file:before {
  content: "\E202"; }

.glyphicon-open-file:before {
  content: "\E203"; }

.glyphicon-level-up:before {
  content: "\E204"; }

.glyphicon-copy:before {
  content: "\E205"; }

.glyphicon-paste:before {
  content: "\E206"; }

.glyphicon-alert:before {
  content: "\E209"; }

.glyphicon-equalizer:before {
  content: "\E210"; }

.glyphicon-king:before {
  content: "\E211"; }

.glyphicon-queen:before {
  content: "\E212"; }

.glyphicon-pawn:before {
  content: "\E213"; }

.glyphicon-bishop:before {
  content: "\E214"; }

.glyphicon-knight:before {
  content: "\E215"; }

.glyphicon-baby-formula:before {
  content: "\E216"; }

.glyphicon-tent:before {
  content: "\26FA"; }

.glyphicon-blackboard:before {
  content: "\E218"; }

.glyphicon-bed:before {
  content: "\E219"; }

.glyphicon-apple:before {
  content: "\F8FF"; }

.glyphicon-erase:before {
  content: "\E221"; }

.glyphicon-hourglass:before {
  content: "\231B"; }

.glyphicon-lamp:before {
  content: "\E223"; }

.glyphicon-duplicate:before {
  content: "\E224"; }

.glyphicon-piggy-bank:before {
  content: "\E225"; }

.glyphicon-scissors:before {
  content: "\E226"; }

.glyphicon-bitcoin:before {
  content: "\E227"; }

.glyphicon-btc:before {
  content: "\E227"; }

.glyphicon-xbt:before {
  content: "\E227"; }

.glyphicon-yen:before {
  content: "\A5"; }

.glyphicon-jpy:before {
  content: "\A5"; }

.glyphicon-ruble:before {
  content: "\20BD"; }

.glyphicon-rub:before {
  content: "\20BD"; }

.glyphicon-scale:before {
  content: "\E230"; }

.glyphicon-ice-lolly:before {
  content: "\E231"; }

.glyphicon-ice-lolly-tasted:before {
  content: "\E232"; }

.glyphicon-education:before {
  content: "\E233"; }

.glyphicon-option-horizontal:before {
  content: "\E234"; }

.glyphicon-option-vertical:before {
  content: "\E235"; }

.glyphicon-menu-hamburger:before {
  content: "\E236"; }

.glyphicon-modal-window:before {
  content: "\E237"; }

.glyphicon-oil:before {
  content: "\E238"; }

.glyphicon-grain:before {
  content: "\E239"; }

.glyphicon-sunglasses:before {
  content: "\E240"; }

.glyphicon-text-size:before {
  content: "\E241"; }

.glyphicon-text-color:before {
  content: "\E242"; }

.glyphicon-text-background:before {
  content: "\E243"; }

.glyphicon-object-align-top:before {
  content: "\E244"; }

.glyphicon-object-align-bottom:before {
  content: "\E245"; }

.glyphicon-object-align-horizontal:before {
  content: "\E246"; }

.glyphicon-object-align-left:before {
  content: "\E247"; }

.glyphicon-object-align-vertical:before {
  content: "\E248"; }

.glyphicon-object-align-right:before {
  content: "\E249"; }

.glyphicon-triangle-right:before {
  content: "\E250"; }

.glyphicon-triangle-left:before {
  content: "\E251"; }

.glyphicon-triangle-bottom:before {
  content: "\E252"; }

.glyphicon-triangle-top:before {
  content: "\E253"; }

.glyphicon-console:before {
  content: "\E254"; }

.glyphicon-superscript:before {
  content: "\E255"; }

.glyphicon-subscript:before {
  content: "\E256"; }

.glyphicon-menu-left:before {
  content: "\E257"; }

.glyphicon-menu-right:before {
  content: "\E258"; }

.glyphicon-menu-down:before {
  content: "\E259"; }

.glyphicon-menu-up:before {
  content: "\E260"; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #337ab7;
  text-decoration: none; }

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline; }

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777; }

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px; }

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%; }

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px; }

h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%; }

h1,
.h1 {
  font-size: 36px; }

h2,
.h2 {
  font-size: 30px; }

h3,
.h3 {
  font-size: 24px; }

h4,
.h4 {
  font-size: 18px; }

h5,
.h5 {
  font-size: 14px; }

h6,
.h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }

@media (min-width: 768px) {
  .lead {
    font-size: 21px; } }

small,
.small {
  font-size: 85%; }

mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #777; }

.text-primary {
  color: #337ab7; }

a.text-primary:hover,
a.text-primary:focus {
  color: #286090; }

.text-success {
  color: #3c763d; }

a.text-success:hover,
a.text-success:focus {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff;
  background-color: #337ab7; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none; }

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.42857143; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee; }

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0; }

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777; }

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014   \A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0; }

.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: ''; }

.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\A0   \2014'; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 768px) {
  .container {
    width: 750px; } }

@media (min-width: 992px) {
  .container {
    width: 970px; } }

@media (min-width: 1200px) {
  .container {
    width: 1170px; } }

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.row {
  margin-right: -15px;
  margin-left: -15px; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0; } }

table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd; }

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd; }

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0; }

.table > tbody + tbody {
  border-top: 2px solid #ddd; }

.table .table {
  background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd; }

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none; }

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

.table-responsive {
  min-height: .01%;
  overflow-x: auto; }

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd; }
  .table-responsive > .table {
    margin-bottom: 0; }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap; }
  .table-responsive > .table-bordered {
    border: 0; }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0; } }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555; }

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; }

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1; }

.form-control:-ms-input-placeholder {
  color: #999; }

.form-control::-webkit-input-placeholder {
  color: #999; }

.form-control::-ms-expand {
  background-color: transparent;
  border: 0; }

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1; }

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed; }

textarea.form-control {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px; }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px; } }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }

.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed; }

.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0; }

.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0; }

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm {
  height: 30px;
  line-height: 30px; }

textarea.input-sm,
select[multiple].input-sm {
  height: auto; }

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px; }

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5; }

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

select.input-lg {
  height: 46px;
  line-height: 46px; }

textarea.input-lg,
select[multiple].input-lg {
  height: auto; }

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px; }

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333; }

.has-feedback {
  position: relative; }

.has-feedback .form-control {
  padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d; }

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b; }

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442; }

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 25px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right; } }

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px; } }

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none; }

.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: .65; }

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }

.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c; }

.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad; }

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad; }

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c; }

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none; }

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc; }

.btn-default .badge {
  color: #fff;
  background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40; }

.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74; }

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74; }

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40; }

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none; }

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4; }

.btn-primary .badge {
  color: #337ab7;
  background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625; }

.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439; }

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439; }

.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625; }

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none; }

.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c; }

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85; }

.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc; }

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc; }

.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85; }

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none; }

.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da; }

.btn-info .badge {
  color: #5bc0de;
  background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }

.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d; }

.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512; }

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512; }

.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d; }

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none; }

.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236; }

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19; }

.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925; }

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925; }

.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19; }

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none; }

.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a; }

.btn-danger .badge {
  color: #d9534f;
  background-color: #fff; }

.btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0; }

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none; }

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent; }

.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent; }

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none; }

.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear; }

.fade.in {
  opacity: 1; }

.collapse {
  display: none; }

.collapse.in {
  display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  -o-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }

.dropdown-menu.pull-right {
  right: 0;
  left: auto; }

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap; }

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0; }

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777; }

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  right: 0;
  left: auto; }

.dropdown-menu-left {
  right: auto;
  left: 0; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left; }

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2; }

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left; }

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child {
  margin-left: 0; }

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px; }

.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%; }

.btn-group-justified > .btn-group .btn {
  width: 100%; }

.btn-group-justified > .btn-group .dropdown-menu {
  left: auto; }

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }

.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0; }

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0; }

.input-group .form-control:focus {
  z-index: 3; }

.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px; }

textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto; }

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px; }

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto; }

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px; }

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px; }

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px; }

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }

.input-group-btn > .btn {
  position: relative; }

.input-group-btn > .btn + .btn {
  margin-left: -1px; }

.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2; }

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px; }

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px; }

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav > li {
  position: relative;
  display: block; }

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px; }

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee; }

.nav > li.disabled > a {
  color: #777; }

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent; }

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7; }

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.nav > li > a > img {
  max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }

.nav-tabs > li {
  float: left;
  margin-bottom: -1px; }

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0; }

.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent; }

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0; }

.nav-tabs.nav-justified > li {
  float: none; }

.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center; }

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff; } }

.nav-pills > li {
  float: left; }

.nav-pills > li > a {
  border-radius: 4px; }

.nav-pills > li + li {
  margin-left: 2px; }

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7; }

.nav-stacked > li {
  float: none; }

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0; }

.nav-justified {
  width: 100%; }

.nav-justified > li {
  float: none; }

.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center; }

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs-justified {
  border-bottom: 0; }

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd; }

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px; } }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); }

.navbar-collapse.in {
  overflow-y: auto; }

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important; }
  .navbar-collapse.in {
    overflow-y: visible; }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px; } }

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }

@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }

@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px; }

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none; }

.navbar-brand > img {
  display: block; }

@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

.navbar-toggle:focus {
  outline: 0; }

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px; }

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px; }

@media (min-width: 768px) {
  .navbar-toggle {
    display: none; } }

.navbar-nav {
  margin: 7.5px -15px; }

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px; }

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px; }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px; }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none; } }

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0; }
  .navbar-nav > li {
    float: left; }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px; } }

.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); }

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .navbar-form .form-control-static {
    display: inline-block; }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle; }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto; }
  .navbar-form .input-group > .form-control {
    width: 100%; }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0; }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0; } }

@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px; }
  .navbar-form .form-group:last-child {
    margin-bottom: 0; } }

@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }

.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px; }

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
  .navbar-right ~ .navbar-right {
    margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }

.navbar-default .navbar-brand {
  color: #777; }

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent; }

.navbar-default .navbar-text {
  color: #777; }

.navbar-default .navbar-nav > li > a {
  color: #777; }

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent; }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7; }

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent; }

.navbar-default .navbar-toggle {
  border-color: #ddd; }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd; }

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888; }

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7; }

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7; }

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777; }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent; }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; } }

.navbar-default .navbar-link {
  color: #777; }

.navbar-default .navbar-link:hover {
  color: #333; }

.navbar-default .btn-link {
  color: #777; }

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333; }

.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #080808; }

.navbar-inverse .navbar-brand {
  color: #9d9d9d; }

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent; }

.navbar-inverse .navbar-text {
  color: #9d9d9d; }

.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d; }

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent; }

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808; }

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent; }

.navbar-inverse .navbar-toggle {
  border-color: #333; }

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333; }

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff; }

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010; }

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808; }

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent; } }

.navbar-inverse .navbar-link {
  color: #9d9d9d; }

.navbar-inverse .navbar-link:hover {
  color: #fff; }

.navbar-inverse .btn-link {
  color: #9d9d9d; }

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff; }

.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }

.breadcrumb > li {
  display: inline-block; }

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\A0"; }

.breadcrumb > .active {
  color: #777; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }

.pagination > li {
  display: inline; }

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd; }

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd; }

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7; }

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none; }

.pager li {
  display: inline; }

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px; }

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee; }

.pager .next > a,
.pager .next > span {
  float: right; }

.pager .previous > a,
.pager .previous > span {
  float: left; }

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }

a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label:empty {
  display: none; }

.btn .label {
  position: relative;
  top: -1px; }

.label-default {
  background-color: #777; }

.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e; }

.label-primary {
  background-color: #337ab7; }

.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090; }

.label-success {
  background-color: #5cb85c; }

.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }

.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }

.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }

.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px; }

.badge:empty {
  display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px; }

a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff; }

.list-group-item > .badge {
  float: right; }

.list-group-item > .badge + .badge {
  margin-right: 5px; }

.nav-pills > li > a > .badge {
  margin-left: 3px; }

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee; }

.jumbotron h1,
.jumbotron .h1 {
  color: inherit; }

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200; }

.jumbotron > hr {
  border-top-color: #d5d5d5; }

.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px; }

.jumbotron .container {
  max-width: 100%; }

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px; }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px; }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px; } }

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
  -o-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out; }

.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto; }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7; }

.thumbnail .caption {
  padding: 9px;
  color: #333; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }

.alert h4 {
  margin-top: 0;
  color: inherit; }

.alert .alert-link {
  font-weight: bold; }

.alert > p,
.alert > ul {
  margin-bottom: 0; }

.alert > p + p {
  margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit; }

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }

.alert-success hr {
  border-top-color: #c9e2b3; }

.alert-success .alert-link {
  color: #2b542c; }

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1; }

.alert-info hr {
  border-top-color: #a6e1ec; }

.alert-info .alert-link {
  color: #245269; }

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc; }

.alert-warning hr {
  border-top-color: #f7e1b5; }

.alert-warning .alert-link {
  color: #66512c; }

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }

.alert-danger hr {
  border-top-color: #e4b9c0; }

.alert-danger .alert-link {
  color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease; }

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #5cb85c; }

.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #5bc0de; }

.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #f0ad4e; }

.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #d9534f; }

.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media {
  margin-top: 15px; }

.media:first-child {
  margin-top: 0; }

.media,
.media-body {
  overflow: hidden;
  zoom: 1; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }

.media-object.img-thumbnail {
  max-width: none; }

.media-right,
.media > .pull-right {
  padding-left: 10px; }

.media-left,
.media > .pull-left {
  padding-right: 10px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  padding-left: 0;
  margin-bottom: 20px; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }

.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

a.list-group-item,
button.list-group-item {
  color: #555; }

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333; }

a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #eee; }

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit; }

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777; }

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7; }

.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit; }

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit; }

a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6; }

a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit; }

a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3; }

a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit; }

a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc; }

a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit; }

a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc; }

a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0; }

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px; }

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px; }

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0; }

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0; }

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0; }

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0; }

.panel > .table-responsive {
  margin-bottom: 0;
  border: 0; }

.panel-group {
  margin-bottom: 20px; }

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px; }

.panel-group .panel + .panel {
  margin-top: 5px; }

.panel-group .panel-heading {
  border-bottom: 0; }

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd; }

.panel-group .panel-footer {
  border-top: 0; }

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }

.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd; }

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd; }

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333; }

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd; }

.panel-primary {
  border-color: #337ab7; }

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7; }

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7; }

.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff; }

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7; }

.panel-success {
  border-color: #d6e9c6; }

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6; }

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d; }

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1; }

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1; }

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f; }

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc; }

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc; }

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b; }

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1; }

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442; }

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 6px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2; }

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5; }

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%); }

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0; }

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5; }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;
  line-break: auto; }

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9; }

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px; }

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px; }

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px; }

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  line-break: auto; }

.popover.top {
  margin-top: -10px; }

.popover.right {
  margin-left: 10px; }

.popover.bottom {
  margin-top: 10px; }

.popover.left {
  margin-left: -10px; }

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  content: "";
  border-width: 10px; }

.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0; }

.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0; }

.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0; }

.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25); }

.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25); }

.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
  -o-transition: .6s ease-in-out left;
  transition: .6s ease-in-out left; }

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1; }

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
    -o-transition: -o-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px; }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block; }

.carousel-inner > .active {
  left: 0; }

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%; }

.carousel-inner > .next {
  left: 100%; }

.carousel-inner > .prev {
  left: -100%; }

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0; }

.carousel-inner > .active.left {
  left: -100%; }

.carousel-inner > .active.right {
  left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: transparent;
  filter: alpha(opacity=50);
  opacity: .5; }

.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x; }

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x; }

.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9; }

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px; }

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px; }

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px; }

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1; }

.carousel-control .icon-prev:before {
  content: '\2039'; }

.carousel-control .icon-next:before {
  content: '\203A'; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none; }

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 10px; }

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }

.carousel-caption .btn {
  text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " "; }

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both; }

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

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

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

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

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }

@media print {
  .visible-print-block {
    display: block !important; } }

.visible-print-inline {
  display: none !important; }

@media print {
  .visible-print-inline {
    display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }

@media print {
  .visible-print-inline-block {
    display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/*# sourceMappingURL=bootstrap.css.map */
/*
 * Social Buttons for Bootstrap
 *
 * Copyright 2013-2016 Panayiotis Lipiridis
 * Licensed under the MIT License
 *
 * https://github.com/lipis/bootstrap-social
 */
.btn-social {
  position: relative;
  padding-left: 44px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.btn-social > :first-child {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  line-height: 34px;
  font-size: 1.6em;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.2); }

.btn-social.btn-lg {
  padding-left: 61px; }

.btn-social.btn-lg > :first-child {
  line-height: 45px;
  width: 45px;
  font-size: 1.8em; }

.btn-social.btn-sm {
  padding-left: 38px; }

.btn-social.btn-sm > :first-child {
  line-height: 28px;
  width: 28px;
  font-size: 1.4em; }

.btn-social.btn-xs {
  padding-left: 30px; }

.btn-social.btn-xs > :first-child {
  line-height: 20px;
  width: 20px;
  font-size: 1.2em; }

.btn-social-icon {
  position: relative;
  padding-left: 44px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 34px;
  width: 34px;
  padding: 0; }

.btn-social-icon > :first-child {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  line-height: 34px;
  font-size: 1.6em;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.2); }

.btn-social-icon.btn-lg {
  padding-left: 61px; }

.btn-social-icon.btn-lg > :first-child {
  line-height: 45px;
  width: 45px;
  font-size: 1.8em; }

.btn-social-icon.btn-sm {
  padding-left: 38px; }

.btn-social-icon.btn-sm > :first-child {
  line-height: 28px;
  width: 28px;
  font-size: 1.4em; }

.btn-social-icon.btn-xs {
  padding-left: 30px; }

.btn-social-icon.btn-xs > :first-child {
  line-height: 20px;
  width: 20px;
  font-size: 1.2em; }

.btn-social-icon > :first-child {
  border: none;
  text-align: center;
  width: 100% !important; }

.btn-social-icon.btn-lg {
  height: 45px;
  width: 45px;
  padding-left: 0;
  padding-right: 0; }

.btn-social-icon.btn-sm {
  height: 30px;
  width: 30px;
  padding-left: 0;
  padding-right: 0; }

.btn-social-icon.btn-xs {
  height: 22px;
  width: 22px;
  padding-left: 0;
  padding-right: 0; }

.btn-adn {
  color: #fff;
  background-color: #d87a68;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-adn:focus, .btn-adn.focus {
  color: #fff;
  background-color: #ce563f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-adn:hover {
  color: #fff;
  background-color: #ce563f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-adn:active, .btn-adn.active, .open > .dropdown-toggle.btn-adn {
  color: #fff;
  background-color: #ce563f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-adn:active:hover, .btn-adn.active:hover, .open > .dropdown-toggle.btn-adn:hover, .btn-adn:active:focus, .btn-adn.active:focus, .open > .dropdown-toggle.btn-adn:focus, .btn-adn:active.focus, .btn-adn.active.focus, .open > .dropdown-toggle.btn-adn.focus {
  color: #fff;
  background-color: #b94630;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-adn:active, .btn-adn.active, .open > .dropdown-toggle.btn-adn {
  background-image: none; }

.btn-adn.disabled:hover, .btn-adn[disabled]:hover, fieldset[disabled] .btn-adn:hover, .btn-adn.disabled:focus, .btn-adn[disabled]:focus, fieldset[disabled] .btn-adn:focus, .btn-adn.disabled.focus, .btn-adn[disabled].focus, fieldset[disabled] .btn-adn.focus {
  background-color: #d87a68;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-adn .badge {
  color: #d87a68;
  background-color: #fff; }

.btn-bitbucket {
  color: #fff;
  background-color: #205081;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-bitbucket:focus, .btn-bitbucket.focus {
  color: #fff;
  background-color: #163758;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-bitbucket:hover {
  color: #fff;
  background-color: #163758;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-bitbucket:active, .btn-bitbucket.active, .open > .dropdown-toggle.btn-bitbucket {
  color: #fff;
  background-color: #163758;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-bitbucket:active:hover, .btn-bitbucket.active:hover, .open > .dropdown-toggle.btn-bitbucket:hover, .btn-bitbucket:active:focus, .btn-bitbucket.active:focus, .open > .dropdown-toggle.btn-bitbucket:focus, .btn-bitbucket:active.focus, .btn-bitbucket.active.focus, .open > .dropdown-toggle.btn-bitbucket.focus {
  color: #fff;
  background-color: #0f253c;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-bitbucket:active, .btn-bitbucket.active, .open > .dropdown-toggle.btn-bitbucket {
  background-image: none; }

.btn-bitbucket.disabled:hover, .btn-bitbucket[disabled]:hover, fieldset[disabled] .btn-bitbucket:hover, .btn-bitbucket.disabled:focus, .btn-bitbucket[disabled]:focus, fieldset[disabled] .btn-bitbucket:focus, .btn-bitbucket.disabled.focus, .btn-bitbucket[disabled].focus, fieldset[disabled] .btn-bitbucket.focus {
  background-color: #205081;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-bitbucket .badge {
  color: #205081;
  background-color: #fff; }

.btn-dropbox {
  color: #fff;
  background-color: #1087dd;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-dropbox:focus, .btn-dropbox.focus {
  color: #fff;
  background-color: #0d6aad;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-dropbox:hover {
  color: #fff;
  background-color: #0d6aad;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-dropbox:active, .btn-dropbox.active, .open > .dropdown-toggle.btn-dropbox {
  color: #fff;
  background-color: #0d6aad;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-dropbox:active:hover, .btn-dropbox.active:hover, .open > .dropdown-toggle.btn-dropbox:hover, .btn-dropbox:active:focus, .btn-dropbox.active:focus, .open > .dropdown-toggle.btn-dropbox:focus, .btn-dropbox:active.focus, .btn-dropbox.active.focus, .open > .dropdown-toggle.btn-dropbox.focus {
  color: #fff;
  background-color: #0a568c;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-dropbox:active, .btn-dropbox.active, .open > .dropdown-toggle.btn-dropbox {
  background-image: none; }

.btn-dropbox.disabled:hover, .btn-dropbox[disabled]:hover, fieldset[disabled] .btn-dropbox:hover, .btn-dropbox.disabled:focus, .btn-dropbox[disabled]:focus, fieldset[disabled] .btn-dropbox:focus, .btn-dropbox.disabled.focus, .btn-dropbox[disabled].focus, fieldset[disabled] .btn-dropbox.focus {
  background-color: #1087dd;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-dropbox .badge {
  color: #1087dd;
  background-color: #fff; }

.btn-facebook {
  color: #fff;
  background-color: #3b5998;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-facebook:focus, .btn-facebook.focus {
  color: #fff;
  background-color: #2d4373;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-facebook:hover {
  color: #fff;
  background-color: #2d4373;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-facebook:active, .btn-facebook.active, .open > .dropdown-toggle.btn-facebook {
  color: #fff;
  background-color: #2d4373;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-facebook:active:hover, .btn-facebook.active:hover, .open > .dropdown-toggle.btn-facebook:hover, .btn-facebook:active:focus, .btn-facebook.active:focus, .open > .dropdown-toggle.btn-facebook:focus, .btn-facebook:active.focus, .btn-facebook.active.focus, .open > .dropdown-toggle.btn-facebook.focus {
  color: #fff;
  background-color: #23345a;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-facebook:active, .btn-facebook.active, .open > .dropdown-toggle.btn-facebook {
  background-image: none; }

.btn-facebook.disabled:hover, .btn-facebook[disabled]:hover, fieldset[disabled] .btn-facebook:hover, .btn-facebook.disabled:focus, .btn-facebook[disabled]:focus, fieldset[disabled] .btn-facebook:focus, .btn-facebook.disabled.focus, .btn-facebook[disabled].focus, fieldset[disabled] .btn-facebook.focus {
  background-color: #3b5998;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-facebook .badge {
  color: #3b5998;
  background-color: #fff; }

.btn-flickr {
  color: #fff;
  background-color: #ff0084;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-flickr:focus, .btn-flickr.focus {
  color: #fff;
  background-color: #cc006a;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-flickr:hover {
  color: #fff;
  background-color: #cc006a;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-flickr:active, .btn-flickr.active, .open > .dropdown-toggle.btn-flickr {
  color: #fff;
  background-color: #cc006a;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-flickr:active:hover, .btn-flickr.active:hover, .open > .dropdown-toggle.btn-flickr:hover, .btn-flickr:active:focus, .btn-flickr.active:focus, .open > .dropdown-toggle.btn-flickr:focus, .btn-flickr:active.focus, .btn-flickr.active.focus, .open > .dropdown-toggle.btn-flickr.focus {
  color: #fff;
  background-color: #a80057;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-flickr:active, .btn-flickr.active, .open > .dropdown-toggle.btn-flickr {
  background-image: none; }

.btn-flickr.disabled:hover, .btn-flickr[disabled]:hover, fieldset[disabled] .btn-flickr:hover, .btn-flickr.disabled:focus, .btn-flickr[disabled]:focus, fieldset[disabled] .btn-flickr:focus, .btn-flickr.disabled.focus, .btn-flickr[disabled].focus, fieldset[disabled] .btn-flickr.focus {
  background-color: #ff0084;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-flickr .badge {
  color: #ff0084;
  background-color: #fff; }

.btn-foursquare {
  color: #fff;
  background-color: #f94877;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-foursquare:focus, .btn-foursquare.focus {
  color: #fff;
  background-color: #f71752;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-foursquare:hover {
  color: #fff;
  background-color: #f71752;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-foursquare:active, .btn-foursquare.active, .open > .dropdown-toggle.btn-foursquare {
  color: #fff;
  background-color: #f71752;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-foursquare:active:hover, .btn-foursquare.active:hover, .open > .dropdown-toggle.btn-foursquare:hover, .btn-foursquare:active:focus, .btn-foursquare.active:focus, .open > .dropdown-toggle.btn-foursquare:focus, .btn-foursquare:active.focus, .btn-foursquare.active.focus, .open > .dropdown-toggle.btn-foursquare.focus {
  color: #fff;
  background-color: #e30742;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-foursquare:active, .btn-foursquare.active, .open > .dropdown-toggle.btn-foursquare {
  background-image: none; }

.btn-foursquare.disabled:hover, .btn-foursquare[disabled]:hover, fieldset[disabled] .btn-foursquare:hover, .btn-foursquare.disabled:focus, .btn-foursquare[disabled]:focus, fieldset[disabled] .btn-foursquare:focus, .btn-foursquare.disabled.focus, .btn-foursquare[disabled].focus, fieldset[disabled] .btn-foursquare.focus {
  background-color: #f94877;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-foursquare .badge {
  color: #f94877;
  background-color: #fff; }

.btn-github {
  color: #fff;
  background-color: #444;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-github:focus, .btn-github.focus {
  color: #fff;
  background-color: #2b2b2b;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-github:hover {
  color: #fff;
  background-color: #2b2b2b;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-github:active, .btn-github.active, .open > .dropdown-toggle.btn-github {
  color: #fff;
  background-color: #2b2b2b;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-github:active:hover, .btn-github.active:hover, .open > .dropdown-toggle.btn-github:hover, .btn-github:active:focus, .btn-github.active:focus, .open > .dropdown-toggle.btn-github:focus, .btn-github:active.focus, .btn-github.active.focus, .open > .dropdown-toggle.btn-github.focus {
  color: #fff;
  background-color: #191919;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-github:active, .btn-github.active, .open > .dropdown-toggle.btn-github {
  background-image: none; }

.btn-github.disabled:hover, .btn-github[disabled]:hover, fieldset[disabled] .btn-github:hover, .btn-github.disabled:focus, .btn-github[disabled]:focus, fieldset[disabled] .btn-github:focus, .btn-github.disabled.focus, .btn-github[disabled].focus, fieldset[disabled] .btn-github.focus {
  background-color: #444;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-github .badge {
  color: #444;
  background-color: #fff; }

.btn-google {
  color: #fff;
  background-color: #dd4b39;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-google:focus, .btn-google.focus {
  color: #fff;
  background-color: #c23321;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-google:hover {
  color: #fff;
  background-color: #c23321;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-google:active, .btn-google.active, .open > .dropdown-toggle.btn-google {
  color: #fff;
  background-color: #c23321;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-google:active:hover, .btn-google.active:hover, .open > .dropdown-toggle.btn-google:hover, .btn-google:active:focus, .btn-google.active:focus, .open > .dropdown-toggle.btn-google:focus, .btn-google:active.focus, .btn-google.active.focus, .open > .dropdown-toggle.btn-google.focus {
  color: #fff;
  background-color: #a32b1c;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-google:active, .btn-google.active, .open > .dropdown-toggle.btn-google {
  background-image: none; }

.btn-google.disabled:hover, .btn-google[disabled]:hover, fieldset[disabled] .btn-google:hover, .btn-google.disabled:focus, .btn-google[disabled]:focus, fieldset[disabled] .btn-google:focus, .btn-google.disabled.focus, .btn-google[disabled].focus, fieldset[disabled] .btn-google.focus {
  background-color: #dd4b39;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-google .badge {
  color: #dd4b39;
  background-color: #fff; }

.btn-instagram {
  color: #fff;
  background-color: #3f729b;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-instagram:focus, .btn-instagram.focus {
  color: #fff;
  background-color: #305777;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-instagram:hover {
  color: #fff;
  background-color: #305777;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-instagram:active, .btn-instagram.active, .open > .dropdown-toggle.btn-instagram {
  color: #fff;
  background-color: #305777;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-instagram:active:hover, .btn-instagram.active:hover, .open > .dropdown-toggle.btn-instagram:hover, .btn-instagram:active:focus, .btn-instagram.active:focus, .open > .dropdown-toggle.btn-instagram:focus, .btn-instagram:active.focus, .btn-instagram.active.focus, .open > .dropdown-toggle.btn-instagram.focus {
  color: #fff;
  background-color: #26455d;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-instagram:active, .btn-instagram.active, .open > .dropdown-toggle.btn-instagram {
  background-image: none; }

.btn-instagram.disabled:hover, .btn-instagram[disabled]:hover, fieldset[disabled] .btn-instagram:hover, .btn-instagram.disabled:focus, .btn-instagram[disabled]:focus, fieldset[disabled] .btn-instagram:focus, .btn-instagram.disabled.focus, .btn-instagram[disabled].focus, fieldset[disabled] .btn-instagram.focus {
  background-color: #3f729b;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-instagram .badge {
  color: #3f729b;
  background-color: #fff; }

.btn-linkedin {
  color: #fff;
  background-color: #007bb6;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-linkedin:focus, .btn-linkedin.focus {
  color: #fff;
  background-color: #005983;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-linkedin:hover {
  color: #fff;
  background-color: #005983;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-linkedin:active, .btn-linkedin.active, .open > .dropdown-toggle.btn-linkedin {
  color: #fff;
  background-color: #005983;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-linkedin:active:hover, .btn-linkedin.active:hover, .open > .dropdown-toggle.btn-linkedin:hover, .btn-linkedin:active:focus, .btn-linkedin.active:focus, .open > .dropdown-toggle.btn-linkedin:focus, .btn-linkedin:active.focus, .btn-linkedin.active.focus, .open > .dropdown-toggle.btn-linkedin.focus {
  color: #fff;
  background-color: #00405f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-linkedin:active, .btn-linkedin.active, .open > .dropdown-toggle.btn-linkedin {
  background-image: none; }

.btn-linkedin.disabled:hover, .btn-linkedin[disabled]:hover, fieldset[disabled] .btn-linkedin:hover, .btn-linkedin.disabled:focus, .btn-linkedin[disabled]:focus, fieldset[disabled] .btn-linkedin:focus, .btn-linkedin.disabled.focus, .btn-linkedin[disabled].focus, fieldset[disabled] .btn-linkedin.focus {
  background-color: #007bb6;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-linkedin .badge {
  color: #007bb6;
  background-color: #fff; }

.btn-microsoft {
  color: #fff;
  background-color: #2672ec;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-microsoft:focus, .btn-microsoft.focus {
  color: #fff;
  background-color: #125acd;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-microsoft:hover {
  color: #fff;
  background-color: #125acd;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-microsoft:active, .btn-microsoft.active, .open > .dropdown-toggle.btn-microsoft {
  color: #fff;
  background-color: #125acd;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-microsoft:active:hover, .btn-microsoft.active:hover, .open > .dropdown-toggle.btn-microsoft:hover, .btn-microsoft:active:focus, .btn-microsoft.active:focus, .open > .dropdown-toggle.btn-microsoft:focus, .btn-microsoft:active.focus, .btn-microsoft.active.focus, .open > .dropdown-toggle.btn-microsoft.focus {
  color: #fff;
  background-color: #0f4bac;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-microsoft:active, .btn-microsoft.active, .open > .dropdown-toggle.btn-microsoft {
  background-image: none; }

.btn-microsoft.disabled:hover, .btn-microsoft[disabled]:hover, fieldset[disabled] .btn-microsoft:hover, .btn-microsoft.disabled:focus, .btn-microsoft[disabled]:focus, fieldset[disabled] .btn-microsoft:focus, .btn-microsoft.disabled.focus, .btn-microsoft[disabled].focus, fieldset[disabled] .btn-microsoft.focus {
  background-color: #2672ec;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-microsoft .badge {
  color: #2672ec;
  background-color: #fff; }

.btn-odnoklassniki {
  color: #fff;
  background-color: #f4731c;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-odnoklassniki:focus, .btn-odnoklassniki.focus {
  color: #fff;
  background-color: #d35b0a;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-odnoklassniki:hover {
  color: #fff;
  background-color: #d35b0a;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-odnoklassniki:active, .btn-odnoklassniki.active, .open > .dropdown-toggle.btn-odnoklassniki {
  color: #fff;
  background-color: #d35b0a;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-odnoklassniki:active:hover, .btn-odnoklassniki.active:hover, .open > .dropdown-toggle.btn-odnoklassniki:hover, .btn-odnoklassniki:active:focus, .btn-odnoklassniki.active:focus, .open > .dropdown-toggle.btn-odnoklassniki:focus, .btn-odnoklassniki:active.focus, .btn-odnoklassniki.active.focus, .open > .dropdown-toggle.btn-odnoklassniki.focus {
  color: #fff;
  background-color: #b14c09;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-odnoklassniki:active, .btn-odnoklassniki.active, .open > .dropdown-toggle.btn-odnoklassniki {
  background-image: none; }

.btn-odnoklassniki.disabled:hover, .btn-odnoklassniki[disabled]:hover, fieldset[disabled] .btn-odnoklassniki:hover, .btn-odnoklassniki.disabled:focus, .btn-odnoklassniki[disabled]:focus, fieldset[disabled] .btn-odnoklassniki:focus, .btn-odnoklassniki.disabled.focus, .btn-odnoklassniki[disabled].focus, fieldset[disabled] .btn-odnoklassniki.focus {
  background-color: #f4731c;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-odnoklassniki .badge {
  color: #f4731c;
  background-color: #fff; }

.btn-openid {
  color: #fff;
  background-color: #f7931e;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-openid:focus, .btn-openid.focus {
  color: #fff;
  background-color: #da7908;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-openid:hover {
  color: #fff;
  background-color: #da7908;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-openid:active, .btn-openid.active, .open > .dropdown-toggle.btn-openid {
  color: #fff;
  background-color: #da7908;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-openid:active:hover, .btn-openid.active:hover, .open > .dropdown-toggle.btn-openid:hover, .btn-openid:active:focus, .btn-openid.active:focus, .open > .dropdown-toggle.btn-openid:focus, .btn-openid:active.focus, .btn-openid.active.focus, .open > .dropdown-toggle.btn-openid.focus {
  color: #fff;
  background-color: #b86607;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-openid:active, .btn-openid.active, .open > .dropdown-toggle.btn-openid {
  background-image: none; }

.btn-openid.disabled:hover, .btn-openid[disabled]:hover, fieldset[disabled] .btn-openid:hover, .btn-openid.disabled:focus, .btn-openid[disabled]:focus, fieldset[disabled] .btn-openid:focus, .btn-openid.disabled.focus, .btn-openid[disabled].focus, fieldset[disabled] .btn-openid.focus {
  background-color: #f7931e;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-openid .badge {
  color: #f7931e;
  background-color: #fff; }

.btn-pinterest {
  color: #fff;
  background-color: #cb2027;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-pinterest:focus, .btn-pinterest.focus {
  color: #fff;
  background-color: #9f191f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-pinterest:hover {
  color: #fff;
  background-color: #9f191f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-pinterest:active, .btn-pinterest.active, .open > .dropdown-toggle.btn-pinterest {
  color: #fff;
  background-color: #9f191f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-pinterest:active:hover, .btn-pinterest.active:hover, .open > .dropdown-toggle.btn-pinterest:hover, .btn-pinterest:active:focus, .btn-pinterest.active:focus, .open > .dropdown-toggle.btn-pinterest:focus, .btn-pinterest:active.focus, .btn-pinterest.active.focus, .open > .dropdown-toggle.btn-pinterest.focus {
  color: #fff;
  background-color: #801419;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-pinterest:active, .btn-pinterest.active, .open > .dropdown-toggle.btn-pinterest {
  background-image: none; }

.btn-pinterest.disabled:hover, .btn-pinterest[disabled]:hover, fieldset[disabled] .btn-pinterest:hover, .btn-pinterest.disabled:focus, .btn-pinterest[disabled]:focus, fieldset[disabled] .btn-pinterest:focus, .btn-pinterest.disabled.focus, .btn-pinterest[disabled].focus, fieldset[disabled] .btn-pinterest.focus {
  background-color: #cb2027;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-pinterest .badge {
  color: #cb2027;
  background-color: #fff; }

.btn-reddit {
  color: #000;
  background-color: #eff7ff;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-reddit:focus, .btn-reddit.focus {
  color: #000;
  background-color: #bcddff;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-reddit:hover {
  color: #000;
  background-color: #bcddff;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-reddit:active, .btn-reddit.active, .open > .dropdown-toggle.btn-reddit {
  color: #000;
  background-color: #bcddff;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-reddit:active:hover, .btn-reddit.active:hover, .open > .dropdown-toggle.btn-reddit:hover, .btn-reddit:active:focus, .btn-reddit.active:focus, .open > .dropdown-toggle.btn-reddit:focus, .btn-reddit:active.focus, .btn-reddit.active.focus, .open > .dropdown-toggle.btn-reddit.focus {
  color: #000;
  background-color: #98ccff;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-reddit:active, .btn-reddit.active, .open > .dropdown-toggle.btn-reddit {
  background-image: none; }

.btn-reddit.disabled:hover, .btn-reddit[disabled]:hover, fieldset[disabled] .btn-reddit:hover, .btn-reddit.disabled:focus, .btn-reddit[disabled]:focus, fieldset[disabled] .btn-reddit:focus, .btn-reddit.disabled.focus, .btn-reddit[disabled].focus, fieldset[disabled] .btn-reddit.focus {
  background-color: #eff7ff;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-reddit .badge {
  color: #eff7ff;
  background-color: #000; }

.btn-soundcloud {
  color: #fff;
  background-color: #f50;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-soundcloud:focus, .btn-soundcloud.focus {
  color: #fff;
  background-color: #c40;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-soundcloud:hover {
  color: #fff;
  background-color: #c40;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-soundcloud:active, .btn-soundcloud.active, .open > .dropdown-toggle.btn-soundcloud {
  color: #fff;
  background-color: #c40;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-soundcloud:active:hover, .btn-soundcloud.active:hover, .open > .dropdown-toggle.btn-soundcloud:hover, .btn-soundcloud:active:focus, .btn-soundcloud.active:focus, .open > .dropdown-toggle.btn-soundcloud:focus, .btn-soundcloud:active.focus, .btn-soundcloud.active.focus, .open > .dropdown-toggle.btn-soundcloud.focus {
  color: #fff;
  background-color: #a83800;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-soundcloud:active, .btn-soundcloud.active, .open > .dropdown-toggle.btn-soundcloud {
  background-image: none; }

.btn-soundcloud.disabled:hover, .btn-soundcloud[disabled]:hover, fieldset[disabled] .btn-soundcloud:hover, .btn-soundcloud.disabled:focus, .btn-soundcloud[disabled]:focus, fieldset[disabled] .btn-soundcloud:focus, .btn-soundcloud.disabled.focus, .btn-soundcloud[disabled].focus, fieldset[disabled] .btn-soundcloud.focus {
  background-color: #f50;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-soundcloud .badge {
  color: #f50;
  background-color: #fff; }

.btn-tumblr {
  color: #fff;
  background-color: #2c4762;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-tumblr:focus, .btn-tumblr.focus {
  color: #fff;
  background-color: #1c2d3f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-tumblr:hover {
  color: #fff;
  background-color: #1c2d3f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-tumblr:active, .btn-tumblr.active, .open > .dropdown-toggle.btn-tumblr {
  color: #fff;
  background-color: #1c2d3f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-tumblr:active:hover, .btn-tumblr.active:hover, .open > .dropdown-toggle.btn-tumblr:hover, .btn-tumblr:active:focus, .btn-tumblr.active:focus, .open > .dropdown-toggle.btn-tumblr:focus, .btn-tumblr:active.focus, .btn-tumblr.active.focus, .open > .dropdown-toggle.btn-tumblr.focus {
  color: #fff;
  background-color: #111c26;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-tumblr:active, .btn-tumblr.active, .open > .dropdown-toggle.btn-tumblr {
  background-image: none; }

.btn-tumblr.disabled:hover, .btn-tumblr[disabled]:hover, fieldset[disabled] .btn-tumblr:hover, .btn-tumblr.disabled:focus, .btn-tumblr[disabled]:focus, fieldset[disabled] .btn-tumblr:focus, .btn-tumblr.disabled.focus, .btn-tumblr[disabled].focus, fieldset[disabled] .btn-tumblr.focus {
  background-color: #2c4762;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-tumblr .badge {
  color: #2c4762;
  background-color: #fff; }

.btn-twitter {
  color: #fff;
  background-color: #55acee;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-twitter:focus, .btn-twitter.focus {
  color: #fff;
  background-color: #2795e9;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-twitter:hover {
  color: #fff;
  background-color: #2795e9;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-twitter:active, .btn-twitter.active, .open > .dropdown-toggle.btn-twitter {
  color: #fff;
  background-color: #2795e9;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-twitter:active:hover, .btn-twitter.active:hover, .open > .dropdown-toggle.btn-twitter:hover, .btn-twitter:active:focus, .btn-twitter.active:focus, .open > .dropdown-toggle.btn-twitter:focus, .btn-twitter:active.focus, .btn-twitter.active.focus, .open > .dropdown-toggle.btn-twitter.focus {
  color: #fff;
  background-color: #1583d7;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-twitter:active, .btn-twitter.active, .open > .dropdown-toggle.btn-twitter {
  background-image: none; }

.btn-twitter.disabled:hover, .btn-twitter[disabled]:hover, fieldset[disabled] .btn-twitter:hover, .btn-twitter.disabled:focus, .btn-twitter[disabled]:focus, fieldset[disabled] .btn-twitter:focus, .btn-twitter.disabled.focus, .btn-twitter[disabled].focus, fieldset[disabled] .btn-twitter.focus {
  background-color: #55acee;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-twitter .badge {
  color: #55acee;
  background-color: #fff; }

.btn-vimeo {
  color: #fff;
  background-color: #1ab7ea;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vimeo:focus, .btn-vimeo.focus {
  color: #fff;
  background-color: #1295bf;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vimeo:hover {
  color: #fff;
  background-color: #1295bf;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vimeo:active, .btn-vimeo.active, .open > .dropdown-toggle.btn-vimeo {
  color: #fff;
  background-color: #1295bf;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vimeo:active:hover, .btn-vimeo.active:hover, .open > .dropdown-toggle.btn-vimeo:hover, .btn-vimeo:active:focus, .btn-vimeo.active:focus, .open > .dropdown-toggle.btn-vimeo:focus, .btn-vimeo:active.focus, .btn-vimeo.active.focus, .open > .dropdown-toggle.btn-vimeo.focus {
  color: #fff;
  background-color: #0f7b9f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vimeo:active, .btn-vimeo.active, .open > .dropdown-toggle.btn-vimeo {
  background-image: none; }

.btn-vimeo.disabled:hover, .btn-vimeo[disabled]:hover, fieldset[disabled] .btn-vimeo:hover, .btn-vimeo.disabled:focus, .btn-vimeo[disabled]:focus, fieldset[disabled] .btn-vimeo:focus, .btn-vimeo.disabled.focus, .btn-vimeo[disabled].focus, fieldset[disabled] .btn-vimeo.focus {
  background-color: #1ab7ea;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vimeo .badge {
  color: #1ab7ea;
  background-color: #fff; }

.btn-vk {
  color: #fff;
  background-color: #587ea3;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vk:focus, .btn-vk.focus {
  color: #fff;
  background-color: #466482;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vk:hover {
  color: #fff;
  background-color: #466482;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vk:active, .btn-vk.active, .open > .dropdown-toggle.btn-vk {
  color: #fff;
  background-color: #466482;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vk:active:hover, .btn-vk.active:hover, .open > .dropdown-toggle.btn-vk:hover, .btn-vk:active:focus, .btn-vk.active:focus, .open > .dropdown-toggle.btn-vk:focus, .btn-vk:active.focus, .btn-vk.active.focus, .open > .dropdown-toggle.btn-vk.focus {
  color: #fff;
  background-color: #3a526b;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vk:active, .btn-vk.active, .open > .dropdown-toggle.btn-vk {
  background-image: none; }

.btn-vk.disabled:hover, .btn-vk[disabled]:hover, fieldset[disabled] .btn-vk:hover, .btn-vk.disabled:focus, .btn-vk[disabled]:focus, fieldset[disabled] .btn-vk:focus, .btn-vk.disabled.focus, .btn-vk[disabled].focus, fieldset[disabled] .btn-vk.focus {
  background-color: #587ea3;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-vk .badge {
  color: #587ea3;
  background-color: #fff; }

.btn-yahoo {
  color: #fff;
  background-color: #720e9e;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-yahoo:focus, .btn-yahoo.focus {
  color: #fff;
  background-color: #500a6f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-yahoo:hover {
  color: #fff;
  background-color: #500a6f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-yahoo:active, .btn-yahoo.active, .open > .dropdown-toggle.btn-yahoo {
  color: #fff;
  background-color: #500a6f;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-yahoo:active:hover, .btn-yahoo.active:hover, .open > .dropdown-toggle.btn-yahoo:hover, .btn-yahoo:active:focus, .btn-yahoo.active:focus, .open > .dropdown-toggle.btn-yahoo:focus, .btn-yahoo:active.focus, .btn-yahoo.active.focus, .open > .dropdown-toggle.btn-yahoo.focus {
  color: #fff;
  background-color: #39074e;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-yahoo:active, .btn-yahoo.active, .open > .dropdown-toggle.btn-yahoo {
  background-image: none; }

.btn-yahoo.disabled:hover, .btn-yahoo[disabled]:hover, fieldset[disabled] .btn-yahoo:hover, .btn-yahoo.disabled:focus, .btn-yahoo[disabled]:focus, fieldset[disabled] .btn-yahoo:focus, .btn-yahoo.disabled.focus, .btn-yahoo[disabled].focus, fieldset[disabled] .btn-yahoo.focus {
  background-color: #720e9e;
  border-color: rgba(0, 0, 0, 0.2); }

.btn-yahoo .badge {
  color: #720e9e;
  background-color: #fff; }
/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(/public/45c73723862c6fc5eb3d6961db2d71fb.eot);
  src: url(/public/45c73723862c6fc5eb3d6961db2d71fb.eot?#iefix&v=4.4.0) format("embedded-opentype"), url(/public/4b5a84aaf1c9485e060c503a0ff8cadb.woff2) format("woff2"), url(/public/dfb02f8f6d0cedc009ee5887cc68f1f3.woff) format("woff"), url(/public/7c87870ab40d63cfb8870c1f183f9939.ttf) format("truetype"), url(/public/76a4f23c6be74fd309e0d0fd2c27a5de.svg#fontawesomeregular) format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571429em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none; }

.fa-ul > li {
  position: relative; }

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center; }

.fa-li.fa-lg {
  left: -1.85714286em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #ffffff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\F000"; }

.fa-music:before {
  content: "\F001"; }

.fa-search:before {
  content: "\F002"; }

.fa-envelope-o:before {
  content: "\F003"; }

.fa-heart:before {
  content: "\F004"; }

.fa-star:before {
  content: "\F005"; }

.fa-star-o:before {
  content: "\F006"; }

.fa-user:before {
  content: "\F007"; }

.fa-film:before {
  content: "\F008"; }

.fa-th-large:before {
  content: "\F009"; }

.fa-th:before {
  content: "\F00A"; }

.fa-th-list:before {
  content: "\F00B"; }

.fa-check:before {
  content: "\F00C"; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D"; }

.fa-search-plus:before {
  content: "\F00E"; }

.fa-search-minus:before {
  content: "\F010"; }

.fa-power-off:before {
  content: "\F011"; }

.fa-signal:before {
  content: "\F012"; }

.fa-gear:before,
.fa-cog:before {
  content: "\F013"; }

.fa-trash-o:before {
  content: "\F014"; }

.fa-home:before {
  content: "\F015"; }

.fa-file-o:before {
  content: "\F016"; }

.fa-clock-o:before {
  content: "\F017"; }

.fa-road:before {
  content: "\F018"; }

.fa-download:before {
  content: "\F019"; }

.fa-arrow-circle-o-down:before {
  content: "\F01A"; }

.fa-arrow-circle-o-up:before {
  content: "\F01B"; }

.fa-inbox:before {
  content: "\F01C"; }

.fa-play-circle-o:before {
  content: "\F01D"; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E"; }

.fa-refresh:before {
  content: "\F021"; }

.fa-list-alt:before {
  content: "\F022"; }

.fa-lock:before {
  content: "\F023"; }

.fa-flag:before {
  content: "\F024"; }

.fa-headphones:before {
  content: "\F025"; }

.fa-volume-off:before {
  content: "\F026"; }

.fa-volume-down:before {
  content: "\F027"; }

.fa-volume-up:before {
  content: "\F028"; }

.fa-qrcode:before {
  content: "\F029"; }

.fa-barcode:before {
  content: "\F02A"; }

.fa-tag:before {
  content: "\F02B"; }

.fa-tags:before {
  content: "\F02C"; }

.fa-book:before {
  content: "\F02D"; }

.fa-bookmark:before {
  content: "\F02E"; }

.fa-print:before {
  content: "\F02F"; }

.fa-camera:before {
  content: "\F030"; }

.fa-font:before {
  content: "\F031"; }

.fa-bold:before {
  content: "\F032"; }

.fa-italic:before {
  content: "\F033"; }

.fa-text-height:before {
  content: "\F034"; }

.fa-text-width:before {
  content: "\F035"; }

.fa-align-left:before {
  content: "\F036"; }

.fa-align-center:before {
  content: "\F037"; }

.fa-align-right:before {
  content: "\F038"; }

.fa-align-justify:before {
  content: "\F039"; }

.fa-list:before {
  content: "\F03A"; }

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B"; }

.fa-indent:before {
  content: "\F03C"; }

.fa-video-camera:before {
  content: "\F03D"; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E"; }

.fa-pencil:before {
  content: "\F040"; }

.fa-map-marker:before {
  content: "\F041"; }

.fa-adjust:before {
  content: "\F042"; }

.fa-tint:before {
  content: "\F043"; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044"; }

.fa-share-square-o:before {
  content: "\F045"; }

.fa-check-square-o:before {
  content: "\F046"; }

.fa-arrows:before {
  content: "\F047"; }

.fa-step-backward:before {
  content: "\F048"; }

.fa-fast-backward:before {
  content: "\F049"; }

.fa-backward:before {
  content: "\F04A"; }

.fa-play:before {
  content: "\F04B"; }

.fa-pause:before {
  content: "\F04C"; }

.fa-stop:before {
  content: "\F04D"; }

.fa-forward:before {
  content: "\F04E"; }

.fa-fast-forward:before {
  content: "\F050"; }

.fa-step-forward:before {
  content: "\F051"; }

.fa-eject:before {
  content: "\F052"; }

.fa-chevron-left:before {
  content: "\F053"; }

.fa-chevron-right:before {
  content: "\F054"; }

.fa-plus-circle:before {
  content: "\F055"; }

.fa-minus-circle:before {
  content: "\F056"; }

.fa-times-circle:before {
  content: "\F057"; }

.fa-check-circle:before {
  content: "\F058"; }

.fa-question-circle:before {
  content: "\F059"; }

.fa-info-circle:before {
  content: "\F05A"; }

.fa-crosshairs:before {
  content: "\F05B"; }

.fa-times-circle-o:before {
  content: "\F05C"; }

.fa-check-circle-o:before {
  content: "\F05D"; }

.fa-ban:before {
  content: "\F05E"; }

.fa-arrow-left:before {
  content: "\F060"; }

.fa-arrow-right:before {
  content: "\F061"; }

.fa-arrow-up:before {
  content: "\F062"; }

.fa-arrow-down:before {
  content: "\F063"; }

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064"; }

.fa-expand:before {
  content: "\F065"; }

.fa-compress:before {
  content: "\F066"; }

.fa-plus:before {
  content: "\F067"; }

.fa-minus:before {
  content: "\F068"; }

.fa-asterisk:before {
  content: "\F069"; }

.fa-exclamation-circle:before {
  content: "\F06A"; }

.fa-gift:before {
  content: "\F06B"; }

.fa-leaf:before {
  content: "\F06C"; }

.fa-fire:before {
  content: "\F06D"; }

.fa-eye:before {
  content: "\F06E"; }

.fa-eye-slash:before {
  content: "\F070"; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071"; }

.fa-plane:before {
  content: "\F072"; }

.fa-calendar:before {
  content: "\F073"; }

.fa-random:before {
  content: "\F074"; }

.fa-comment:before {
  content: "\F075"; }

.fa-magnet:before {
  content: "\F076"; }

.fa-chevron-up:before {
  content: "\F077"; }

.fa-chevron-down:before {
  content: "\F078"; }

.fa-retweet:before {
  content: "\F079"; }

.fa-shopping-cart:before {
  content: "\F07A"; }

.fa-folder:before {
  content: "\F07B"; }

.fa-folder-open:before {
  content: "\F07C"; }

.fa-arrows-v:before {
  content: "\F07D"; }

.fa-arrows-h:before {
  content: "\F07E"; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080"; }

.fa-twitter-square:before {
  content: "\F081"; }

.fa-facebook-square:before {
  content: "\F082"; }

.fa-camera-retro:before {
  content: "\F083"; }

.fa-key:before {
  content: "\F084"; }

.fa-gears:before,
.fa-cogs:before {
  content: "\F085"; }

.fa-comments:before {
  content: "\F086"; }

.fa-thumbs-o-up:before {
  content: "\F087"; }

.fa-thumbs-o-down:before {
  content: "\F088"; }

.fa-star-half:before {
  content: "\F089"; }

.fa-heart-o:before {
  content: "\F08A"; }

.fa-sign-out:before {
  content: "\F08B"; }

.fa-linkedin-square:before {
  content: "\F08C"; }

.fa-thumb-tack:before {
  content: "\F08D"; }

.fa-external-link:before {
  content: "\F08E"; }

.fa-sign-in:before {
  content: "\F090"; }

.fa-trophy:before {
  content: "\F091"; }

.fa-github-square:before {
  content: "\F092"; }

.fa-upload:before {
  content: "\F093"; }

.fa-lemon-o:before {
  content: "\F094"; }

.fa-phone:before {
  content: "\F095"; }

.fa-square-o:before {
  content: "\F096"; }

.fa-bookmark-o:before {
  content: "\F097"; }

.fa-phone-square:before {
  content: "\F098"; }

.fa-twitter:before {
  content: "\F099"; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A"; }

.fa-github:before {
  content: "\F09B"; }

.fa-unlock:before {
  content: "\F09C"; }

.fa-credit-card:before {
  content: "\F09D"; }

.fa-feed:before,
.fa-rss:before {
  content: "\F09E"; }

.fa-hdd-o:before {
  content: "\F0A0"; }

.fa-bullhorn:before {
  content: "\F0A1"; }

.fa-bell:before {
  content: "\F0F3"; }

.fa-certificate:before {
  content: "\F0A3"; }

.fa-hand-o-right:before {
  content: "\F0A4"; }

.fa-hand-o-left:before {
  content: "\F0A5"; }

.fa-hand-o-up:before {
  content: "\F0A6"; }

.fa-hand-o-down:before {
  content: "\F0A7"; }

.fa-arrow-circle-left:before {
  content: "\F0A8"; }

.fa-arrow-circle-right:before {
  content: "\F0A9"; }

.fa-arrow-circle-up:before {
  content: "\F0AA"; }

.fa-arrow-circle-down:before {
  content: "\F0AB"; }

.fa-globe:before {
  content: "\F0AC"; }

.fa-wrench:before {
  content: "\F0AD"; }

.fa-tasks:before {
  content: "\F0AE"; }

.fa-filter:before {
  content: "\F0B0"; }

.fa-briefcase:before {
  content: "\F0B1"; }

.fa-arrows-alt:before {
  content: "\F0B2"; }

.fa-group:before,
.fa-users:before {
  content: "\F0C0"; }

.fa-chain:before,
.fa-link:before {
  content: "\F0C1"; }

.fa-cloud:before {
  content: "\F0C2"; }

.fa-flask:before {
  content: "\F0C3"; }

.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4"; }

.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5"; }

.fa-paperclip:before {
  content: "\F0C6"; }

.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7"; }

.fa-square:before {
  content: "\F0C8"; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9"; }

.fa-list-ul:before {
  content: "\F0CA"; }

.fa-list-ol:before {
  content: "\F0CB"; }

.fa-strikethrough:before {
  content: "\F0CC"; }

.fa-underline:before {
  content: "\F0CD"; }

.fa-table:before {
  content: "\F0CE"; }

.fa-magic:before {
  content: "\F0D0"; }

.fa-truck:before {
  content: "\F0D1"; }

.fa-pinterest:before {
  content: "\F0D2"; }

.fa-pinterest-square:before {
  content: "\F0D3"; }

.fa-google-plus-square:before {
  content: "\F0D4"; }

.fa-google-plus:before {
  content: "\F0D5"; }

.fa-money:before {
  content: "\F0D6"; }

.fa-caret-down:before {
  content: "\F0D7"; }

.fa-caret-up:before {
  content: "\F0D8"; }

.fa-caret-left:before {
  content: "\F0D9"; }

.fa-caret-right:before {
  content: "\F0DA"; }

.fa-columns:before {
  content: "\F0DB"; }

.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC"; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD"; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE"; }

.fa-envelope:before {
  content: "\F0E0"; }

.fa-linkedin:before {
  content: "\F0E1"; }

.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2"; }

.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3"; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4"; }

.fa-comment-o:before {
  content: "\F0E5"; }

.fa-comments-o:before {
  content: "\F0E6"; }

.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7"; }

.fa-sitemap:before {
  content: "\F0E8"; }

.fa-umbrella:before {
  content: "\F0E9"; }

.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA"; }

.fa-lightbulb-o:before {
  content: "\F0EB"; }

.fa-exchange:before {
  content: "\F0EC"; }

.fa-cloud-download:before {
  content: "\F0ED"; }

.fa-cloud-upload:before {
  content: "\F0EE"; }

.fa-user-md:before {
  content: "\F0F0"; }

.fa-stethoscope:before {
  content: "\F0F1"; }

.fa-suitcase:before {
  content: "\F0F2"; }

.fa-bell-o:before {
  content: "\F0A2"; }

.fa-coffee:before {
  content: "\F0F4"; }

.fa-cutlery:before {
  content: "\F0F5"; }

.fa-file-text-o:before {
  content: "\F0F6"; }

.fa-building-o:before {
  content: "\F0F7"; }

.fa-hospital-o:before {
  content: "\F0F8"; }

.fa-ambulance:before {
  content: "\F0F9"; }

.fa-medkit:before {
  content: "\F0FA"; }

.fa-fighter-jet:before {
  content: "\F0FB"; }

.fa-beer:before {
  content: "\F0FC"; }

.fa-h-square:before {
  content: "\F0FD"; }

.fa-plus-square:before {
  content: "\F0FE"; }

.fa-angle-double-left:before {
  content: "\F100"; }

.fa-angle-double-right:before {
  content: "\F101"; }

.fa-angle-double-up:before {
  content: "\F102"; }

.fa-angle-double-down:before {
  content: "\F103"; }

.fa-angle-left:before {
  content: "\F104"; }

.fa-angle-right:before {
  content: "\F105"; }

.fa-angle-up:before {
  content: "\F106"; }

.fa-angle-down:before {
  content: "\F107"; }

.fa-desktop:before {
  content: "\F108"; }

.fa-laptop:before {
  content: "\F109"; }

.fa-tablet:before {
  content: "\F10A"; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B"; }

.fa-circle-o:before {
  content: "\F10C"; }

.fa-quote-left:before {
  content: "\F10D"; }

.fa-quote-right:before {
  content: "\F10E"; }

.fa-spinner:before {
  content: "\F110"; }

.fa-circle:before {
  content: "\F111"; }

.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112"; }

.fa-github-alt:before {
  content: "\F113"; }

.fa-folder-o:before {
  content: "\F114"; }

.fa-folder-open-o:before {
  content: "\F115"; }

.fa-smile-o:before {
  content: "\F118"; }

.fa-frown-o:before {
  content: "\F119"; }

.fa-meh-o:before {
  content: "\F11A"; }

.fa-gamepad:before {
  content: "\F11B"; }

.fa-keyboard-o:before {
  content: "\F11C"; }

.fa-flag-o:before {
  content: "\F11D"; }

.fa-flag-checkered:before {
  content: "\F11E"; }

.fa-terminal:before {
  content: "\F120"; }

.fa-code:before {
  content: "\F121"; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122"; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123"; }

.fa-location-arrow:before {
  content: "\F124"; }

.fa-crop:before {
  content: "\F125"; }

.fa-code-fork:before {
  content: "\F126"; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127"; }

.fa-question:before {
  content: "\F128"; }

.fa-info:before {
  content: "\F129"; }

.fa-exclamation:before {
  content: "\F12A"; }

.fa-superscript:before {
  content: "\F12B"; }

.fa-subscript:before {
  content: "\F12C"; }

.fa-eraser:before {
  content: "\F12D"; }

.fa-puzzle-piece:before {
  content: "\F12E"; }

.fa-microphone:before {
  content: "\F130"; }

.fa-microphone-slash:before {
  content: "\F131"; }

.fa-shield:before {
  content: "\F132"; }

.fa-calendar-o:before {
  content: "\F133"; }

.fa-fire-extinguisher:before {
  content: "\F134"; }

.fa-rocket:before {
  content: "\F135"; }

.fa-maxcdn:before {
  content: "\F136"; }

.fa-chevron-circle-left:before {
  content: "\F137"; }

.fa-chevron-circle-right:before {
  content: "\F138"; }

.fa-chevron-circle-up:before {
  content: "\F139"; }

.fa-chevron-circle-down:before {
  content: "\F13A"; }

.fa-html5:before {
  content: "\F13B"; }

.fa-css3:before {
  content: "\F13C"; }

.fa-anchor:before {
  content: "\F13D"; }

.fa-unlock-alt:before {
  content: "\F13E"; }

.fa-bullseye:before {
  content: "\F140"; }

.fa-ellipsis-h:before {
  content: "\F141"; }

.fa-ellipsis-v:before {
  content: "\F142"; }

.fa-rss-square:before {
  content: "\F143"; }

.fa-play-circle:before {
  content: "\F144"; }

.fa-ticket:before {
  content: "\F145"; }

.fa-minus-square:before {
  content: "\F146"; }

.fa-minus-square-o:before {
  content: "\F147"; }

.fa-level-up:before {
  content: "\F148"; }

.fa-level-down:before {
  content: "\F149"; }

.fa-check-square:before {
  content: "\F14A"; }

.fa-pencil-square:before {
  content: "\F14B"; }

.fa-external-link-square:before {
  content: "\F14C"; }

.fa-share-square:before {
  content: "\F14D"; }

.fa-compass:before {
  content: "\F14E"; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150"; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151"; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152"; }

.fa-euro:before,
.fa-eur:before {
  content: "\F153"; }

.fa-gbp:before {
  content: "\F154"; }

.fa-dollar:before,
.fa-usd:before {
  content: "\F155"; }

.fa-rupee:before,
.fa-inr:before {
  content: "\F156"; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157"; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158"; }

.fa-won:before,
.fa-krw:before {
  content: "\F159"; }

.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A"; }

.fa-file:before {
  content: "\F15B"; }

.fa-file-text:before {
  content: "\F15C"; }

.fa-sort-alpha-asc:before {
  content: "\F15D"; }

.fa-sort-alpha-desc:before {
  content: "\F15E"; }

.fa-sort-amount-asc:before {
  content: "\F160"; }

.fa-sort-amount-desc:before {
  content: "\F161"; }

.fa-sort-numeric-asc:before {
  content: "\F162"; }

.fa-sort-numeric-desc:before {
  content: "\F163"; }

.fa-thumbs-up:before {
  content: "\F164"; }

.fa-thumbs-down:before {
  content: "\F165"; }

.fa-youtube-square:before {
  content: "\F166"; }

.fa-youtube:before {
  content: "\F167"; }

.fa-xing:before {
  content: "\F168"; }

.fa-xing-square:before {
  content: "\F169"; }

.fa-youtube-play:before {
  content: "\F16A"; }

.fa-dropbox:before {
  content: "\F16B"; }

.fa-stack-overflow:before {
  content: "\F16C"; }

.fa-instagram:before {
  content: "\F16D"; }

.fa-flickr:before {
  content: "\F16E"; }

.fa-adn:before {
  content: "\F170"; }

.fa-bitbucket:before {
  content: "\F171"; }

.fa-bitbucket-square:before {
  content: "\F172"; }

.fa-tumblr:before {
  content: "\F173"; }

.fa-tumblr-square:before {
  content: "\F174"; }

.fa-long-arrow-down:before {
  content: "\F175"; }

.fa-long-arrow-up:before {
  content: "\F176"; }

.fa-long-arrow-left:before {
  content: "\F177"; }

.fa-long-arrow-right:before {
  content: "\F178"; }

.fa-apple:before {
  content: "\F179"; }

.fa-windows:before {
  content: "\F17A"; }

.fa-android:before {
  content: "\F17B"; }

.fa-linux:before {
  content: "\F17C"; }

.fa-dribbble:before {
  content: "\F17D"; }

.fa-skype:before {
  content: "\F17E"; }

.fa-foursquare:before {
  content: "\F180"; }

.fa-trello:before {
  content: "\F181"; }

.fa-female:before {
  content: "\F182"; }

.fa-male:before {
  content: "\F183"; }

.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184"; }

.fa-sun-o:before {
  content: "\F185"; }

.fa-moon-o:before {
  content: "\F186"; }

.fa-archive:before {
  content: "\F187"; }

.fa-bug:before {
  content: "\F188"; }

.fa-vk:before {
  content: "\F189"; }

.fa-weibo:before {
  content: "\F18A"; }

.fa-renren:before {
  content: "\F18B"; }

.fa-pagelines:before {
  content: "\F18C"; }

.fa-stack-exchange:before {
  content: "\F18D"; }

.fa-arrow-circle-o-right:before {
  content: "\F18E"; }

.fa-arrow-circle-o-left:before {
  content: "\F190"; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191"; }

.fa-dot-circle-o:before {
  content: "\F192"; }

.fa-wheelchair:before {
  content: "\F193"; }

.fa-vimeo-square:before {
  content: "\F194"; }

.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195"; }

.fa-plus-square-o:before {
  content: "\F196"; }

.fa-space-shuttle:before {
  content: "\F197"; }

.fa-slack:before {
  content: "\F198"; }

.fa-envelope-square:before {
  content: "\F199"; }

.fa-wordpress:before {
  content: "\F19A"; }

.fa-openid:before {
  content: "\F19B"; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C"; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D"; }

.fa-yahoo:before {
  content: "\F19E"; }

.fa-google:before {
  content: "\F1A0"; }

.fa-reddit:before {
  content: "\F1A1"; }

.fa-reddit-square:before {
  content: "\F1A2"; }

.fa-stumbleupon-circle:before {
  content: "\F1A3"; }

.fa-stumbleupon:before {
  content: "\F1A4"; }

.fa-delicious:before {
  content: "\F1A5"; }

.fa-digg:before {
  content: "\F1A6"; }

.fa-pied-piper:before {
  content: "\F1A7"; }

.fa-pied-piper-alt:before {
  content: "\F1A8"; }

.fa-drupal:before {
  content: "\F1A9"; }

.fa-joomla:before {
  content: "\F1AA"; }

.fa-language:before {
  content: "\F1AB"; }

.fa-fax:before {
  content: "\F1AC"; }

.fa-building:before {
  content: "\F1AD"; }

.fa-child:before {
  content: "\F1AE"; }

.fa-paw:before {
  content: "\F1B0"; }

.fa-spoon:before {
  content: "\F1B1"; }

.fa-cube:before {
  content: "\F1B2"; }

.fa-cubes:before {
  content: "\F1B3"; }

.fa-behance:before {
  content: "\F1B4"; }

.fa-behance-square:before {
  content: "\F1B5"; }

.fa-steam:before {
  content: "\F1B6"; }

.fa-steam-square:before {
  content: "\F1B7"; }

.fa-recycle:before {
  content: "\F1B8"; }

.fa-automobile:before,
.fa-car:before {
  content: "\F1B9"; }

.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA"; }

.fa-tree:before {
  content: "\F1BB"; }

.fa-spotify:before {
  content: "\F1BC"; }

.fa-deviantart:before {
  content: "\F1BD"; }

.fa-soundcloud:before {
  content: "\F1BE"; }

.fa-database:before {
  content: "\F1C0"; }

.fa-file-pdf-o:before {
  content: "\F1C1"; }

.fa-file-word-o:before {
  content: "\F1C2"; }

.fa-file-excel-o:before {
  content: "\F1C3"; }

.fa-file-powerpoint-o:before {
  content: "\F1C4"; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5"; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6"; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7"; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8"; }

.fa-file-code-o:before {
  content: "\F1C9"; }

.fa-vine:before {
  content: "\F1CA"; }

.fa-codepen:before {
  content: "\F1CB"; }

.fa-jsfiddle:before {
  content: "\F1CC"; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD"; }

.fa-circle-o-notch:before {
  content: "\F1CE"; }

.fa-ra:before,
.fa-rebel:before {
  content: "\F1D0"; }

.fa-ge:before,
.fa-empire:before {
  content: "\F1D1"; }

.fa-git-square:before {
  content: "\F1D2"; }

.fa-git:before {
  content: "\F1D3"; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4"; }

.fa-tencent-weibo:before {
  content: "\F1D5"; }

.fa-qq:before {
  content: "\F1D6"; }

.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7"; }

.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8"; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9"; }

.fa-history:before {
  content: "\F1DA"; }

.fa-circle-thin:before {
  content: "\F1DB"; }

.fa-header:before {
  content: "\F1DC"; }

.fa-paragraph:before {
  content: "\F1DD"; }

.fa-sliders:before {
  content: "\F1DE"; }

.fa-share-alt:before {
  content: "\F1E0"; }

.fa-share-alt-square:before {
  content: "\F1E1"; }

.fa-bomb:before {
  content: "\F1E2"; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3"; }

.fa-tty:before {
  content: "\F1E4"; }

.fa-binoculars:before {
  content: "\F1E5"; }

.fa-plug:before {
  content: "\F1E6"; }

.fa-slideshare:before {
  content: "\F1E7"; }

.fa-twitch:before {
  content: "\F1E8"; }

.fa-yelp:before {
  content: "\F1E9"; }

.fa-newspaper-o:before {
  content: "\F1EA"; }

.fa-wifi:before {
  content: "\F1EB"; }

.fa-calculator:before {
  content: "\F1EC"; }

.fa-paypal:before {
  content: "\F1ED"; }

.fa-google-wallet:before {
  content: "\F1EE"; }

.fa-cc-visa:before {
  content: "\F1F0"; }

.fa-cc-mastercard:before {
  content: "\F1F1"; }

.fa-cc-discover:before {
  content: "\F1F2"; }

.fa-cc-amex:before {
  content: "\F1F3"; }

.fa-cc-paypal:before {
  content: "\F1F4"; }

.fa-cc-stripe:before {
  content: "\F1F5"; }

.fa-bell-slash:before {
  content: "\F1F6"; }

.fa-bell-slash-o:before {
  content: "\F1F7"; }

.fa-trash:before {
  content: "\F1F8"; }

.fa-copyright:before {
  content: "\F1F9"; }

.fa-at:before {
  content: "\F1FA"; }

.fa-eyedropper:before {
  content: "\F1FB"; }

.fa-paint-brush:before {
  content: "\F1FC"; }

.fa-birthday-cake:before {
  content: "\F1FD"; }

.fa-area-chart:before {
  content: "\F1FE"; }

.fa-pie-chart:before {
  content: "\F200"; }

.fa-line-chart:before {
  content: "\F201"; }

.fa-lastfm:before {
  content: "\F202"; }

.fa-lastfm-square:before {
  content: "\F203"; }

.fa-toggle-off:before {
  content: "\F204"; }

.fa-toggle-on:before {
  content: "\F205"; }

.fa-bicycle:before {
  content: "\F206"; }

.fa-bus:before {
  content: "\F207"; }

.fa-ioxhost:before {
  content: "\F208"; }

.fa-angellist:before {
  content: "\F209"; }

.fa-cc:before {
  content: "\F20A"; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B"; }

.fa-meanpath:before {
  content: "\F20C"; }

.fa-buysellads:before {
  content: "\F20D"; }

.fa-connectdevelop:before {
  content: "\F20E"; }

.fa-dashcube:before {
  content: "\F210"; }

.fa-forumbee:before {
  content: "\F211"; }

.fa-leanpub:before {
  content: "\F212"; }

.fa-sellsy:before {
  content: "\F213"; }

.fa-shirtsinbulk:before {
  content: "\F214"; }

.fa-simplybuilt:before {
  content: "\F215"; }

.fa-skyatlas:before {
  content: "\F216"; }

.fa-cart-plus:before {
  content: "\F217"; }

.fa-cart-arrow-down:before {
  content: "\F218"; }

.fa-diamond:before {
  content: "\F219"; }

.fa-ship:before {
  content: "\F21A"; }

.fa-user-secret:before {
  content: "\F21B"; }

.fa-motorcycle:before {
  content: "\F21C"; }

.fa-street-view:before {
  content: "\F21D"; }

.fa-heartbeat:before {
  content: "\F21E"; }

.fa-venus:before {
  content: "\F221"; }

.fa-mars:before {
  content: "\F222"; }

.fa-mercury:before {
  content: "\F223"; }

.fa-intersex:before,
.fa-transgender:before {
  content: "\F224"; }

.fa-transgender-alt:before {
  content: "\F225"; }

.fa-venus-double:before {
  content: "\F226"; }

.fa-mars-double:before {
  content: "\F227"; }

.fa-venus-mars:before {
  content: "\F228"; }

.fa-mars-stroke:before {
  content: "\F229"; }

.fa-mars-stroke-v:before {
  content: "\F22A"; }

.fa-mars-stroke-h:before {
  content: "\F22B"; }

.fa-neuter:before {
  content: "\F22C"; }

.fa-genderless:before {
  content: "\F22D"; }

.fa-facebook-official:before {
  content: "\F230"; }

.fa-pinterest-p:before {
  content: "\F231"; }

.fa-whatsapp:before {
  content: "\F232"; }

.fa-server:before {
  content: "\F233"; }

.fa-user-plus:before {
  content: "\F234"; }

.fa-user-times:before {
  content: "\F235"; }

.fa-hotel:before,
.fa-bed:before {
  content: "\F236"; }

.fa-viacoin:before {
  content: "\F237"; }

.fa-train:before {
  content: "\F238"; }

.fa-subway:before {
  content: "\F239"; }

.fa-medium:before {
  content: "\F23A"; }

.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B"; }

.fa-optin-monster:before {
  content: "\F23C"; }

.fa-opencart:before {
  content: "\F23D"; }

.fa-expeditedssl:before {
  content: "\F23E"; }

.fa-battery-4:before,
.fa-battery-full:before {
  content: "\F240"; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241"; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242"; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243"; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244"; }

.fa-mouse-pointer:before {
  content: "\F245"; }

.fa-i-cursor:before {
  content: "\F246"; }

.fa-object-group:before {
  content: "\F247"; }

.fa-object-ungroup:before {
  content: "\F248"; }

.fa-sticky-note:before {
  content: "\F249"; }

.fa-sticky-note-o:before {
  content: "\F24A"; }

.fa-cc-jcb:before {
  content: "\F24B"; }

.fa-cc-diners-club:before {
  content: "\F24C"; }

.fa-clone:before {
  content: "\F24D"; }

.fa-balance-scale:before {
  content: "\F24E"; }

.fa-hourglass-o:before {
  content: "\F250"; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251"; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252"; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253"; }

.fa-hourglass:before {
  content: "\F254"; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255"; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256"; }

.fa-hand-scissors-o:before {
  content: "\F257"; }

.fa-hand-lizard-o:before {
  content: "\F258"; }

.fa-hand-spock-o:before {
  content: "\F259"; }

.fa-hand-pointer-o:before {
  content: "\F25A"; }

.fa-hand-peace-o:before {
  content: "\F25B"; }

.fa-trademark:before {
  content: "\F25C"; }

.fa-registered:before {
  content: "\F25D"; }

.fa-creative-commons:before {
  content: "\F25E"; }

.fa-gg:before {
  content: "\F260"; }

.fa-gg-circle:before {
  content: "\F261"; }

.fa-tripadvisor:before {
  content: "\F262"; }

.fa-odnoklassniki:before {
  content: "\F263"; }

.fa-odnoklassniki-square:before {
  content: "\F264"; }

.fa-get-pocket:before {
  content: "\F265"; }

.fa-wikipedia-w:before {
  content: "\F266"; }

.fa-safari:before {
  content: "\F267"; }

.fa-chrome:before {
  content: "\F268"; }

.fa-firefox:before {
  content: "\F269"; }

.fa-opera:before {
  content: "\F26A"; }

.fa-internet-explorer:before {
  content: "\F26B"; }

.fa-tv:before,
.fa-television:before {
  content: "\F26C"; }

.fa-contao:before {
  content: "\F26D"; }

.fa-500px:before {
  content: "\F26E"; }

.fa-amazon:before {
  content: "\F270"; }

.fa-calendar-plus-o:before {
  content: "\F271"; }

.fa-calendar-minus-o:before {
  content: "\F272"; }

.fa-calendar-times-o:before {
  content: "\F273"; }

.fa-calendar-check-o:before {
  content: "\F274"; }

.fa-industry:before {
  content: "\F275"; }

.fa-map-pin:before {
  content: "\F276"; }

.fa-map-signs:before {
  content: "\F277"; }

.fa-map-o:before {
  content: "\F278"; }

.fa-map:before {
  content: "\F279"; }

.fa-commenting:before {
  content: "\F27A"; }

.fa-commenting-o:before {
  content: "\F27B"; }

.fa-houzz:before {
  content: "\F27C"; }

.fa-vimeo:before {
  content: "\F27D"; }

.fa-black-tie:before {
  content: "\F27E"; }

.fa-fonticons:before {
  content: "\F280"; }
@font-face {
  font-family: 'simple-line-icons';
  src: url(/public/f33df365d6d0255b586f2920355e94d7.eot);
  src: url(/public/f33df365d6d0255b586f2920355e94d7.eot#iefix) format("embedded-opentype"), url(/public/0cb0b9c589c0624c9c78dd3d83e946f6.woff2) format("woff2"), url(/public/d2285965fe34b05465047401b8595dd0.ttf) format("truetype"), url(/public/78f07e2c2a535c26ef21d95e41bd7175.woff) format("woff"), url(/public/2fe2efe63441d830b1acd106c1fe8734.svg#simple-line-icons) format("svg");
  font-weight: normal;
  font-style: normal; }

/*
 Use the following CSS code if you want to have a class per icon.
 Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower:
*/
.icon-user,
.icon-people,
.icon-user-female,
.icon-user-follow,
.icon-user-following,
.icon-user-unfollow,
.icon-login,
.icon-logout,
.icon-emotsmile,
.icon-phone,
.icon-call-end,
.icon-call-in,
.icon-call-out,
.icon-map,
.icon-location-pin,
.icon-direction,
.icon-directions,
.icon-compass,
.icon-layers,
.icon-menu,
.icon-list,
.icon-options-vertical,
.icon-options,
.icon-arrow-down,
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-up,
.icon-arrow-up-circle,
.icon-arrow-left-circle,
.icon-arrow-right-circle,
.icon-arrow-down-circle,
.icon-check,
.icon-clock,
.icon-plus,
.icon-minus,
.icon-close,
.icon-event,
.icon-exclamation,
.icon-organization,
.icon-trophy,
.icon-screen-smartphone,
.icon-screen-desktop,
.icon-plane,
.icon-notebook,
.icon-mustache,
.icon-mouse,
.icon-magnet,
.icon-energy,
.icon-disc,
.icon-cursor,
.icon-cursor-move,
.icon-crop,
.icon-chemistry,
.icon-speedometer,
.icon-shield,
.icon-screen-tablet,
.icon-magic-wand,
.icon-hourglass,
.icon-graduation,
.icon-ghost,
.icon-game-controller,
.icon-fire,
.icon-eyeglass,
.icon-envelope-open,
.icon-envelope-letter,
.icon-bell,
.icon-badge,
.icon-anchor,
.icon-wallet,
.icon-vector,
.icon-speech,
.icon-puzzle,
.icon-printer,
.icon-present,
.icon-playlist,
.icon-pin,
.icon-picture,
.icon-handbag,
.icon-globe-alt,
.icon-globe,
.icon-folder-alt,
.icon-folder,
.icon-film,
.icon-feed,
.icon-drop,
.icon-drawer,
.icon-docs,
.icon-doc,
.icon-diamond,
.icon-cup,
.icon-calculator,
.icon-bubbles,
.icon-briefcase,
.icon-book-open,
.icon-basket-loaded,
.icon-basket,
.icon-bag,
.icon-action-undo,
.icon-action-redo,
.icon-wrench,
.icon-umbrella,
.icon-trash,
.icon-tag,
.icon-support,
.icon-frame,
.icon-size-fullscreen,
.icon-size-actual,
.icon-shuffle,
.icon-share-alt,
.icon-share,
.icon-rocket,
.icon-question,
.icon-pie-chart,
.icon-pencil,
.icon-note,
.icon-loop,
.icon-home,
.icon-grid,
.icon-graph,
.icon-microphone,
.icon-music-tone-alt,
.icon-music-tone,
.icon-earphones-alt,
.icon-earphones,
.icon-equalizer,
.icon-like,
.icon-dislike,
.icon-control-start,
.icon-control-rewind,
.icon-control-play,
.icon-control-pause,
.icon-control-forward,
.icon-control-end,
.icon-volume-1,
.icon-volume-2,
.icon-volume-off,
.icon-calendar,
.icon-bulb,
.icon-chart,
.icon-ban,
.icon-bubble,
.icon-camrecorder,
.icon-camera,
.icon-cloud-download,
.icon-cloud-upload,
.icon-envelope,
.icon-eye,
.icon-flag,
.icon-heart,
.icon-info,
.icon-key,
.icon-link,
.icon-lock,
.icon-lock-open,
.icon-magnifier,
.icon-magnifier-add,
.icon-magnifier-remove,
.icon-paper-clip,
.icon-paper-plane,
.icon-power,
.icon-refresh,
.icon-reload,
.icon-settings,
.icon-star,
.icon-symbol-female,
.icon-symbol-male,
.icon-target,
.icon-credit-card,
.icon-paypal,
.icon-social-tumblr,
.icon-social-twitter,
.icon-social-facebook,
.icon-social-instagram,
.icon-social-linkedin,
.icon-social-pinterest,
.icon-social-github,
.icon-social-google,
.icon-social-reddit,
.icon-social-skype,
.icon-social-dribbble,
.icon-social-behance,
.icon-social-foursqare,
.icon-social-soundcloud,
.icon-social-spotify,
.icon-social-stumbleupon,
.icon-social-youtube,
.icon-social-dropbox,
.icon-social-vkontakte,
.icon-social-steam {
  font-family: 'simple-line-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-user:before {
  content: "\E005"; }

.icon-people:before {
  content: "\E001"; }

.icon-user-female:before {
  content: "\E000"; }

.icon-user-follow:before {
  content: "\E002"; }

.icon-user-following:before {
  content: "\E003"; }

.icon-user-unfollow:before {
  content: "\E004"; }

.icon-login:before {
  content: "\E066"; }

.icon-logout:before {
  content: "\E065"; }

.icon-emotsmile:before {
  content: "\E021"; }

.icon-phone:before {
  content: "\E600"; }

.icon-call-end:before {
  content: "\E048"; }

.icon-call-in:before {
  content: "\E047"; }

.icon-call-out:before {
  content: "\E046"; }

.icon-map:before {
  content: "\E033"; }

.icon-location-pin:before {
  content: "\E096"; }

.icon-direction:before {
  content: "\E042"; }

.icon-directions:before {
  content: "\E041"; }

.icon-compass:before {
  content: "\E045"; }

.icon-layers:before {
  content: "\E034"; }

.icon-menu:before {
  content: "\E601"; }

.icon-list:before {
  content: "\E067"; }

.icon-options-vertical:before {
  content: "\E602"; }

.icon-options:before {
  content: "\E603"; }

.icon-arrow-down:before {
  content: "\E604"; }

.icon-arrow-left:before {
  content: "\E605"; }

.icon-arrow-right:before {
  content: "\E606"; }

.icon-arrow-up:before {
  content: "\E607"; }

.icon-arrow-up-circle:before {
  content: "\E078"; }

.icon-arrow-left-circle:before {
  content: "\E07A"; }

.icon-arrow-right-circle:before {
  content: "\E079"; }

.icon-arrow-down-circle:before {
  content: "\E07B"; }

.icon-check:before {
  content: "\E080"; }

.icon-clock:before {
  content: "\E081"; }

.icon-plus:before {
  content: "\E095"; }

.icon-minus:before {
  content: "\E615"; }

.icon-close:before {
  content: "\E082"; }

.icon-event:before {
  content: "\E619"; }

.icon-exclamation:before {
  content: "\E617"; }

.icon-organization:before {
  content: "\E616"; }

.icon-trophy:before {
  content: "\E006"; }

.icon-screen-smartphone:before {
  content: "\E010"; }

.icon-screen-desktop:before {
  content: "\E011"; }

.icon-plane:before {
  content: "\E012"; }

.icon-notebook:before {
  content: "\E013"; }

.icon-mustache:before {
  content: "\E014"; }

.icon-mouse:before {
  content: "\E015"; }

.icon-magnet:before {
  content: "\E016"; }

.icon-energy:before {
  content: "\E020"; }

.icon-disc:before {
  content: "\E022"; }

.icon-cursor:before {
  content: "\E06E"; }

.icon-cursor-move:before {
  content: "\E023"; }

.icon-crop:before {
  content: "\E024"; }

.icon-chemistry:before {
  content: "\E026"; }

.icon-speedometer:before {
  content: "\E007"; }

.icon-shield:before {
  content: "\E00E"; }

.icon-screen-tablet:before {
  content: "\E00F"; }

.icon-magic-wand:before {
  content: "\E017"; }

.icon-hourglass:before {
  content: "\E018"; }

.icon-graduation:before {
  content: "\E019"; }

.icon-ghost:before {
  content: "\E01A"; }

.icon-game-controller:before {
  content: "\E01B"; }

.icon-fire:before {
  content: "\E01C"; }

.icon-eyeglass:before {
  content: "\E01D"; }

.icon-envelope-open:before {
  content: "\E01E"; }

.icon-envelope-letter:before {
  content: "\E01F"; }

.icon-bell:before {
  content: "\E027"; }

.icon-badge:before {
  content: "\E028"; }

.icon-anchor:before {
  content: "\E029"; }

.icon-wallet:before {
  content: "\E02A"; }

.icon-vector:before {
  content: "\E02B"; }

.icon-speech:before {
  content: "\E02C"; }

.icon-puzzle:before {
  content: "\E02D"; }

.icon-printer:before {
  content: "\E02E"; }

.icon-present:before {
  content: "\E02F"; }

.icon-playlist:before {
  content: "\E030"; }

.icon-pin:before {
  content: "\E031"; }

.icon-picture:before {
  content: "\E032"; }

.icon-handbag:before {
  content: "\E035"; }

.icon-globe-alt:before {
  content: "\E036"; }

.icon-globe:before {
  content: "\E037"; }

.icon-folder-alt:before {
  content: "\E039"; }

.icon-folder:before {
  content: "\E089"; }

.icon-film:before {
  content: "\E03A"; }

.icon-feed:before {
  content: "\E03B"; }

.icon-drop:before {
  content: "\E03E"; }

.icon-drawer:before {
  content: "\E03F"; }

.icon-docs:before {
  content: "\E040"; }

.icon-doc:before {
  content: "\E085"; }

.icon-diamond:before {
  content: "\E043"; }

.icon-cup:before {
  content: "\E044"; }

.icon-calculator:before {
  content: "\E049"; }

.icon-bubbles:before {
  content: "\E04A"; }

.icon-briefcase:before {
  content: "\E04B"; }

.icon-book-open:before {
  content: "\E04C"; }

.icon-basket-loaded:before {
  content: "\E04D"; }

.icon-basket:before {
  content: "\E04E"; }

.icon-bag:before {
  content: "\E04F"; }

.icon-action-undo:before {
  content: "\E050"; }

.icon-action-redo:before {
  content: "\E051"; }

.icon-wrench:before {
  content: "\E052"; }

.icon-umbrella:before {
  content: "\E053"; }

.icon-trash:before {
  content: "\E054"; }

.icon-tag:before {
  content: "\E055"; }

.icon-support:before {
  content: "\E056"; }

.icon-frame:before {
  content: "\E038"; }

.icon-size-fullscreen:before {
  content: "\E057"; }

.icon-size-actual:before {
  content: "\E058"; }

.icon-shuffle:before {
  content: "\E059"; }

.icon-share-alt:before {
  content: "\E05A"; }

.icon-share:before {
  content: "\E05B"; }

.icon-rocket:before {
  content: "\E05C"; }

.icon-question:before {
  content: "\E05D"; }

.icon-pie-chart:before {
  content: "\E05E"; }

.icon-pencil:before {
  content: "\E05F"; }

.icon-note:before {
  content: "\E060"; }

.icon-loop:before {
  content: "\E064"; }

.icon-home:before {
  content: "\E069"; }

.icon-grid:before {
  content: "\E06A"; }

.icon-graph:before {
  content: "\E06B"; }

.icon-microphone:before {
  content: "\E063"; }

.icon-music-tone-alt:before {
  content: "\E061"; }

.icon-music-tone:before {
  content: "\E062"; }

.icon-earphones-alt:before {
  content: "\E03C"; }

.icon-earphones:before {
  content: "\E03D"; }

.icon-equalizer:before {
  content: "\E06C"; }

.icon-like:before {
  content: "\E068"; }

.icon-dislike:before {
  content: "\E06D"; }

.icon-control-start:before {
  content: "\E06F"; }

.icon-control-rewind:before {
  content: "\E070"; }

.icon-control-play:before {
  content: "\E071"; }

.icon-control-pause:before {
  content: "\E072"; }

.icon-control-forward:before {
  content: "\E073"; }

.icon-control-end:before {
  content: "\E074"; }

.icon-volume-1:before {
  content: "\E09F"; }

.icon-volume-2:before {
  content: "\E0A0"; }

.icon-volume-off:before {
  content: "\E0A1"; }

.icon-calendar:before {
  content: "\E075"; }

.icon-bulb:before {
  content: "\E076"; }

.icon-chart:before {
  content: "\E077"; }

.icon-ban:before {
  content: "\E07C"; }

.icon-bubble:before {
  content: "\E07D"; }

.icon-camrecorder:before {
  content: "\E07E"; }

.icon-camera:before {
  content: "\E07F"; }

.icon-cloud-download:before {
  content: "\E083"; }

.icon-cloud-upload:before {
  content: "\E084"; }

.icon-envelope:before {
  content: "\E086"; }

.icon-eye:before {
  content: "\E087"; }

.icon-flag:before {
  content: "\E088"; }

.icon-heart:before {
  content: "\E08A"; }

.icon-info:before {
  content: "\E08B"; }

.icon-key:before {
  content: "\E08C"; }

.icon-link:before {
  content: "\E08D"; }

.icon-lock:before {
  content: "\E08E"; }

.icon-lock-open:before {
  content: "\E08F"; }

.icon-magnifier:before {
  content: "\E090"; }

.icon-magnifier-add:before {
  content: "\E091"; }

.icon-magnifier-remove:before {
  content: "\E092"; }

.icon-paper-clip:before {
  content: "\E093"; }

.icon-paper-plane:before {
  content: "\E094"; }

.icon-power:before {
  content: "\E097"; }

.icon-refresh:before {
  content: "\E098"; }

.icon-reload:before {
  content: "\E099"; }

.icon-settings:before {
  content: "\E09A"; }

.icon-star:before {
  content: "\E09B"; }

.icon-symbol-female:before {
  content: "\E09C"; }

.icon-symbol-male:before {
  content: "\E09D"; }

.icon-target:before {
  content: "\E09E"; }

.icon-credit-card:before {
  content: "\E025"; }

.icon-paypal:before {
  content: "\E608"; }

.icon-social-tumblr:before {
  content: "\E00A"; }

.icon-social-twitter:before {
  content: "\E009"; }

.icon-social-facebook:before {
  content: "\E00B"; }

.icon-social-instagram:before {
  content: "\E609"; }

.icon-social-linkedin:before {
  content: "\E60A"; }

.icon-social-pinterest:before {
  content: "\E60B"; }

.icon-social-github:before {
  content: "\E60C"; }

.icon-social-google:before {
  content: "\E60D"; }

.icon-social-reddit:before {
  content: "\E60E"; }

.icon-social-skype:before {
  content: "\E60F"; }

.icon-social-dribbble:before {
  content: "\E00D"; }

.icon-social-behance:before {
  content: "\E610"; }

.icon-social-foursqare:before {
  content: "\E611"; }

.icon-social-soundcloud:before {
  content: "\E612"; }

.icon-social-spotify:before {
  content: "\E613"; }

.icon-social-stumbleupon:before {
  content: "\E614"; }

.icon-social-youtube:before {
  content: "\E008"; }

.icon-social-dropbox:before {
  content: "\E00C"; }

.icon-social-vkontakte:before {
  content: "\E618"; }

.icon-social-steam:before {
  content: "\E620"; }
@font-face {
  font-family: "socicon";
  src: url(/public/60e5857089e98edd838074c264d6c951.eot);
  src: url(/public/60e5857089e98edd838074c264d6c951.eot?#iefix) format("embedded-opentype"), url(/public/944f06f5f65ef84a3a36e6c1c2d4b7ad.woff) format("woff"), url(/public/9a64ef938f9e55a70a4defc6ac9790bf.ttf) format("truetype"), url(/public/a35b65744f557fab5424e99bb6d4e980.svg#socicon) format("svg");
  font-weight: normal;
  font-style: normal; }

[data-icon]:before {
  font-family: "socicon" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="socicon-"]:before,
[class*=" socicon-"]:before {
  font-family: "socicon" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.socicon-modelmayhem:before {
  content: "\E000"; }

.socicon-mixcloud:before {
  content: "\E001"; }

.socicon-drupal:before {
  content: "\E002"; }

.socicon-swarm:before {
  content: "\E003"; }

.socicon-istock:before {
  content: "\E004"; }

.socicon-yammer:before {
  content: "\E005"; }

.socicon-ello:before {
  content: "\E006"; }

.socicon-stackoverflow:before {
  content: "\E007"; }

.socicon-persona:before {
  content: "\E008"; }

.socicon-triplej:before {
  content: "\E009"; }

.socicon-houzz:before {
  content: "\E00A"; }

.socicon-rss:before {
  content: "\E00B"; }

.socicon-paypal:before {
  content: "\E00C"; }

.socicon-odnoklassniki:before {
  content: "\E00D"; }

.socicon-airbnb:before {
  content: "\E00E"; }

.socicon-periscope:before {
  content: "\E00F"; }

.socicon-outlook:before {
  content: "\E010"; }

.socicon-coderwall:before {
  content: "\E011"; }

.socicon-tripadvisor:before {
  content: "\E012"; }

.socicon-appnet:before {
  content: "\E013"; }

.socicon-goodreads:before {
  content: "\E014"; }

.socicon-tripit:before {
  content: "\E015"; }

.socicon-lanyrd:before {
  content: "\E016"; }

.socicon-slideshare:before {
  content: "\E017"; }

.socicon-buffer:before {
  content: "\E018"; }

.socicon-disqus:before {
  content: "\E019"; }

.socicon-vkontakte:before {
  content: "\E01A"; }

.socicon-whatsapp:before {
  content: "\E01B"; }

.socicon-patreon:before {
  content: "\E01C"; }

.socicon-storehouse:before {
  content: "\E01D"; }

.socicon-pocket:before {
  content: "\E01E"; }

.socicon-mail:before {
  content: "\E01F"; }

.socicon-blogger:before {
  content: "\E020"; }

.socicon-technorati:before {
  content: "\E021"; }

.socicon-reddit:before {
  content: "\E022"; }

.socicon-dribbble:before {
  content: "\E023"; }

.socicon-stumbleupon:before {
  content: "\E024"; }

.socicon-digg:before {
  content: "\E025"; }

.socicon-envato:before {
  content: "\E026"; }

.socicon-behance:before {
  content: "\E027"; }

.socicon-delicious:before {
  content: "\E028"; }

.socicon-deviantart:before {
  content: "\E029"; }

.socicon-forrst:before {
  content: "\E02A"; }

.socicon-play:before {
  content: "\E02B"; }

.socicon-zerply:before {
  content: "\E02C"; }

.socicon-wikipedia:before {
  content: "\E02D"; }

.socicon-apple:before {
  content: "\E02E"; }

.socicon-flattr:before {
  content: "\E02F"; }

.socicon-github:before {
  content: "\E030"; }

.socicon-renren:before {
  content: "\E031"; }

.socicon-friendfeed:before {
  content: "\E032"; }

.socicon-newsvine:before {
  content: "\E033"; }

.socicon-identica:before {
  content: "\E034"; }

.socicon-bebo:before {
  content: "\E035"; }

.socicon-zynga:before {
  content: "\E036"; }

.socicon-steam:before {
  content: "\E037"; }

.socicon-xbox:before {
  content: "\E038"; }

.socicon-windows:before {
  content: "\E039"; }

.socicon-qq:before {
  content: "\E03A"; }

.socicon-douban:before {
  content: "\E03B"; }

.socicon-meetup:before {
  content: "\E03C"; }

.socicon-playstation:before {
  content: "\E03D"; }

.socicon-android:before {
  content: "\E03E"; }

.socicon-snapchat:before {
  content: "\E03F"; }

.socicon-twitter:before {
  content: "\E040"; }

.socicon-facebook:before {
  content: "\E041"; }

.socicon-googleplus:before {
  content: "\E042"; }

.socicon-pinterest:before {
  content: "\E043"; }

.socicon-foursquare:before {
  content: "\E044"; }

.socicon-yahoo:before {
  content: "\E045"; }

.socicon-skype:before {
  content: "\E046"; }

.socicon-yelp:before {
  content: "\E047"; }

.socicon-feedburner:before {
  content: "\E048"; }

.socicon-linkedin:before {
  content: "\E049"; }

.socicon-viadeo:before {
  content: "\E04A"; }

.socicon-xing:before {
  content: "\E04B"; }

.socicon-myspace:before {
  content: "\E04C"; }

.socicon-soundcloud:before {
  content: "\E04D"; }

.socicon-spotify:before {
  content: "\E04E"; }

.socicon-grooveshark:before {
  content: "\E04F"; }

.socicon-lastfm:before {
  content: "\E050"; }

.socicon-youtube:before {
  content: "\E051"; }

.socicon-vimeo:before {
  content: "\E052"; }

.socicon-dailymotion:before {
  content: "\E053"; }

.socicon-vine:before {
  content: "\E054"; }

.socicon-flickr:before {
  content: "\E055"; }

.socicon-500px:before {
  content: "\E056"; }

.socicon-wordpress:before {
  content: "\E058"; }

.socicon-tumblr:before {
  content: "\E059"; }

.socicon-twitch:before {
  content: "\E05A"; }

.socicon-8tracks:before {
  content: "\E05B"; }

.socicon-amazon:before {
  content: "\E05C"; }

.socicon-icq:before {
  content: "\E05D"; }

.socicon-smugmug:before {
  content: "\E05E"; }

.socicon-ravelry:before {
  content: "\E05F"; }

.socicon-weibo:before {
  content: "\E060"; }

.socicon-baidu:before {
  content: "\E061"; }

.socicon-angellist:before {
  content: "\E062"; }

.socicon-ebay:before {
  content: "\E063"; }

.socicon-imdb:before {
  content: "\E064"; }

.socicon-stayfriends:before {
  content: "\E065"; }

.socicon-residentadvisor:before {
  content: "\E066"; }

.socicon-google:before {
  content: "\E067"; }

.socicon-yandex:before {
  content: "\E068"; }

.socicon-sharethis:before {
  content: "\E069"; }

.socicon-bandcamp:before {
  content: "\E06A"; }

.socicon-itunes:before {
  content: "\E06B"; }

.socicon-deezer:before {
  content: "\E06C"; }

.socicon-telegram:before {
  content: "\E06E"; }

.socicon-openid:before {
  content: "\E06F"; }

.socicon-amplement:before {
  content: "\E070"; }

.socicon-viber:before {
  content: "\E071"; }

.socicon-zomato:before {
  content: "\E072"; }

.socicon-draugiem:before {
  content: "\E074"; }

.socicon-endomodo:before {
  content: "\E075"; }

.socicon-filmweb:before {
  content: "\E076"; }

.socicon-stackexchange:before {
  content: "\E077"; }

.socicon-wykop:before {
  content: "\E078"; }

.socicon-teamspeak:before {
  content: "\E079"; }

.socicon-teamviewer:before {
  content: "\E07A"; }

.socicon-ventrilo:before {
  content: "\E07B"; }

.socicon-younow:before {
  content: "\E07C"; }

.socicon-raidcall:before {
  content: "\E07D"; }

.socicon-mumble:before {
  content: "\E07E"; }

.socicon-medium:before {
  content: "\E06D"; }

.socicon-bebee:before {
  content: "\E07F"; }

.socicon-hitbox:before {
  content: "\E080"; }

.socicon-reverbnation:before {
  content: "\E081"; }

.socicon-formulr:before {
  content: "\E082"; }

.socicon-instagram:before {
  content: "\E057"; }

.socicon-battlenet:before {
  content: "\E083"; }

.socicon-chrome:before {
  content: "\E084"; }

.socicon-discord:before {
  content: "\E086"; }

.socicon-issuu:before {
  content: "\E087"; }

.socicon-macos:before {
  content: "\E088"; }

.socicon-firefox:before {
  content: "\E089"; }

.socicon-opera:before {
  content: "\E08D"; }

.socicon-keybase:before {
  content: "\E090"; }

.socicon-alliance:before {
  content: "\E091"; }

.socicon-livejournal:before {
  content: "\E092"; }

.socicon-googlephotos:before {
  content: "\E093"; }

.socicon-horde:before {
  content: "\E094"; }

.socicon-etsy:before {
  content: "\E095"; }

.socicon-zapier:before {
  content: "\E096"; }

.socicon-google-scholar:before {
  content: "\E097"; }

.socicon-researchgate:before {
  content: "\E098"; }

.socicon-wechat:before {
  content: "\E099"; }

.socicon-strava:before {
  content: "\E09A"; }

.socicon-line:before {
  content: "\E09B"; }

.socicon-lyft:before {
  content: "\E09C"; }

.socicon-uber:before {
  content: "\E09D"; }

.socicon-songkick:before {
  content: "\E09E"; }

.socicon-viewbug:before {
  content: "\E09F"; }

.socicon-googlegroups:before {
  content: "\E0A0"; }

.socicon-quora:before {
  content: "\E073"; }

.socicon-diablo:before {
  content: "\E085"; }

.socicon-blizzard:before {
  content: "\E0A1"; }

.socicon-hearthstone:before {
  content: "\E08B"; }

.socicon-heroes:before {
  content: "\E08A"; }

.socicon-overwatch:before {
  content: "\E08C"; }

.socicon-warcraft:before {
  content: "\E08E"; }

.socicon-starcraft:before {
  content: "\E08F"; }

.socicon-beam:before {
  content: "\E0A2"; }

.socicon-curse:before {
  content: "\E0A3"; }

.socicon-player:before {
  content: "\E0A4"; }

.socicon-streamjar:before {
  content: "\E0A5"; }

.socicon-nintendo:before {
  content: "\E0A6"; }

.socicon-hellocoton:before {
  content: "\E0A7"; }
@charset "UTF-8";
/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Default Style Settings -

Screen Stylesheet

version:   	5.0.0
date:      	29/10/15
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/
.rtl {
  direction: rtl; }

@font-face {
  font-family: 'revicons';
  src: url(/public/2feb69ccb596730c72920c6ba3e37ef8.eot);
  src: url(/public/2feb69ccb596730c72920c6ba3e37ef8.eot#iefix) format("embedded-opentype"), url(/public/04eb8fc57f27498e5ae37523e3bfb2c7.woff) format("woff"), url(/public/17629a5dfe0d3c3946cf401e1895f091.ttf) format("truetype"), url(/public/1142a254da20b59e7d10ac39e78c4fbf.svg#revicons) format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="revicon-"]:before, [class*=" revicon-"]:before {
  font-family: "revicons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

.revicon-search-1:before {
  content: '\E802'; }

/* '' */
.revicon-pencil-1:before {
  content: '\E831'; }

/* '' */
.revicon-picture-1:before {
  content: '\E803'; }

/* '' */
.revicon-cancel:before {
  content: '\E80A'; }

/* '' */
.revicon-info-circled:before {
  content: '\E80F'; }

/* '' */
.revicon-trash:before {
  content: '\E801'; }

/* '' */
.revicon-left-dir:before {
  content: '\E817'; }

/* '' */
.revicon-right-dir:before {
  content: '\E818'; }

/* '' */
.revicon-down-open:before {
  content: '\E83B'; }

/* '' */
.revicon-left-open:before {
  content: '\E819'; }

/* '' */
.revicon-right-open:before {
  content: '\E81A'; }

/* '' */
.revicon-angle-left:before {
  content: '\E820'; }

/* '' */
.revicon-angle-right:before {
  content: '\E81D'; }

/* '' */
.revicon-left-big:before {
  content: '\E81F'; }

/* '' */
.revicon-right-big:before {
  content: '\E81E'; }

/* '' */
.revicon-magic:before {
  content: '\E807'; }

/* '' */
.revicon-picture:before {
  content: '\E800'; }

/* '' */
.revicon-export:before {
  content: '\E80B'; }

/* '' */
.revicon-cog:before {
  content: '\E832'; }

/* '' */
.revicon-login:before {
  content: '\E833'; }

/* '' */
.revicon-logout:before {
  content: '\E834'; }

/* '' */
.revicon-video:before {
  content: '\E805'; }

/* '' */
.revicon-arrow-combo:before {
  content: '\E827'; }

/* '' */
.revicon-left-open-1:before {
  content: '\E82A'; }

/* '' */
.revicon-right-open-1:before {
  content: '\E82B'; }

/* '' */
.revicon-left-open-mini:before {
  content: '\E822'; }

/* '' */
.revicon-right-open-mini:before {
  content: '\E823'; }

/* '' */
.revicon-left-open-big:before {
  content: '\E824'; }

/* '' */
.revicon-right-open-big:before {
  content: '\E825'; }

/* '' */
.revicon-left:before {
  content: '\E836'; }

/* '' */
.revicon-right:before {
  content: '\E826'; }

/* '' */
.revicon-ccw:before {
  content: '\E808'; }

/* '' */
.revicon-arrows-ccw:before {
  content: '\E806'; }

/* '' */
.revicon-palette:before {
  content: '\E829'; }

/* '' */
.revicon-list-add:before {
  content: '\E80C'; }

/* '' */
.revicon-doc:before {
  content: '\E809'; }

/* '' */
.revicon-left-open-outline:before {
  content: '\E82E'; }

/* '' */
.revicon-left-open-2:before {
  content: '\E82C'; }

/* '' */
.revicon-right-open-outline:before {
  content: '\E82F'; }

/* '' */
.revicon-right-open-2:before {
  content: '\E82D'; }

/* '' */
.revicon-equalizer:before {
  content: '\E83A'; }

/* '' */
.revicon-layers-alt:before {
  content: '\E804'; }

/* '' */
.revicon-popup:before {
  content: '\E828'; }

/* '' */
/******************************
	-	BASIC STYLES		-
******************************/
.rev_slider_wrapper {
  position: relative;
  z-index: 0; }

.rev_slider {
  position: relative;
  overflow: visible; }

.tp-overflow-hidden {
  overflow: hidden; }

.tp-simpleresponsive img,
.rev_slider img {
  max-width: none !important;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  margin: 0px;
  padding: 0px;
  border-width: 0px;
  border: none; }

.rev_slider .no-slides-text {
  font-weight: bold;
  text-align: center;
  padding-top: 80px; }

.rev_slider > ul,
.rev_slider_wrapper > ul,
.tp-revslider-mainul > li,
.rev_slider > ul > li,
.rev_slider > ul > li:before,
.tp-revslider-mainul > li:before,
.tp-simpleresponsive > ul,
.tp-simpleresponsive > ul > li,
.tp-simpleresponsive > ul > li:before,
.tp-revslider-mainul > li,
.tp-simpleresponsive > ul > li {
  list-style: none !important;
  position: absolute;
  margin: 0px !important;
  padding: 0px !important;
  overflow-x: visible;
  overflow-y: visible;
  list-style-type: none !important;
  background-image: none;
  background-position: 0px 0px;
  text-indent: 0em;
  top: 0px;
  left: 0px; }

.tp-revslider-mainul > li,
.rev_slider > ul > li,
.rev_slider > ul > li:before,
.tp-revslider-mainul > li:before,
.tp-simpleresponsive > ul > li,
.tp-simpleresponsive > ul > li:before,
.tp-revslider-mainul > li,
.tp-simpleresponsive > ul > li {
  visibility: hidden; }

.tp-revslider-slidesli,
.tp-revslider-mainul {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important; }

.rev_slider li.tp-revslider-slidesli {
  position: absolute !important; }

.tp-caption .rs-untoggled-content {
  display: block; }

.tp-caption .rs-toggled-content {
  display: none; }

.rs-toggle-content-active.tp-caption .rs-toggled-content {
  display: block; }

.rs-toggle-content-active.tp-caption .rs-untoggled-content {
  display: none; }

.rev_slider .tp-caption,
.rev_slider .caption {
  position: relative;
  visibility: hidden;
  white-space: nowrap;
  display: block; }

.rev_slider .tp-mask-wrap .tp-caption,
.rev_slider .tp-mask-wrap *:last-child,
.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,
.wpb_text_column .rev_slider .tp-mask-wrap *:last-child {
  margin-bottom: 0; }

.tp-svg-layer svg {
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: top; }

/* CAROUSEL FUNCTIONS */
.tp-carousel-wrapper {
  cursor: url(/public/b06c243f534d9c5461d16528156cd5a8.cur), move; }

.tp-carousel-wrapper.dragged {
  cursor: url(/public/a8c874b93b3d848f39a71260c57e3863.cur), move; }

/* ADDED FOR SLIDELINK MANAGEMENT */
.tp-caption {
  z-index: 1; }

.tp_inner_padding {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  max-height: none !important; }

.tp-caption {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  position: absolute;
  -webkit-font-smoothing: antialiased !important; }

.tp-caption.tp-layer-selectable {
  -moz-user-select: all;
  -khtml-user-select: all;
  -webkit-user-select: all;
  -o-user-select: all; }

.tp-forcenotvisible,
.tp-hide-revslider,
.tp-caption.tp-hidden-caption {
  visibility: hidden !important;
  display: none !important; }

.rev_slider embed,
.rev_slider iframe,
.rev_slider object,
.rev_slider audio,
.rev_slider video {
  max-width: none !important; }

/**********************************************
	-	FULLSCREEN AND FULLWIDHT CONTAINERS	-
**********************************************/
.rev_slider_wrapper {
  width: 100%; }

.fullscreen-container {
  position: relative;
  padding: 0; }

.fullwidthbanner-container {
  position: relative;
  padding: 0;
  overflow: hidden; }

.fullwidthbanner-container .fullwidthabanner {
  width: 100%;
  position: relative; }

/*********************************
	-	SPECIAL TP CAPTIONS -
**********************************/
.tp-static-layers {
  position: absolute;
  z-index: 101;
  top: 0px;
  left: 0px;
  /*pointer-events:none;*/ }

.tp-caption .frontcorner {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 0px solid transparent;
  border-top: 40px solid #00A8FF;
  position: absolute;
  left: -40px;
  top: 0px; }

.tp-caption .backcorner {
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #00A8FF;
  position: absolute;
  right: 0px;
  top: 0px; }

.tp-caption .frontcornertop {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 40px solid #00A8FF;
  position: absolute;
  left: -40px;
  top: 0px; }

.tp-caption .backcornertop {
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #00A8FF;
  position: absolute;
  right: 0px;
  top: 0px; }

.tp-layer-inner-rotation {
  position: relative !important; }

/***********************************************
	-	SPECIAL ALTERNATIVE IMAGE SETTINGS	-
***********************************************/
img.tp-slider-alternative-image {
  width: 100%;
  height: auto; }

/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
  filter: none !important; }

/********************************
	-	FULLSCREEN VIDEO	-
*********************************/
.rs-background-video-layer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 0; }

.tp-caption.coverscreenvideo {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute; }

.caption.fullscreenvideo,
.tp-caption.fullscreenvideo {
  left: 0px;
  top: 0px;
  position: absolute;
  width: 100%;
  height: 100%; }

.caption.fullscreenvideo iframe,
.caption.fullscreenvideo audio,
.caption.fullscreenvideo video,
.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe audio,
.tp-caption.fullscreenvideo iframe video {
  width: 100% !important;
  height: 100% !important;
  display: none; }

.fullcoveredvideo audio,
.fullscreenvideo audio
.fullcoveredvideo video,
.fullscreenvideo video {
  background: #000; }

.fullcoveredvideo .tp-poster {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px; }

.videoisplaying .html5vid .tp-poster {
  display: none; }

.tp-video-play-button {
  background: #000;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFF;
  z-index: 3;
  margin-top: -25px;
  margin-left: -25px;
  line-height: 50px !important;
  text-align: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  z-index: 4;
  opacity: 0;
  -webkit-transition: opacity 300ms ease-out !important;
  -moz-transition: opacity 300ms ease-out !important;
  -o-transition: opacity 300ms ease-out !important;
  transition: opacity 300ms ease-out !important; }

.tp-hiddenaudio,
.tp-audio-html5 .tp-video-play-button {
  display: none !important; }

.tp-caption .html5vid {
  width: 100% !important;
  height: 100% !important; }

.tp-video-play-button i {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  line-height: 50px !important;
  font-size: 40px !important; }

.tp-caption:hover .tp-video-play-button {
  opacity: 1; }

.tp-caption .tp-revstop {
  display: none;
  border-left: 5px solid #fff !important;
  border-right: 5px solid #fff !important;
  margin-top: 15px !important;
  line-height: 20px !important;
  vertical-align: top;
  font-size: 25px !important; }

.videoisplaying .revicon-right-dir {
  display: none; }

.videoisplaying .tp-revstop {
  display: inline-block; }

.videoisplaying .tp-video-play-button {
  display: none; }

.tp-caption:hover .tp-video-play-button {
  display: block; }

.fullcoveredvideo .tp-video-play-button {
  display: none !important; }

.fullscreenvideo .fullscreenvideo audio {
  object-fit: contain !important; }

.fullscreenvideo .fullscreenvideo video {
  object-fit: contain !important; }

.fullscreenvideo .fullcoveredvideo audio {
  object-fit: cover !important; }

.fullscreenvideo .fullcoveredvideo video {
  object-fit: cover !important; }

.tp-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  opacity: 0;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -o-transition: opacity .3s;
  -ms-transition: opacity .3s;
  transition: opacity .3s;
  background-image: linear-gradient(to bottom, black 13%, #323232 100%);
  background-image: -o-linear-gradient(bottom, black 13%, #323232 100%);
  background-image: -moz-linear-gradient(bottom, black 13%, #323232 100%);
  background-image: -webkit-linear-gradient(bottom, black 13%, #323232 100%);
  background-image: -ms-linear-gradient(bottom, black 13%, #323232 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.13, black), color-stop(1, #323232));
  display: table;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box; }

.tp-caption:hover .tp-video-controls {
  opacity: .9; }

.tp-video-button {
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  color: #EEE;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  line-height: 12px;
  font-size: 12px;
  color: #fff;
  padding: 0px;
  margin: 0px;
  outline: none; }

.tp-video-button:hover {
  cursor: pointer; }

.tp-video-button-wrap,
.tp-video-seek-bar-wrap,
.tp-video-vol-bar-wrap {
  padding: 0px 5px;
  display: table-cell;
  vertical-align: middle; }

.tp-video-seek-bar-wrap {
  width: 80%; }

.tp-video-vol-bar-wrap {
  width: 20%; }

.tp-volume-bar,
.tp-seek-bar {
  width: 100%;
  cursor: pointer;
  outline: none;
  line-height: 12px;
  margin: 0;
  padding: 0; }

.rs-fullvideo-cover {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  background: transparent;
  z-index: 5; }

.rs-background-video-layer video::-webkit-media-controls {
  display: none !important; }

.rs-background-video-layer audio::-webkit-media-controls {
  display: none !important; }

.tp-audio-html5 .tp-video-controls {
  opacity: 1 !important;
  visibility: visible !important; }

/********************************
	-	DOTTED OVERLAYS	-
*********************************/
.tp-dottedoverlay {
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 3; }

.tp-dottedoverlay.twoxtwo {
  background: url(/public/bdc21cc00e9290a24aef7b34a0377dc4.png); }

.tp-dottedoverlay.twoxtwowhite {
  background: url(/public/969259228d87828935939c20a884fc24.png); }

.tp-dottedoverlay.threexthree {
  background: url(/public/32962e55384eb5f08af6d123119f98cf.png); }

.tp-dottedoverlay.threexthreewhite {
  background: url(/public/678700e6b8d760b9990e3289611d60e3.png); }

/******************************
	-	SHADOWS		-
******************************/
.tp-shadowcover {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  position: absolute;
  z-index: -1; }

.tp-shadow1 {
  -webkit-box-shadow: 0 10px 6px -6px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 10px 6px -6px rgba(0, 0, 0, 0.8);
  box-shadow: 0 10px 6px -6px rgba(0, 0, 0, 0.8); }

.tp-shadow2:before, .tp-shadow2:after,
.tp-shadow3:before, .tp-shadow4:after {
  z-index: -2;
  position: absolute;
  content: "";
  bottom: 10px;
  left: 10px;
  width: 50%;
  top: 85%;
  max-width: 300px;
  background: transparent;
  -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.8);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg); }

.tp-shadow2:after,
.tp-shadow4:after {
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto; }

.tp-shadow5 {
  position: relative;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; }

.tp-shadow5:before, .tp-shadow5:after {
  content: "";
  position: absolute;
  z-index: -2;
  -webkit-box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.6);
  top: 30%;
  bottom: 0;
  left: 20px;
  right: 20px;
  -moz-border-radius: 100px / 20px;
  border-radius: 100px / 20px; }

/******************************
	-	BUTTONS	-
*******************************/
.tp-button {
  padding: 6px 13px 5px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  height: 30px;
  cursor: pointer;
  color: #fff !important;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6) !important;
  font-size: 15px;
  line-height: 45px !important;
  font-family: arial, sans-serif;
  font-weight: bold;
  letter-spacing: -1px;
  text-decoration: none; }

.tp-button.big {
  color: #fff;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
  font-weight: bold;
  padding: 9px 20px;
  font-size: 19px;
  line-height: 57px !important; }

.purchase:hover,
.tp-button:hover,
.tp-button.big:hover {
  background-position: bottom, 15px 11px; }

/*	BUTTON COLORS	*/
.tp-button.green, .tp-button:hover.green,
.purchase.green, .purchase:hover.green {
  background-color: #21a117;
  -webkit-box-shadow: 0px 3px 0px 0px #104d0b;
  -moz-box-shadow: 0px 3px 0px 0px #104d0b;
  box-shadow: 0px 3px 0px 0px #104d0b; }

.tp-button.blue, .tp-button:hover.blue,
.purchase.blue, .purchase:hover.blue {
  background-color: #1d78cb;
  -webkit-box-shadow: 0px 3px 0px 0px #0f3e68;
  -moz-box-shadow: 0px 3px 0px 0px #0f3e68;
  box-shadow: 0px 3px 0px 0px #0f3e68; }

.tp-button.red, .tp-button:hover.red,
.purchase.red, .purchase:hover.red {
  background-color: #cb1d1d;
  -webkit-box-shadow: 0px 3px 0px 0px #7c1212;
  -moz-box-shadow: 0px 3px 0px 0px #7c1212;
  box-shadow: 0px 3px 0px 0px #7c1212; }

.tp-button.orange, .tp-button:hover.orange,
.purchase.orange, .purchase:hover.orange {
  background-color: #ff7700;
  -webkit-box-shadow: 0px 3px 0px 0px #a34c00;
  -moz-box-shadow: 0px 3px 0px 0px #a34c00;
  box-shadow: 0px 3px 0px 0px #a34c00; }

.tp-button.darkgrey, .tp-button.grey,
.tp-button:hover.darkgrey, .tp-button:hover.grey,
.purchase.darkgrey, .purchase:hover.darkgrey {
  background-color: #555;
  -webkit-box-shadow: 0px 3px 0px 0px #222;
  -moz-box-shadow: 0px 3px 0px 0px #222;
  box-shadow: 0px 3px 0px 0px #222; }

.tp-button.lightgrey, .tp-button:hover.lightgrey,
.purchase.lightgrey, .purchase:hover.lightgrey {
  background-color: #888;
  -webkit-box-shadow: 0px 3px 0px 0px #555;
  -moz-box-shadow: 0px 3px 0px 0px #555;
  box-shadow: 0px 3px 0px 0px #555; }

/* TP BUTTONS DESKTOP SIZE */
.rev-btn,
.rev-btn:visited {
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  line-height: 44px;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 35px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  cursor: pointer; }

.rev-btn.rev-uppercase,
.rev-btn.rev-uppercase:visited {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 900; }

.rev-btn.rev-withicon i {
  font-size: 15px;
  font-weight: normal;
  position: relative;
  top: 0px;
  -webkit-transition: all 0.2s ease-out !important;
  -moz-transition: all 0.2s ease-out !important;
  -o-transition: all 0.2s ease-out !important;
  -ms-transition: all 0.2s ease-out !important;
  margin-left: 10px !important; }

.rev-btn.rev-hiddenicon i {
  font-size: 15px;
  font-weight: normal;
  position: relative;
  top: 0px;
  -webkit-transition: all 0.2s ease-out !important;
  -moz-transition: all 0.2s ease-out !important;
  -o-transition: all 0.2s ease-out !important;
  -ms-transition: all 0.2s ease-out !important;
  opacity: 0;
  margin-left: 0px !important;
  width: 0px !important; }

.rev-btn.rev-hiddenicon:hover i {
  opacity: 1 !important;
  margin-left: 10px !important;
  width: auto !important; }

/* REV BUTTONS MEDIUM */
.rev-btn.rev-medium,
.rev-btn.rev-medium:visited {
  line-height: 36px;
  font-size: 14px;
  padding: 10px 30px; }

.rev-btn.rev-medium.rev-withicon i {
  font-size: 14px;
  top: 0px; }

.rev-btn.rev-medium.rev-hiddenicon i {
  font-size: 14px;
  top: 0px; }

/* REV BUTTONS SMALL */
.rev-btn.rev-small,
.rev-btn.rev-small:visited {
  line-height: 28px;
  font-size: 12px;
  padding: 7px 20px; }

.rev-btn.rev-small.rev-withicon i {
  font-size: 12px;
  top: 0px; }

.rev-btn.rev-small.rev-hiddenicon i {
  font-size: 12px;
  top: 0px; }

/* ROUNDING OPTIONS */
.rev-maxround {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px; }

.rev-minround {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

/* BURGER BUTTON */
.rev-burger {
  position: relative;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  padding: 22px 0 0 14px;
  border-radius: 50%;
  border: 1px solid rgba(51, 51, 51, 0.25);
  tap-highlight-color: transparent;
  cursor: pointer; }

.rev-burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #333;
  transition: .7s;
  pointer-events: none;
  transform-style: flat !important; }

.rev-burger span:nth-child(2) {
  margin: 3px 0; }

#dialog_addbutton .rev-burger:hover :first-child,
.open .rev-burger :first-child,
.open.rev-burger :first-child {
  transform: translateY(6px) rotate(-45deg);
  -webkit-transform: translateY(6px) rotate(-45deg); }

#dialog_addbutton .rev-burger:hover :nth-child(2),
.open .rev-burger :nth-child(2),
.open.rev-burger :nth-child(2) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  opacity: 0; }

#dialog_addbutton .rev-burger:hover :last-child,
.open .rev-burger :last-child,
.open.rev-burger :last-child {
  transform: translateY(-6px) rotate(-135deg);
  -webkit-transform: translateY(-6px) rotate(-135deg); }

.rev-burger.revb-white {
  border: 2px solid rgba(255, 255, 255, 0.2); }

.rev-burger.revb-white span {
  background: #fff; }

.rev-burger.revb-whitenoborder {
  border: 0; }

.rev-burger.revb-whitenoborder span {
  background: #fff; }

.rev-burger.revb-darknoborder {
  border: 0; }

.rev-burger.revb-darknoborder span {
  background: #333; }

.rev-burger.revb-whitefull {
  background: #fff;
  border: none; }

.rev-burger.revb-whitefull span {
  background: #333; }

.rev-burger.revb-darkfull {
  background: #333;
  border: none; }

.rev-burger.revb-darkfull span {
  background: #fff; }

/* SCROLL DOWN BUTTON */
@-webkit-keyframes rev-ani-mouse {
  0% {
    opacity: 1;
    top: 29%; }
  15% {
    opacity: 1;
    top: 50%; }
  50% {
    opacity: 0;
    top: 50%; }
  100% {
    opacity: 0;
    top: 29%; } }

@-moz-keyframes rev-ani-mouse {
  0% {
    opacity: 1;
    top: 29%; }
  15% {
    opacity: 1;
    top: 50%; }
  50% {
    opacity: 0;
    top: 50%; }
  100% {
    opacity: 0;
    top: 29%; } }

@keyframes rev-ani-mouse {
  0% {
    opacity: 1;
    top: 29%; }
  15% {
    opacity: 1;
    top: 50%; }
  50% {
    opacity: 0;
    top: 50%; }
  100% {
    opacity: 0;
    top: 29%; } }

.rev-scroll-btn {
  display: inline-block;
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
  width: 35px;
  height: 55px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid white;
  border-radius: 23px; }

.rev-scroll-btn > * {
  display: inline-block;
  line-height: 18px;
  font-size: 13px;
  font-weight: normal;
  color: #7f8c8d;
  color: #ffffff;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 2px; }

.rev-scroll-btn > *:hover,
.rev-scroll-btn > *:focus,
.rev-scroll-btn > *.active {
  color: #ffffff; }

.rev-scroll-btn > *:hover,
.rev-scroll-btn > *:focus,
.rev-scroll-btn > *:active,
.rev-scroll-btn > *.active {
  filter: alpha(opacity=80); }

.rev-scroll-btn.revs-fullwhite {
  background: #fff; }

.rev-scroll-btn.revs-fullwhite span {
  background: #333; }

.rev-scroll-btn.revs-fulldark {
  background: #333;
  border: none; }

.rev-scroll-btn.revs-fulldark span {
  background: #fff; }

.rev-scroll-btn span {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: white;
  border-radius: 50%;
  -webkit-animation: rev-ani-mouse 2.5s linear infinite;
  -moz-animation: rev-ani-mouse 2.5s linear infinite;
  animation: rev-ani-mouse 2.5s linear infinite; }

.rev-scroll-btn.revs-dark {
  border-color: #333; }

.rev-scroll-btn.revs-dark span {
  background: #333; }

.rev-control-btn {
  position: relative;
  display: inline-block;
  z-index: 5;
  color: #FFF;
  font-size: 20px;
  line-height: 60px;
  font-weight: 400;
  font-style: normal;
  font-family: Raleway;
  text-decoration: none;
  text-align: center;
  background-color: #000;
  border-radius: 50px;
  text-shadow: none;
  background-color: rgba(0, 0, 0, 0.5);
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  cursor: pointer; }

.rev-cbutton-dark-sr {
  border-radius: 3px; }

.rev-cbutton-light {
  color: #333;
  background-color: rgba(255, 255, 255, 0.75); }

.rev-cbutton-light-sr {
  color: #333;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.75); }

.rev-sbutton {
  line-height: 37px;
  width: 37px;
  height: 37px; }

.rev-sbutton-blue {
  background-color: #3B5998; }

.rev-sbutton-lightblue {
  background-color: #00A0D1; }

.rev-sbutton-red {
  background-color: #DD4B39; }

/************************************
-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer {
  visibility: hidden;
  width: 100%;
  height: 5px;
  /*background:url(../assets/timer.png);*/
  background: #fff;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 200;
  top: 0px; }

.tp-bannertimer.tp-bottom {
  top: auto;
  bottom: 0px !important;
  height: 5px; }

/*********************************************
-	BASIC SETTINGS FOR THE BANNER	-
***********************************************/
.tp-simpleresponsive img {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none; }

.tp-caption img {
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
  zoom: 1; }

/*  CAPTION SLIDELINK   **/
.caption.slidelink a div,
.tp-caption.slidelink a div {
  width: 3000px;
  height: 1500px;
  background: url(/public/397e5bd80bc0fe4e18c1837deead5e72.png) repeat; }

.tp-caption.slidelink a span {
  background: url(/public/397e5bd80bc0fe4e18c1837deead5e72.png) repeat; }

.tp-shape {
  width: 100%;
  height: 100%; }

/*********************************************
-	WOOCOMMERCE STYLES	-
***********************************************/
.tp-caption .rs-starring {
  display: inline-block; }

.tp-caption .rs-starring .star-rating {
  float: none; }

.tp-caption .rs-starring .star-rating {
  color: #FFC321 !important;
  display: inline-block;
  vertical-align: top; }

.tp-caption .rs-starring .star-rating,
.tp-caption .rs-starring-page .star-rating {
  position: relative;
  height: 1em;
  width: 5.4em;
  font-family: star; }

.tp-caption .rs-starring .star-rating:before,
.tp-caption .rs-starring-page .star-rating:before {
  content: "sssss";
  color: #E0DADF;
  float: left;
  top: 0;
  left: 0;
  position: absolute; }

.tp-caption .rs-starring .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
  font-size: 1em !important; }

.tp-caption .rs-starring .star-rating span:before,
.tp-caption .rs-starring .star-rating span:before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0; }

.tp-caption .rs-starring .star-rating {
  color: #FFC321 !important; }

.tp-caption .rs-starring .star-rating,
.tp-caption .rs-starring-page .star-rating {
  font-size: 1em !important;
  font-family: star; }

/******************************
	-	LOADER FORMS	-
********************************/
.tp-loader {
  top: 50%;
  left: 50%;
  z-index: 10000;
  position: absolute; }

.tp-loader.spinner0 {
  width: 40px;
  height: 40px;
  background-color: #fff;
  background: url(/public/4b3afb84b2b71ef56df09997a350bd04.gif) no-repeat center center;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  margin-top: -20px;
  margin-left: -20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

.tp-loader.spinner1 {
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  margin-top: -20px;
  margin-left: -20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

.tp-loader.spinner5 {
  background: url(/public/4b3afb84b2b71ef56df09997a350bd04.gif) no-repeat 10px 10px;
  background-color: #fff;
  margin: -22px -22px;
  width: 44px;
  height: 44px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

@-webkit-keyframes tp-rotateplane {
  0% {
    -webkit-transform: perspective(120px); }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); } }

@keyframes tp-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }

.tp-loader.spinner2 {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  background-color: #ff0000;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  -webkit-animation: tp-scaleout 1.0s infinite ease-in-out;
  animation: tp-scaleout 1.0s infinite ease-in-out; }

@-webkit-keyframes tp-scaleout {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    opacity: 0; } }

@keyframes tp-scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0; } }

.tp-loader.spinner3 {
  margin: -9px 0px 0px -35px;
  width: 70px;
  text-align: center; }

.tp-loader.spinner3 .bounce1,
.tp-loader.spinner3 .bounce2,
.tp-loader.spinner3 .bounce3 {
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: tp-bouncedelay 1.4s infinite ease-in-out;
  animation: tp-bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.tp-loader.spinner3 .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.tp-loader.spinner3 .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

@-webkit-keyframes tp-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }

@keyframes tp-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0); }
  40% {
    transform: scale(1); } }

.tp-loader.spinner4 {
  margin: -20px 0px 0px -20px;
  width: 40px;
  height: 40px;
  text-align: center;
  -webkit-animation: tp-rotate 2.0s infinite linear;
  animation: tp-rotate 2.0s infinite linear; }

.tp-loader.spinner4 .dot1,
.tp-loader.spinner4 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: tp-bounce 2.0s infinite ease-in-out;
  animation: tp-bounce 2.0s infinite ease-in-out;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15); }

.tp-loader.spinner4 .dot2 {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

@-webkit-keyframes tp-rotate {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes tp-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }

@-webkit-keyframes tp-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }

@keyframes tp-bounce {
  0%, 100% {
    transform: scale(0); }
  50% {
    transform: scale(1); } }

/***********************************************
	-  STANDARD NAVIGATION SETTINGS 
***********************************************/
.tp-thumbs.navbar,
.tp-bullets.navbar,
.tp-tabs.navbar {
  border: none;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0; }

.tp-tabs,
.tp-thumbs,
.tp-bullets {
  position: absolute;
  display: block;
  z-index: 1000;
  top: 0px;
  left: 0px; }

.tp-tab,
.tp-thumb {
  cursor: pointer;
  position: absolute;
  opacity: 0.5;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box; }

.tp-arr-imgholder,
.tp-videoposter,
.tp-thumb-image,
.tp-tab-image {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px; }

.tp-tab:hover,
.tp-tab.selected,
.tp-thumb:hover,
.tp-thumb.selected {
  opacity: 1; }

.tp-tab-mask,
.tp-thumb-mask {
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important; }

.tp-tabs,
.tp-thumbs {
  box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important; }

.tp-bullet {
  width: 15px;
  height: 15px;
  position: absolute;
  background: #fff;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer; }

.tp-bullet.selected,
.tp-bullet:hover {
  background: #fff; }

.tp-bannertimer {
  background: #000;
  background: rgba(0, 0, 0, 0.15);
  height: 5px; }

.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000; }

.tparrows:hover {
  background: #000; }

.tparrows:before {
  font-family: "revicons";
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center; }

.tparrows.tp-leftarrow:before {
  content: '\E824'; }

.tparrows.tp-rightarrow:before {
  content: '\E825'; }

/***************************
	- KEN BURNS FIXES -
***************************/
body.rtl .tp-kbimg {
  left: 0 !important; }

/***************************
	- 3D SHADOW MODE -
***************************/
.dddwrappershadow {
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.4); }

/*******************
	- DEBUG MODE -
*******************/
.hglayerinfo {
  position: fixed;
  bottom: 0px;
  left: 0px;
  color: #FFF;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.75);
  padding: 5px 10px;
  z-index: 2000;
  white-space: normal; }

.hginfo {
  position: absolute;
  top: -2px;
  left: -2px;
  color: #e74c3c;
  font-size: 12px;
  font-weight: 600;
  background: #000;
  padding: 2px 5px; }

.indebugmode .tp-caption:hover {
  border: 1px dashed #c0392b !important; }

.helpgrid {
  border: 2px dashed #c0392b;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0; }

#revsliderlogloglog {
  padding: 15px;
  color: #fff;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 200px;
  height: 150px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100000;
  font-size: 10px;
  overflow: scroll; }
/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Layer Style Settings -

Screen Stylesheet

version:   	5.0.0
date:      	18/03/15
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/
.tp-caption.Twitter-Content a, .tp-caption.Twitter-Content a:visited {
  color: #0084B4 !important; }

.tp-caption.Twitter-Content a:hover {
  color: #0084B4 !important;
  text-decoration: underline !important; }

.tp-caption.medium_grey, .medium_grey {
  background-color: #888;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Arial;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  padding: 2px 4px;
  position: absolute;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap; }

.tp-caption.small_text, .small_text {
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Arial;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  position: absolute;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap; }

.tp-caption.medium_text, .medium_text {
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Arial;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  position: absolute;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap; }

.tp-caption.large_text, .large_text {
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Arial;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
  position: absolute;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap; }

.tp-caption.very_large_text, .very_large_text {
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Arial;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 60px;
  margin: 0;
  position: absolute;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap; }

.tp-caption.very_big_white, .very_big_white {
  background-color: #000;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Arial;
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
  margin: 0;
  padding: 1px 4px 0;
  position: absolute;
  text-shadow: none;
  white-space: nowrap; }

.tp-caption.very_big_black, .very_big_black {
  background-color: #fff;
  border-style: none;
  border-width: 0;
  color: #000;
  font-family: Arial;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  padding: 1px 4px 0;
  position: absolute;
  text-shadow: none;
  white-space: nowrap; }

.tp-caption.modern_medium_fat, .modern_medium_fat {
  border-style: none;
  border-width: 0;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 20px;
  margin: 0;
  position: absolute;
  text-shadow: none;
  white-space: nowrap; }

.tp-caption.modern_medium_fat_white, .modern_medium_fat_white {
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 20px;
  margin: 0;
  position: absolute;
  text-shadow: none;
  white-space: nowrap; }

.tp-caption.modern_medium_light, .modern_medium_light {
  border-style: none;
  border-width: 0;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
  position: absolute;
  text-shadow: none;
  white-space: nowrap; }

.tp-caption.modern_big_bluebg, .modern_big_bluebg {
  background-color: #4e5b6c;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 36px;
  margin: 0;
  padding: 3px 10px;
  position: absolute;
  text-shadow: none; }

.tp-caption.modern_big_redbg, .modern_big_redbg {
  background-color: #de543e;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 36px;
  margin: 0;
  padding: 1px 10px 3px;
  position: absolute;
  text-shadow: none; }

.tp-caption.modern_small_text_dark, .modern_small_text_dark {
  border-style: none;
  border-width: 0;
  color: #555;
  font-family: Arial;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  position: absolute;
  text-shadow: none;
  white-space: nowrap; }

.tp-caption.boxshadow, .boxshadow {
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.tp-caption.black, .black {
  color: #000;
  text-shadow: none; }

.tp-caption.noshadow, .noshadow {
  text-shadow: none; }

.tp-caption.thinheadline_dark, .thinheadline_dark {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.85);
  font-family: "Open Sans";
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
  position: absolute;
  text-shadow: none; }

.tp-caption.thintext_dark, .thintext_dark {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.85);
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  position: absolute;
  text-shadow: none; }

.tp-caption.largeblackbg, .largeblackbg {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-color: #000;
  border-radius: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 50px;
  font-weight: 300;
  line-height: 70px;
  padding: 0 20px;
  position: absolute;
  text-shadow: none; }

.tp-caption.largepinkbg, .largepinkbg {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-color: #db4360;
  border-radius: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 50px;
  font-weight: 300;
  line-height: 70px;
  padding: 0 20px;
  position: absolute;
  text-shadow: none; }

.tp-caption.largewhitebg, .largewhitebg {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-color: #fff;
  border-radius: 0;
  color: #000;
  font-family: "Open Sans";
  font-size: 50px;
  font-weight: 300;
  line-height: 70px;
  padding: 0 20px;
  position: absolute;
  text-shadow: none; }

.tp-caption.largegreenbg, .largegreenbg {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-color: #67ae73;
  border-radius: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 50px;
  font-weight: 300;
  line-height: 70px;
  padding: 0 20px;
  position: absolute;
  text-shadow: none; }

.tp-caption.excerpt, .excerpt {
  background-color: black;
  border-color: #fff;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Arial;
  font-size: 36px;
  font-weight: 700;
  height: auto;
  letter-spacing: -1.5px;
  line-height: 36px;
  margin: 0;
  padding: 1px 4px 0;
  text-decoration: none;
  text-shadow: none;
  white-space: normal !important;
  width: 150px; }

.tp-caption.large_bold_grey, .large_bold_grey {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #666;
  font-family: "Open Sans";
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
  margin: 0;
  padding: 1px 4px 0;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.medium_thin_grey, .medium_thin_grey {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #666;
  font-family: "Open Sans";
  font-size: 34px;
  font-weight: 300;
  line-height: 30px;
  margin: 0;
  padding: 1px 4px 0;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.small_thin_grey, .small_thin_grey {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #757575;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin: 0;
  padding: 1px 4px 0;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.lightgrey_divider, .lightgrey_divider {
  background-color: #ebebeb;
  background-position: initial initial;
  background-repeat: initial initial;
  border-color: #222;
  border-style: none;
  border-width: 0;
  height: 3px;
  text-decoration: none;
  width: 370px; }

.tp-caption.large_bold_darkblue, .large_bold_darkblue {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #34495e;
  font-family: "Open Sans";
  font-size: 58px;
  font-weight: 800;
  line-height: 60px;
  text-decoration: none; }

.tp-caption.medium_bg_darkblue, .medium_bg_darkblue {
  background-color: #34495e;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  padding: 10px;
  text-decoration: none; }

.tp-caption.medium_bold_red, .medium_bold_red {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #e33a0c;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  padding: 0;
  text-decoration: none; }

.tp-caption.medium_light_red, .medium_light_red {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #e33a0c;
  font-family: "Open Sans";
  font-size: 21px;
  font-weight: 300;
  line-height: 26px;
  padding: 0;
  text-decoration: none; }

.tp-caption.medium_bg_red, .medium_bg_red {
  background-color: #e33a0c;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  padding: 10px;
  text-decoration: none; }

.tp-caption.medium_bold_orange, .medium_bold_orange {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #f39c12;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  text-decoration: none; }

.tp-caption.medium_bg_orange, .medium_bg_orange {
  background-color: #f39c12;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  padding: 10px;
  text-decoration: none; }

.tp-caption.grassfloor, .grassfloor {
  background-color: #a0b397;
  border-color: #222;
  border-style: none;
  border-width: 0;
  height: 150px;
  text-decoration: none;
  width: 4000px; }

.tp-caption.large_bold_white, .large_bold_white {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 58px;
  font-weight: 800;
  line-height: 60px;
  text-decoration: none; }

.tp-caption.medium_light_white, .medium_light_white {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 30px;
  font-weight: 300;
  line-height: 36px;
  padding: 0;
  text-decoration: none; }

.tp-caption.mediumlarge_light_white, .mediumlarge_light_white {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 34px;
  font-weight: 300;
  line-height: 40px;
  padding: 0;
  text-decoration: none; }

.tp-caption.mediumlarge_light_white_center, .mediumlarge_light_white_center {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 34px;
  font-weight: 300;
  line-height: 40px;
  padding: 0;
  text-align: center;
  text-decoration: none; }

.tp-caption.medium_bg_asbestos, .medium_bg_asbestos {
  background-color: #7f8c8d;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  padding: 10px;
  text-decoration: none; }

.tp-caption.medium_light_black, .medium_light_black {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #000;
  font-family: "Open Sans";
  font-size: 30px;
  font-weight: 300;
  line-height: 36px;
  padding: 0;
  text-decoration: none; }

.tp-caption.large_bold_black, .large_bold_black {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #000;
  font-family: "Open Sans";
  font-size: 58px;
  font-weight: 800;
  line-height: 60px;
  text-decoration: none; }

.tp-caption.mediumlarge_light_darkblue, .mediumlarge_light_darkblue {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #34495e;
  font-family: "Open Sans";
  font-size: 34px;
  font-weight: 300;
  line-height: 40px;
  padding: 0;
  text-decoration: none; }

.tp-caption.small_light_white, .small_light_white {
  background-color: transparent;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 17px;
  font-weight: 300;
  line-height: 28px;
  padding: 0;
  text-decoration: none; }

.tp-caption.roundedimage, .roundedimage {
  border-color: #222;
  border-style: none;
  border-width: 0; }

.tp-caption.large_bg_black, .large_bg_black {
  background-color: #000;
  border-color: #ffd658;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 40px;
  font-weight: 800;
  line-height: 40px;
  padding: 10px 20px 15px;
  text-decoration: none; }

.tp-caption.mediumwhitebg, .mediumwhitebg {
  background-color: #fff;
  border-color: #000;
  border-style: none;
  border-width: 0;
  color: #000;
  font-family: "Open Sans";
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
  padding: 5px 15px 10px;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.maincaption, .maincaption {
  background-color: transparent;
  border-color: #000;
  border-style: none;
  border-width: 0;
  color: #212a40;
  font-family: roboto;
  font-size: 33px;
  font-weight: 500;
  line-height: 43px;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.miami_title_60px, .miami_title_60px {
  background-color: transparent;
  border-color: #000;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Source Sans Pro";
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 60px;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.miami_subtitle, .miami_subtitle {
  background-color: transparent;
  border-color: #000;
  border-style: none;
  border-width: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Source Sans Pro";
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 24px;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.divideline30px, .divideline30px {
  background: #fff;
  background-color: #fff;
  border-color: #222;
  border-style: none;
  border-width: 0;
  height: 2px;
  min-width: 30px;
  text-decoration: none; }

.tp-caption.Miami_nostyle, .Miami_nostyle {
  border-color: #222;
  border-style: none;
  border-width: 0; }

.tp-caption.miami_content_light, .miami_content_light {
  background-color: transparent;
  border-color: #000;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: "Source Sans Pro";
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 28px;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.miami_title_60px_dark, .miami_title_60px_dark {
  background-color: transparent;
  border-color: #000;
  border-style: none;
  border-width: 0;
  color: #333;
  font-family: "Source Sans Pro";
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 60px;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.miami_content_dark, .miami_content_dark {
  background-color: transparent;
  border-color: #000;
  border-style: none;
  border-width: 0;
  color: #666;
  font-family: "Source Sans Pro";
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 28px;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.divideline30px_dark, .divideline30px_dark {
  background-color: #333;
  border-color: #222;
  border-style: none;
  border-width: 0;
  height: 2px;
  min-width: 30px;
  text-decoration: none; }

.tp-caption.ellipse70px, .ellipse70px {
  background-color: rgba(0, 0, 0, 0.14902);
  border-color: #222;
  border-radius: 50px 50px 50px 50px;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  line-height: 1px;
  min-height: 70px;
  min-width: 70px;
  text-decoration: none; }

.tp-caption.arrowicon, .arrowicon {
  border-color: #222;
  border-style: none;
  border-width: 0;
  line-height: 1px; }

.tp-caption.MarkerDisplay, .MarkerDisplay {
  background-color: transparent;
  border-color: #000;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  font-family: Permanent Marker;
  font-style: normal;
  padding: 0;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.Restaurant-Display, .Restaurant-Display {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Roboto;
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 120px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Restaurant-Cursive, .Restaurant-Cursive {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Nothing you could do;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 30px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Restaurant-ScrollDownText, .Restaurant-ScrollDownText {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 17px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Restaurant-Description, .Restaurant-Description {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 30px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Restaurant-Price, .Restaurant-Price {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #fff;
  font-family: Roboto;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 30px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Restaurant-Menuitem, .Restaurant-Menuitem {
  background-color: black;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 17px;
  padding: 10px 30px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Furniture-LogoText, .Furniture-LogoText {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #e6cfa3;
  font-family: Raleway;
  font-size: 160px;
  font-style: normal;
  font-weight: 300;
  line-height: 150px;
  padding: 0;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.Furniture-Plus, .Furniture-Plus {
  background-color: white;
  border-color: transparent;
  border-radius: 30px 30px 30px 30px;
  border-style: none;
  border-width: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px;
  color: #e6cfa3;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 6px 7px 4px;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.Furniture-Title, .Furniture-Title {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: black;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 20px;
  padding: 0;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.Furniture-Subtitle, .Furniture-Subtitle {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: black;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  padding: 0;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.Gym-Display, .Gym-Display {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 70px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Gym-Subline, .Gym-Subline {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 30px;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 5px;
  line-height: 30px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Gym-SmallText, .Gym-SmallText {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 22;
  padding: 0;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.Fashion-SmallText, .Fashion-SmallText {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 20px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Fashion-BigDisplay, .Fashion-BigDisplay {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: black;
  font-family: Raleway;
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 60px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Fashion-TextBlock, .Fashion-TextBlock {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: black;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 40px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Sports-Display, .Sports-Display {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 130px;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 13px;
  line-height: 130px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Sports-DisplayFat, .Sports-DisplayFat {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 130px;
  font-style: normal;
  font-weight: 900;
  line-height: 130px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Sports-Subline, .Sports-Subline {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: black;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 32px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Instagram-Caption, .Instagram-Caption {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 20px;
  padding: 0;
  text-decoration: none; }

.tp-caption.News-Title, .News-Title {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Roboto Slab;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  padding: 0;
  text-decoration: none; }

.tp-caption.News-Subtitle, .News-Subtitle {
  background-color: rgba(255, 255, 255, 0);
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Roboto Slab;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  padding: 0;
  text-decoration: none; }

.tp-caption.News-Subtitle:hover, .News-Subtitle:hover {
  background-color: rgba(255, 255, 255, 0);
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 0;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none; }

.tp-caption.Photography-Display, .Photography-Display {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 80px;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 5px;
  line-height: 70px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Photography-Subline, .Photography-Subline {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #777777;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 30px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Photography-ImageHover, .Photography-ImageHover {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0);
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22;
  padding: 0;
  text-decoration: none; }

.tp-caption.Photography-ImageHover:hover, .Photography-ImageHover:hover {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  text-decoration: none; }

.tp-caption.Photography-Menuitem, .Photography-Menuitem {
  background-color: rgba(0, 0, 0, 0.65);
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 20px;
  padding: 3px 5px 3px 8px;
  text-decoration: none; }

.tp-caption.Photography-Menuitem:hover, .Photography-Menuitem:hover {
  background-color: rgba(0, 255, 222, 0.65);
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  text-decoration: none; }

.tp-caption.Photography-Textblock, .Photography-Textblock {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 30px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Photography-Subline-2, .Photography-Subline-2 {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: rgba(255, 255, 255, 0.35);
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 30px;
  padding: 0;
  text-decoration: none; }

.tp-caption.Photography-ImageHover2, .Photography-ImageHover2 {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0);
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22;
  padding: 0;
  text-decoration: none; }

.tp-caption.Photography-ImageHover2:hover, .Photography-ImageHover2:hover {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  text-decoration: none; }

.tp-caption.WebProduct-Title, .WebProduct-Title {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #333333;
  font-family: Raleway;
  font-size: 90px;
  font-style: normal;
  font-weight: 100;
  line-height: 90px;
  padding: 0;
  text-decoration: none; }

.tp-caption.WebProduct-SubTitle, .WebProduct-SubTitle {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #999999;
  font-family: Raleway;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 0;
  text-decoration: none; }

.tp-caption.WebProduct-Content, .WebProduct-Content {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #999999;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding: 0;
  text-decoration: none; }

.tp-caption.WebProduct-Menuitem, .WebProduct-Menuitem {
  background-color: #333333;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 20px;
  padding: 3px 5px 3px 8px;
  text-align: left;
  text-decoration: none; }

.tp-caption.WebProduct-Menuitem:hover, .WebProduct-Menuitem:hover {
  background-color: white;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #999999;
  text-decoration: none; }

.tp-caption.WebProduct-Title-Light, .WebProduct-Title-Light {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 90px;
  font-style: normal;
  font-weight: 100;
  line-height: 90px;
  padding: 0;
  text-align: left;
  text-decoration: none; }

.tp-caption.WebProduct-SubTitle-Light, .WebProduct-SubTitle-Light {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: rgba(255, 255, 255, 0.35);
  font-family: Raleway;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 0;
  text-align: left;
  text-decoration: none; }

.tp-caption.WebProduct-Content-Light, .WebProduct-Content-Light {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding: 0;
  text-align: left;
  text-decoration: none; }

.tp-caption.FatRounded, .FatRounded {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: lightgray;
  border-radius: 50px 50px 50px 50px;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 30px;
  padding: 20px 22px 20px 25px;
  text-align: left;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.FatRounded:hover, .FatRounded:hover {
  background-color: black;
  border-color: lightgray;
  border-radius: 50px 50px 50px 50px;
  border-style: none;
  border-width: 0;
  color: white;
  text-decoration: none; }

.tp-caption.NotGeneric-Title, .NotGeneric-Title {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 70px;
  font-style: normal;
  font-weight: 800;
  line-height: 70px;
  padding: 10px 0;
  text-decoration: none; }

.tp-caption.NotGeneric-SubTitle, .NotGeneric-SubTitle {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 20px;
  padding: 0;
  text-align: left;
  text-decoration: none; }

.tp-caption.NotGeneric-CallToAction, .NotGeneric-CallToAction {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: white;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 14px;
  padding: 10px 30px;
  text-align: left;
  text-decoration: none; }

.tp-caption.NotGeneric-CallToAction:hover, .NotGeneric-CallToAction:hover {
  background-color: transparent;
  border-color: white;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: white;
  text-decoration: none; }

.tp-caption.NotGeneric-Icon, .NotGeneric-Icon {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0);
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 30px;
  padding: 0;
  text-align: left;
  text-decoration: none; }

.tp-caption.NotGeneric-Menuitem, .NotGeneric-Menuitem {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: white;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 14px;
  padding: 27px 30px;
  text-align: left;
  text-decoration: none; }

.tp-caption.NotGeneric-Menuitem:hover, .NotGeneric-Menuitem:hover {
  background-color: transparent;
  border-color: white;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: white;
  text-decoration: none; }

.tp-caption.MarkerStyle, .MarkerStyle {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: "Permanent Marker";
  font-size: 17px;
  font-style: normal;
  font-weight: 100;
  line-height: 30px;
  padding: 0;
  text-align: left;
  text-decoration: none; }

.tp-caption.Gym-Menuitem, .Gym-Menuitem {
  background-color: black;
  border-color: rgba(255, 255, 255, 0);
  border-radius: 3px 3px 3px 3px;
  border-style: solid;
  border-width: 2px;
  color: white;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 20px;
  padding: 3px 5px 3px 8px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Gym-Menuitem:hover, .Gym-Menuitem:hover {
  background-color: black;
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 3px 3px 3px 3px;
  border-style: solid;
  border-width: 2px;
  color: white;
  text-decoration: none; }

.tp-caption.Newspaper-Button, .Newspaper-Button {
  background-color: rgba(255, 255, 255, 0);
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: white;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 17px;
  padding: 12px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Newspaper-Button:hover, .Newspaper-Button:hover {
  background-color: white;
  border-color: white;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: black;
  text-decoration: none; }

.tp-caption.Newspaper-Subtitle, .Newspaper-Subtitle {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #a8d8ee;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 20px;
  padding: 0;
  text-align: left;
  text-decoration: none; }

.tp-caption.Newspaper-Title, .Newspaper-Title {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: "Roboto Slab";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 55px;
  padding: 0 0 10px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Newspaper-Title-Centered, .Newspaper-Title-Centered {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: "Roboto Slab";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 55px;
  padding: 0 0 10px;
  text-align: center;
  text-decoration: none; }

.tp-caption.Hero-Button, .Hero-Button {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: white;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 14px;
  padding: 10px 30px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Hero-Button:hover, .Hero-Button:hover {
  background-color: white;
  border-color: white;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: black;
  text-decoration: none; }

.tp-caption.Video-Title, .Video-Title {
  background-color: black;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 30px;
  padding: 5px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Video-SubTitle, .Video-SubTitle {
  background-color: rgba(0, 0, 0, 0.35);
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 12px;
  padding: 5px;
  text-align: left;
  text-decoration: none; }

.tp-caption.NotGeneric-Button, .NotGeneric-Button {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: white;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 14px;
  padding: 10px 30px;
  text-align: left;
  text-decoration: none; }

.tp-caption.NotGeneric-Button:hover, .NotGeneric-Button:hover {
  background-color: transparent;
  border-color: white;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: white;
  text-decoration: none; }

.tp-caption.NotGeneric-BigButton, .NotGeneric-BigButton {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: white;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 14px;
  padding: 27px 30px;
  text-align: left;
  text-decoration: none; }

.tp-caption.NotGeneric-BigButton:hover, .NotGeneric-BigButton:hover {
  background-color: transparent;
  border-color: white;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 1px;
  color: white;
  text-decoration: none; }

.tp-caption.WebProduct-Button, .WebProduct-Button {
  background-color: #333333;
  border-color: black;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 2px;
  color: white;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 48px;
  padding: 0 40px;
  text-align: left;
  text-decoration: none; }

.tp-caption.WebProduct-Button:hover, .WebProduct-Button:hover {
  background-color: white;
  border-color: black;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 2px;
  color: #333333;
  text-decoration: none; }

.tp-caption.Restaurant-Button, .Restaurant-Button {
  background-color: rgba(10, 10, 10, 0);
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 2px;
  color: white;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 17px;
  padding: 12px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Restaurant-Button:hover, .Restaurant-Button:hover {
  background-color: transparent;
  border-color: #ffe081;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 2px;
  color: white;
  text-decoration: none; }

.tp-caption.Gym-Button, .Gym-Button {
  background-color: #8bc027;
  border-color: transparent;
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 0;
  color: white;
  font-family: Raleway;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 15px;
  padding: 13px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Gym-Button:hover, .Gym-Button:hover {
  background-color: #72a800;
  border-color: transparent;
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 0;
  color: white;
  text-decoration: none; }

.tp-caption.Gym-Button-Light, .Gym-Button-Light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 2px;
  color: white;
  font-family: Raleway;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  padding: 12px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Gym-Button-Light:hover, .Gym-Button-Light:hover {
  background-color: rgba(114, 168, 0, 0);
  border-color: #8bc027;
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 2px;
  color: white;
  text-decoration: none; }

.tp-caption.Sports-Button-Light, .Sports-Button-Light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 2px;
  color: white;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 17px;
  padding: 12px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Sports-Button-Light:hover, .Sports-Button-Light:hover {
  background-color: transparent;
  border-color: white;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 2px;
  color: white;
  text-decoration: none; }

.tp-caption.Sports-Button-Red, .Sports-Button-Red {
  background-color: #db1c22;
  border-color: rgba(219, 28, 34, 0);
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 2px;
  color: white;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 17px;
  padding: 12px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Sports-Button-Red:hover, .Sports-Button-Red:hover {
  background-color: black;
  border-color: black;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 2px;
  color: white;
  text-decoration: none; }

.tp-caption.Photography-Button, .Photography-Button {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 1px;
  color: white;
  font-family: Raleway;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 15px;
  padding: 13px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Photography-Button:hover, .Photography-Button:hover {
  background-color: transparent;
  border-color: white;
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 1px;
  color: white;
  text-decoration: none; }

.tp-caption.Newspaper-Button-2, .Newspaper-Button-2 {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 3px 3px 3px 3px;
  border-style: solid;
  border-width: 2px;
  color: white;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 15px;
  padding: 10px 30px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Newspaper-Button-2:hover, .Newspaper-Button-2:hover {
  background-color: transparent;
  border-color: white;
  border-radius: 3px 3px 3px 3px;
  border-style: solid;
  border-width: 2px;
  color: white;
  text-decoration: none; }

.tp-caption.Feature-Tour, .Feature-Tour {
  background-color: #8bc027;
  border-color: transparent;
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 0;
  color: white;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  padding: 17px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Feature-Tour:hover, .Feature-Tour:hover {
  background-color: #72a800;
  border-color: transparent;
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 0;
  color: white;
  text-decoration: none; }

.tp-caption.Feature-Examples, .Feature-Examples {
  background-color: transparent;
  border-color: rgba(33, 42, 64, 0.15);
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 2px;
  color: rgba(33, 42, 64, 0.5);
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  padding: 15px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Feature-Examples:hover, .Feature-Examples:hover {
  background-color: transparent;
  border-color: #8bc027;
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 2px;
  color: #8bc027;
  text-decoration: none; }

.tp-caption.subcaption, .subcaption {
  background-color: transparent;
  border-color: black;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #6f7c82;
  font-family: roboto;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.menutab, .menutab {
  background-color: transparent;
  border-color: black;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #292e31;
  font-family: roboto;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.menutab:hover, .menutab:hover {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #d50000;
  text-decoration: none; }

.tp-caption.maincontent, .maincontent {
  background-color: transparent;
  border-color: black;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #292e31;
  font-family: roboto;
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.minitext, .minitext {
  background-color: transparent;
  border-color: black;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #b9babb;
  font-family: roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-shadow: none; }

.tp-caption.Feature-Buy, .Feature-Buy {
  background-color: #009aee;
  border-color: transparent;
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 0;
  color: white;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  padding: 17px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Feature-Buy:hover, .Feature-Buy:hover {
  background-color: #0085d6;
  border-color: transparent;
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 0;
  color: white;
  text-decoration: none; }

.tp-caption.Feature-Examples-Light, .Feature-Examples-Light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 2px;
  color: white;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  padding: 15px 35px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Feature-Examples-Light:hover, .Feature-Examples-Light:hover {
  background-color: transparent;
  border-color: white;
  border-radius: 30px 30px 30px 30px;
  border-style: solid;
  border-width: 2px;
  color: white;
  text-decoration: none; }

.tp-caption.Facebook-Likes, .Facebook-Likes {
  background-color: #3b5999;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: white;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding: 5px 15px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Twitter-Favorites, .Twitter-Favorites {
  background-color: rgba(255, 255, 255, 0);
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #8899a6;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding: 0;
  text-align: left;
  text-decoration: none; }

.tp-caption.Twitter-Link, .Twitter-Link {
  background-color: white;
  border-color: transparent;
  border-radius: 30px 30px 30px 30px;
  border-style: none;
  border-width: 0;
  color: #8799a5;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  padding: 11px 11px 9px;
  text-align: left;
  text-decoration: none; }

.tp-caption.Twitter-Link:hover, .Twitter-Link:hover {
  background-color: #0084b4;
  border-color: transparent;
  border-radius: 30px 30px 30px 30px;
  border-style: none;
  border-width: 0;
  color: white;
  text-decoration: none; }

.tp-caption.Twitter-Retweet, .Twitter-Retweet {
  background-color: rgba(255, 255, 255, 0);
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #8899a6;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding: 0;
  text-align: left;
  text-decoration: none; }

.tp-caption.Twitter-Content, .Twitter-Content {
  background-color: white;
  border-color: transparent;
  border-radius: 0 0 0 0;
  border-style: none;
  border-width: 0;
  color: #292f33;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding: 30px 30px 70px;
  text-align: left;
  text-decoration: none; }

.revtp-searchform input[type="text"],
.revtp-searchform input[type="email"],
.revtp-form input[type="text"],
.revtp-form input[type="email"] {
  font-family: "Arial", sans-serif;
  font-size: 15px;
  color: #000;
  background-color: #fff;
  line-height: 46px;
  padding: 0 20px;
  cursor: text;
  border: 0;
  width: 400px;
  margin-bottom: 0px;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  -ms-transition: background-color 0.5s;
  transition: background-color 0.5s;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; }

.tp-caption.BigBold-Title,
.BigBold-Title {
  color: white;
  font-size: 110px;
  line-height: 100px;
  font-weight: 800;
  font-style: normal;
  font-family: Raleway;
  padding: 10px 0px 10px 0;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.BigBold-SubTitle,
.BigBold-SubTitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  font-style: normal;
  font-family: Raleway;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left;
  letter-spacing: 1px; }

.tp-caption.BigBold-Button,
.BigBold-Button {
  color: white;
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
  font-style: normal;
  font-family: Raleway;
  padding: 15px 50px 15px 50px;
  text-decoration: none;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  text-align: left;
  letter-spacing: 1px; }

.tp-caption.BigBold-Button:hover,
.BigBold-Button:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.FoodCarousel-Content,
.FoodCarousel-Content {
  color: #292e31;
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
  font-style: normal;
  font-family: Raleway;
  padding: 30px 30px 30px 30px;
  text-decoration: none;
  background-color: white;
  border-color: #292e31;
  border-style: solid;
  border-width: 1px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.FoodCarousel-Button,
.FoodCarousel-Button {
  color: #292e31;
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  font-style: normal;
  font-family: Raleway;
  padding: 15px 70px 15px 50px;
  text-decoration: none;
  background-color: white;
  border-color: #292e31;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  text-align: left;
  letter-spacing: 1px; }

.tp-caption.FoodCarousel-Button:hover,
.FoodCarousel-Button:hover {
  color: white;
  text-decoration: none;
  background-color: #292e31;
  border-color: #292e31;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.FoodCarousel-CloseButton,
.FoodCarousel-CloseButton {
  color: #292e31;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  font-style: normal;
  font-family: Raleway;
  padding: 14px 14px 14px 16px;
  text-decoration: none;
  background-color: transparent;
  border-color: rgba(41, 46, 49, 0);
  border-style: solid;
  border-width: 1px;
  border-radius: 30px 30px 30px 30px;
  text-align: left;
  letter-spacing: 1px; }

.tp-caption.FoodCarousel-CloseButton:hover,
.FoodCarousel-CloseButton:hover {
  color: white;
  text-decoration: none;
  background-color: #292e31;
  border-color: rgba(41, 46, 49, 0);
  border-style: solid;
  border-width: 1px;
  border-radius: 30px 30px 30px 30px; }

.tp-caption.Video-SubTitle,
.Video-SubTitle {
  color: white;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  font-style: normal;
  font-family: Raleway;
  padding: 5px 5px 5px 5px;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.35);
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  letter-spacing: 2px;
  text-align: left; }

.tp-caption.Video-Title,
.Video-Title {
  color: white;
  font-size: 30px;
  line-height: 30px;
  font-weight: 900;
  font-style: normal;
  font-family: Raleway;
  padding: 5px 5px 5px 5px;
  text-decoration: none;
  background-color: black;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Travel-BigCaption,
.Travel-BigCaption {
  color: white;
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Travel-SmallCaption,
.Travel-SmallCaption {
  color: white;
  font-size: 25px;
  line-height: 30px;
  font-weight: 300;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Travel-CallToAction,
.Travel-CallToAction {
  color: white;
  font-size: 25px;
  line-height: 25px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 12px 20px 12px 20px;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.05);
  border-color: white;
  border-style: solid;
  border-width: 2px;
  border-radius: 5px 5px 5px 5px;
  text-align: left;
  letter-spacing: 1px; }

.tp-caption.Travel-CallToAction:hover,
.Travel-CallToAction:hover {
  color: white;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: white;
  border-style: solid;
  border-width: 2px;
  border-radius: 5px 5px 5px 5px; }

.tp-caption.RotatingWords-TitleWhite,
.RotatingWords-TitleWhite {
  color: white;
  font-size: 70px;
  line-height: 70px;
  font-weight: 800;
  font-style: normal;
  font-family: Raleway;
  padding: 0px 0px 0px 0;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.RotatingWords-Button,
.RotatingWords-Button {
  color: white;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  font-style: normal;
  font-family: Raleway;
  padding: 20px 50px 20px 50px;
  text-decoration: none;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  border-style: solid;
  border-width: 2px;
  border-radius: 0px 0px 0px 0px;
  text-align: left;
  letter-spacing: 3px; }

.tp-caption.RotatingWords-Button:hover,
.RotatingWords-Button:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: white;
  border-style: solid;
  border-width: 2px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.RotatingWords-SmallText,
.RotatingWords-SmallText {
  color: white;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  font-family: Raleway;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left;
  text-shadow: none; }

.tp-caption.ContentZoom-SmallTitle,
.ContentZoom-SmallTitle {
  color: #292e31;
  font-size: 33px;
  line-height: 45px;
  font-weight: 600;
  font-style: normal;
  font-family: Raleway;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.ContentZoom-SmallSubtitle,
.ContentZoom-SmallSubtitle {
  color: #6f7c82;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-style: normal;
  font-family: Raleway;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.ContentZoom-SmallIcon,
.ContentZoom-SmallIcon {
  color: #292e31;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  font-family: Raleway;
  padding: 10px 10px 10px 10px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.ContentZoom-SmallIcon:hover,
.ContentZoom-SmallIcon:hover {
  color: #6f7c82;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px; }

.tp-caption.ContentZoom-DetailTitle,
.ContentZoom-DetailTitle {
  color: #292e31;
  font-size: 70px;
  line-height: 70px;
  font-weight: 500;
  font-style: normal;
  font-family: Raleway;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.ContentZoom-DetailSubTitle,
.ContentZoom-DetailSubTitle {
  color: #6f7c82;
  font-size: 25px;
  line-height: 25px;
  font-weight: 500;
  font-style: normal;
  font-family: Raleway;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.ContentZoom-DetailContent,
.ContentZoom-DetailContent {
  color: #6f7c82;
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
  font-style: normal;
  font-family: Raleway;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.ContentZoom-Button,
.ContentZoom-Button {
  color: #292e31;
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  font-style: normal;
  font-family: Raleway;
  padding: 15px 50px 15px 50px;
  text-decoration: none;
  background-color: transparent;
  border-color: rgba(41, 46, 49, 0.5);
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  text-align: left;
  letter-spacing: 1px; }

.tp-caption.ContentZoom-Button:hover,
.ContentZoom-Button:hover {
  color: white;
  text-decoration: none;
  background-color: #292e31;
  border-color: #292e31;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.ContentZoom-ButtonClose,
.ContentZoom-ButtonClose {
  color: #292e31;
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  font-style: normal;
  font-family: Raleway;
  padding: 14px 14px 14px 16px;
  text-decoration: none;
  background-color: transparent;
  border-color: rgba(41, 46, 49, 0.5);
  border-style: solid;
  border-width: 1px;
  border-radius: 30px 30px 30px 30px;
  text-align: left;
  letter-spacing: 1px; }

.tp-caption.ContentZoom-ButtonClose:hover,
.ContentZoom-ButtonClose:hover {
  color: white;
  text-decoration: none;
  background-color: #292e31;
  border-color: #292e31;
  border-style: solid;
  border-width: 1px;
  border-radius: 30px 30px 30px 30px; }

.tp-caption.Newspaper-Title,
.Newspaper-Title {
  color: white;
  font-size: 50px;
  line-height: 55px;
  font-weight: 400;
  font-style: normal;
  font-family: "Roboto Slab";
  padding: 0 0 10px 0;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Newspaper-Subtitle,
.Newspaper-Subtitle {
  color: #a8d8ee;
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Newspaper-Button,
.Newspaper-Button {
  color: white;
  font-size: 13px;
  line-height: 17px;
  font-weight: 700;
  font-style: normal;
  font-family: Roboto;
  padding: 12px 35px 12px 35px;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0);
  border-color: rgba(255, 255, 255, 0.25);
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  letter-spacing: 2px;
  text-align: left; }

.tp-caption.Newspaper-Button:hover,
.Newspaper-Button:hover {
  color: black;
  text-decoration: none;
  background-color: white;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.rtwhitemedium,
.rtwhitemedium {
  font-size: 22px;
  line-height: 26px;
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-width: 0px;
  border-color: black;
  border-style: none;
  text-shadow: none; }

@media only screen and (max-width: 767px) {
  .revtp-searchform input[type="text"],
  .revtp-searchform input[type="email"],
  .revtp-form input[type="text"],
  .revtp-form input[type="email"] {
    width: 200px !important; } }

.revtp-searchform input[type="submit"],
.revtp-form input[type="submit"] {
  font-family: "Arial", sans-serif;
  line-height: 46px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding: 0 20px;
  border: 0;
  background: #009aee;
  color: #fff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; }

.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
  color: #0084B4 !important; }

.tp-caption.Twitter-Content a:hover {
  color: #0084B4 !important;
  text-decoration: underline !important; }

.tp-caption.Concept-Title,
.Concept-Title {
  color: white;
  font-size: 70px;
  line-height: 70px;
  font-weight: 700;
  font-style: normal;
  font-family: Roboto Condensed;
  padding: 0px 0px 10px 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  letter-spacing: 5px; }

.tp-caption.Concept-SubTitle,
.Concept-SubTitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 25px;
  line-height: 25px;
  font-weight: 700;
  font-style: italic;
  font-family: Playfair Display;
  padding: 0px 0px 10px 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.Concept-Content,
.Concept-Content {
  color: white;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto Condensed;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: white;
  border-style: none;
  border-width: 2px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.Concept-MoreBtn,
.Concept-MoreBtn {
  color: white;
  font-size: 30px;
  line-height: 30px;
  font-weight: 300;
  font-style: normal;
  font-family: Roboto;
  padding: 10px 8px 7px 10px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0);
  border-style: solid;
  border-width: 0px;
  border-radius: 50px 50px 50px 50px;
  letter-spacing: 1px;
  text-align: left; }

.tp-caption.Concept-MoreBtn:hover,
.Concept-MoreBtn:hover {
  color: white;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0);
  border-style: solid;
  border-width: 0px;
  border-radius: 50px 50px 50px 50px; }

.tp-caption.Concept-LessBtn,
.Concept-LessBtn {
  color: white;
  font-size: 30px;
  line-height: 30px;
  font-weight: 300;
  font-style: normal;
  font-family: Roboto;
  padding: 10px 8px 7px 10px;
  text-decoration: none;
  text-align: left;
  background-color: black;
  border-color: rgba(255, 255, 255, 0);
  border-style: solid;
  border-width: 0px;
  border-radius: 50px 50px 50px 50px;
  letter-spacing: 1px;
  text-align: left; }

.tp-caption.Concept-LessBtn:hover,
.Concept-LessBtn:hover {
  color: black;
  text-decoration: none;
  background-color: white;
  border-color: rgba(255, 255, 255, 0);
  border-style: solid;
  border-width: 0px;
  border-radius: 50px 50px 50px 50px; }

.tp-caption.Concept-SubTitle-Dark,
.Concept-SubTitle-Dark {
  color: rgba(0, 0, 0, 0.65);
  font-size: 25px;
  line-height: 25px;
  font-weight: 700;
  font-style: italic;
  font-family: Playfair Display;
  padding: 0px 0px 10px 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.Concept-Title-Dark,
.Concept-Title-Dark {
  color: black;
  font-size: 70px;
  line-height: 70px;
  font-weight: 700;
  font-style: normal;
  font-family: Roboto Condensed;
  padding: 0px 0px 10px 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  letter-spacing: 5px; }

.tp-caption.Concept-MoreBtn-Dark,
.Concept-MoreBtn-Dark {
  color: black;
  font-size: 30px;
  line-height: 30px;
  font-weight: 300;
  font-style: normal;
  font-family: Roboto;
  padding: 10px 8px 7px 10px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0);
  border-style: solid;
  border-width: 0px;
  border-radius: 50px 50px 50px 50px;
  letter-spacing: 1px;
  text-align: left; }

.tp-caption.Concept-MoreBtn-Dark:hover,
.Concept-MoreBtn-Dark:hover {
  color: white;
  text-decoration: none;
  background-color: black;
  border-color: rgba(255, 255, 255, 0);
  border-style: solid;
  border-width: 0px;
  border-radius: 50px 50px 50px 50px; }

.tp-caption.Concept-Content-Dark,
.Concept-Content-Dark {
  color: black;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto Condensed;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: white;
  border-style: none;
  border-width: 2px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.Concept-Notice,
.Concept-Notice {
  color: white;
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto Condensed;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: white;
  border-style: none;
  border-width: 2px;
  border-radius: 0px 0px 0px 0px;
  letter-spacing: 2px; }

.tp-caption.Concept-Content a,
.tp-caption.Concept-Content a:visited {
  color: #fff !important;
  border-bottom: 1px solid #fff !important;
  font-weight: 700 !important; }

.tp-caption.Concept-Content a:hover {
  border-bottom: 1px solid transparent !important; }

.tp-caption.Concept-Content-Dark a,
.tp-caption.Concept-Content-Dark a:visited {
  color: #000 !important;
  border-bottom: 1px solid #000 !important;
  font-weight: 700 !important; }

.tp-caption.Concept-Content-Dark a:hover {
  border-bottom: 1px solid transparent !important; }

.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
  color: #0084B4 !important; }

.tp-caption.Twitter-Content a:hover {
  color: #0084B4 !important;
  text-decoration: underline !important; }

.tp-caption.Creative-Title,
.Creative-Title {
  color: white;
  font-size: 70px;
  line-height: 70px;
  font-weight: 400;
  font-style: normal;
  font-family: Playfair Display;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.Creative-SubTitle,
.Creative-SubTitle {
  color: #cdb083;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  font-style: normal;
  font-family: Lato;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  letter-spacing: 2px; }

.tp-caption.Creative-Button,
.Creative-Button {
  color: #cdb083;
  font-size: 13px;
  line-height: 13px;
  font-weight: 400;
  font-style: normal;
  font-family: Lato;
  padding: 15px 50px 15px 50px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: rgba(205, 176, 131, 0.25);
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  letter-spacing: 2px; }

.tp-caption.Creative-Button:hover,
.Creative-Button:hover {
  color: #cdb083;
  text-decoration: none;
  background-color: transparent;
  border-color: #cdb083;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.subcaption,
.subcaption {
  color: #6f7c82;
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  font-family: roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: black;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-shadow: none;
  text-align: left; }

.tp-caption.RedDot,
.RedDot {
  color: black;
  font-weight: 400;
  font-style: normal;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  text-align: left;
  background-color: #d50000;
  border-color: white;
  border-style: solid;
  border-width: 5px;
  border-radius: 50px 50px 50px 50px; }

.tp-caption.RedDot:hover,
.RedDot:hover {
  color: black;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.75);
  border-color: #d50000;
  border-style: solid;
  border-width: 5px;
  border-radius: 50px 50px 50px 50px; }

.tp-caption.SlidingOverlays-Title,
.SlidingOverlays-Title {
  color: white;
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  font-style: normal;
  font-family: Playfair Display;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.SlidingOverlays-Title,
.SlidingOverlays-Title {
  color: white;
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  font-style: normal;
  font-family: Playfair Display;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.Woo-TitleLarge,
.Woo-TitleLarge {
  color: black;
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  font-style: normal;
  font-family: Playfair Display;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  type: text; }

.tp-caption.Woo-Rating,
.Woo-Rating {
  color: black;
  font-size: 14px;
  line-height: 30px;
  font-weight: 300;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left;
  type: text; }

.tp-caption.Woo-SubTitle,
.Woo-SubTitle {
  color: black;
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  letter-spacing: 2px;
  type: text; }

.tp-caption.Woo-PriceLarge,
.Woo-PriceLarge {
  color: black;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  type: text; }

.tp-caption.Woo-ProductInfo,
.Woo-ProductInfo {
  color: black;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 12px 75px 12px 50px;
  text-decoration: none;
  background-color: #fecf72;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px 4px 4px 4px;
  text-align: left;
  type: button; }

.tp-caption.Woo-ProductInfo:hover,
.Woo-ProductInfo:hover {
  color: black;
  text-decoration: none;
  background-color: #f3a847;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px 4px 4px 4px; }

.tp-caption.Woo-AddToCart,
.Woo-AddToCart {
  color: black;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 12px 35px 12px 35px;
  text-decoration: none;
  background-color: #fecf72;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px 4px 4px 4px;
  text-align: left;
  type: button; }

.tp-caption.Woo-AddToCart:hover,
.Woo-AddToCart:hover {
  color: black;
  text-decoration: none;
  background-color: #f3a847;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px 4px 4px 4px; }

.tp-caption.Woo-TitleLarge,
.Woo-TitleLarge {
  color: black;
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  font-style: normal;
  font-family: Playfair Display;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  type: text; }

.tp-caption.Woo-SubTitle,
.Woo-SubTitle {
  color: black;
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  letter-spacing: 2px;
  type: text; }

.tp-caption.Woo-PriceLarge,
.Woo-PriceLarge {
  color: black;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  type: text; }

.tp-caption.Woo-ProductInfo,
.Woo-ProductInfo {
  color: black;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 12px 75px 12px 50px;
  text-decoration: none;
  background-color: #fecf72;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px 4px 4px 4px;
  text-align: left;
  type: button; }

.tp-caption.Woo-ProductInfo:hover,
.Woo-ProductInfo:hover {
  color: black;
  text-decoration: none;
  background-color: #f3a847;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px 4px 4px 4px; }

.tp-caption.Woo-AddToCart,
.Woo-AddToCart {
  color: black;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 12px 35px 12px 35px;
  text-decoration: none;
  background-color: #fecf72;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px 4px 4px 4px;
  text-align: left;
  type: button; }

.tp-caption.Woo-AddToCart:hover,
.Woo-AddToCart:hover {
  color: black;
  text-decoration: none;
  background-color: #f3a847;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px 4px 4px 4px; }

.tp-caption.FullScreen-Toggle,
.FullScreen-Toggle {
  color: white;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  font-family: Raleway;
  padding: 11px 8px 11px 12px;
  text-decoration: none;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0);
  border-style: solid;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  letter-spacing: 3px;
  text-align: left; }

.tp-caption.FullScreen-Toggle:hover,
.FullScreen-Toggle:hover {
  color: white;
  text-decoration: none;
  background-color: black;
  border-color: rgba(255, 255, 255, 0);
  border-style: solid;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.Agency-Title,
.Agency-Title {
  color: white;
  font-size: 70px;
  line-height: 70px;
  font-weight: 900;
  font-style: normal;
  font-family: lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left;
  letter-spacing: 10px; }

.tp-caption.Agency-SubTitle,
.Agency-SubTitle {
  color: white;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-style: italic;
  font-family: Georgia, serif;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center; }

.tp-caption.Agency-PlayBtn,
.Agency-PlayBtn {
  color: white;
  font-size: 30px;
  line-height: 71px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: white;
  border-style: solid;
  border-width: 2px;
  border-radius: 100px 100px 100px 100px;
  text-align: center; }

.tp-caption.Agency-PlayBtn:hover,
.Agency-PlayBtn:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: white;
  border-style: solid;
  border-width: 2px;
  border-radius: 100px 100px 100px 100px;
  cursor: pointer; }

.tp-caption.Agency-SmallText,
.Agency-SmallText {
  color: white;
  font-size: 12px;
  line-height: 12px;
  font-weight: 900;
  font-style: normal;
  font-family: lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left;
  letter-spacing: 5px; }

.tp-caption.Agency-Social,
.Agency-Social {
  color: #333333;
  font-size: 25px;
  line-height: 50px;
  font-weight: 400;
  font-style: normal;
  font-family: Georgia, serif;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: #333333;
  border-style: solid;
  border-width: 2px;
  border-radius: 30px 30px 30px 30px;
  text-align: center; }

.tp-caption.Agency-Social:hover,
.Agency-Social:hover {
  color: white;
  text-decoration: none;
  background-color: #333333;
  border-color: #333333;
  border-style: solid;
  border-width: 2px;
  border-radius: 30px 30px 30px 30px;
  cursor: pointer; }

.tp-caption.Agency-CloseBtn,
.Agency-CloseBtn {
  color: white;
  font-size: 50px;
  line-height: 50px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0);
  border-style: none;
  border-width: 0px;
  border-radius: 100px 100px 100px 100px;
  text-align: center; }

.tp-caption.Agency-CloseBtn:hover,
.Agency-CloseBtn:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0);
  border-style: none;
  border-width: 0px;
  border-radius: 100px 100px 100px 100px;
  cursor: pointer; }

.tp-caption.Dining-Title,
.Dining-Title {
  color: white;
  font-size: 70px;
  line-height: 70px;
  font-weight: 400;
  font-style: normal;
  font-family: Georgia, serif;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left;
  letter-spacing: 10px; }

.tp-caption.Dining-SubTitle,
.Dining-SubTitle {
  color: white;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  font-family: Georgia, serif;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Dining-BtnLight,
.Dining-BtnLight {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  font-style: normal;
  font-family: Lato;
  padding: 17px 73px 17px 50px;
  text-decoration: none;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  text-align: left;
  letter-spacing: 2px; }

.tp-caption.Dining-BtnLight:hover,
.Dining-BtnLight:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px; }

.tp-caption.Dining-Social,
.Dining-Social {
  color: white;
  font-size: 25px;
  line-height: 50px;
  font-weight: 400;
  font-style: normal;
  font-family: Georgia, serif;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  border-style: solid;
  border-width: 1px;
  border-radius: 30px 30px 30px 30px;
  text-align: center; }

.tp-caption.Dining-Social:hover,
.Dining-Social:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  border-radius: 30px 30px 30px 30px;
  cursor: pointer; }

tp-caption.Team-Thumb,
.Team-Thumb {
  color: white;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  font-style: normal;
  font-family: Arial;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Team-Thumb:hover,
.Team-Thumb:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  cursor: pointer; }

.tp-caption.Team-Name,
.Team-Name {
  color: white;
  font-size: 70px;
  line-height: 70px;
  font-weight: 900;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Team-Position,
.Team-Position {
  color: white;
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  font-style: normal;
  font-family: Georgia, serif;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Team-Description,
.Team-Description {
  color: white;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Team-Social,
.Team-Social {
  color: white;
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  font-style: normal;
  font-family: Arial;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center; }

.tp-caption.Team-Social:hover,
.Team-Social:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  cursor: pointer; }

.tp-caption.VideoControls-Play,
.VideoControls-Play {
  color: black;
  font-size: 50px;
  line-height: 120px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 0px 0px 0px 7px;
  text-decoration: none;
  background-color: white;
  border-color: black;
  border-style: solid;
  border-width: 0px;
  border-radius: 100px 100px 100px 100px;
  text-align: center; }

.tp-caption.VideoControls-Play:hover,
.VideoControls-Play:hover {
  color: black;
  text-decoration: none;
  background-color: white;
  border-color: black;
  border-style: solid;
  border-width: 0px;
  border-radius: 100px 100px 100px 100px;
  cursor: pointer; }

.tp-caption.VideoPlayer-Title,
.VideoPlayer-Title {
  color: white;
  font-size: 40px;
  line-height: 40px;
  font-weight: 900;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left;
  letter-spacing: 10px; }

.tp-caption.VideoPlayer-SubTitle,
.VideoPlayer-SubTitle {
  color: white;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-style: italic;
  font-family: Georgia, serif;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center; }

.tp-caption.VideoPlayer-Social,
.VideoPlayer-Social {
  color: white;
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  font-style: normal;
  font-family: Arial;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center; }

.tp-caption.VideoPlayer-Social:hover,
.VideoPlayer-Social:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  cursor: pointer; }

.tp-caption.VideoControls-Mute,
.VideoControls-Mute {
  color: black;
  font-size: 20px;
  line-height: 50px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  background-color: white;
  border-color: black;
  border-style: solid;
  border-width: 0px;
  border-radius: 100px 100px 100px 100px;
  text-align: center; }

.tp-caption.VideoControls-Mute:hover,
.VideoControls-Mute:hover {
  color: black;
  text-decoration: none;
  background-color: white;
  border-color: black;
  border-style: solid;
  border-width: 0px;
  border-radius: 100px 100px 100px 100px;
  cursor: pointer; }

.tp-caption.VideoControls-Pause,
.VideoControls-Pause {
  color: black;
  font-size: 20px;
  line-height: 50px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  background-color: white;
  border-color: black;
  border-style: solid;
  border-width: 0px;
  border-radius: 100px 100px 100px 100px;
  text-align: center; }

.tp-caption.VideoControls-Pause:hover,
.VideoControls-Pause:hover {
  color: black;
  text-decoration: none;
  background-color: white;
  border-color: black;
  border-style: solid;
  border-width: 0px;
  border-radius: 100px 100px 100px 100px;
  cursor: pointer; }

.soundcloudwrapper iframe {
  width: 100% !important; }

.tp-caption.SleekLanding-Title,
.SleekLanding-Title {
  color: white;
  font-size: 35px;
  line-height: 40px;
  font-weight: 400;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left;
  letter-spacing: 5px; }

.tp-caption.SleekLanding-ButtonBG,
.SleekLanding-ButtonBG {
  color: black;
  font-size: px;
  line-height: px;
  font-weight: 700;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  border-style: solid;
  border-width: 0px;
  border-radius: 5px 5px 5px 5px;
  text-align: left;
  -webkit-box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15); }

.tp-caption.SleekLanding-SmallTitle,
.SleekLanding-SmallTitle {
  color: white;
  font-size: 13px;
  line-height: 50px;
  font-weight: 900;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left;
  letter-spacing: 2px; }

.tp-caption.SleekLanding-BottomText,
.SleekLanding-BottomText {
  color: white;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.SleekLanding-Social,
.SleekLanding-Social {
  color: white;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  font-style: normal;
  font-family: Arial;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center; }

.tp-caption.SleekLanding-Social:hover,
.SleekLanding-Social:hover {
  color: rgba(0, 0, 0, 0.25);
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  cursor: pointer; }

#rev_slider_429_1_wrapper .tp-loader.spinner2 {
  background-color: #555555 !important; }

.tp-fat {
  font-weight: 900 !important; }

.tp-caption.PostSlider-Category,
.PostSlider-Category {
  color: black;
  font-size: 15px;
  line-height: 15px;
  font-weight: 300;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  letter-spacing: 3px;
  text-align: left; }

.tp-caption.PostSlider-Title,
.PostSlider-Title {
  color: black;
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  font-style: normal;
  font-family: Playfair Display;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.PostSlider-Content,
.PostSlider-Content {
  color: #777777;
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.PostSlider-Button,
.PostSlider-Button {
  color: black;
  font-size: 15px;
  line-height: 40px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 1px 56px 1px 32px;
  text-decoration: none;
  background-color: white;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  text-align: left; }

.tp-caption.PostSlider-Button:hover,
.PostSlider-Button:hover {
  color: black;
  text-decoration: none;
  background-color: #eeeeee;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  cursor: pointer; }

/* media queries */
.tp-caption.LandingPage-Title,
.LandingPage-Title {
  color: white;
  font-size: 70px;
  line-height: 80px;
  font-weight: 900;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left;
  letter-spacing: 10px; }

.tp-caption.LandingPage-SubTitle,
.LandingPage-SubTitle {
  color: white;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-style: italic;
  font-family: Georgia, serif;
  padding: 0 0 0 0px;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.LandingPage-Button,
.LandingPage-Button {
  color: black;
  font-size: 15px;
  line-height: 54px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 0px 35px 0px 35px;
  text-decoration: none;
  background-color: white;
  border-color: black;
  border-style: solid;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  text-align: left;
  letter-spacing: 3px; }

.tp-caption.LandingPage-Button:hover,
.LandingPage-Button:hover {
  color: black;
  text-decoration: none;
  background-color: white;
  border-color: black;
  border-style: solid;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  cursor: pointer; }

.tp-caption.App-Content a,
.tp-caption.App-Content a:visited {
  color: #89124e !important;
  border-bottom: 1px solid transparent !important;
  font-weight: bold !important; }

.tp-caption.App-Content a:hover {
  border-bottom: 1px solid #89124e !important; }

.tp-caption.RockBand-LogoText,
.RockBand-LogoText {
  color: white;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  font-style: normal;
  font-family: Oswald;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
  color: #fff !important;
  text-decoration: underline !important; }

.tp-caption.Twitter-Content a:hover {
  color: #fff !important;
  text-decoration: none !important; }

.soundcloudwrapper iframe {
  width: 100% !important; }

.tp-caption.Agency-LogoText,
.Agency-LogoText {
  color: white;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  letter-spacing: 1px; }

.tp-caption.ComingSoon-Highlight,
.ComingSoon-Highlight {
  color: white;
  font-size: 20px;
  line-height: 37px;
  font-weight: 400;
  font-style: normal;
  font-family: Lato;
  padding: 0 20px 3px 20px;
  text-decoration: none;
  text-align: left;
  background-color: #009aee;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.ComingSoon-Count,
.ComingSoon-Count {
  color: white;
  font-size: 50px;
  line-height: 50px;
  font-weight: 900;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.ComingSoon-CountUnit,
.ComingSoon-CountUnit {
  color: white;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center; }

.tp-caption.ComingSoon-NotifyMe,
.ComingSoon-NotifyMe {
  color: #a49d8f;
  font-size: 27px;
  line-height: 35px;
  font-weight: 600;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center; }

#mc_embed_signup input#mce-EMAIL {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  color: #000;
  background-color: #fff;
  line-height: 46px;
  padding: 0 20px;
  cursor: text;
  border: 1px solid #fff;
  width: 400px;
  margin-bottom: 0px;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  -ms-transition: background-color 0.5s;
  transition: background-color 0.5s;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; }

#mc_embed_signup input#mce-EMAIL[type="email"]:focus {
  background-color: #fff;
  border: 1px solid #666;
  border-right: 0; }

#mc_embed_signup input#mc-embedded-subscribe,
#mc_embed_signup input#mc-embedded-subscribe:focus {
  font-family: "Lato", sans-serif;
  line-height: 46px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  padding: 0 20px;
  border: 1px solid #009aee;
  background: #009aee;
  color: #fff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; }

#mc_embed_signup input#mc-embedded-subscribe:hover {
  background: #0083d4; }

@media only screen and (max-width: 767px) {
  #mc_embed_signup input#mce-EMAIL {
    width: 200px; } }

.tp-caption.Agency-SmallTitle,
.Agency-SmallTitle {
  color: white;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  font-style: normal;
  font-family: lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  letter-spacing: 6px; }

.tp-caption.Agency-SmallContent,
.Agency-SmallContent {
  color: white;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  font-family: lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center; }

.tp-caption.Agency-SmallLink,
.Agency-SmallLink {
  color: #f87c09;
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
  font-style: normal;
  font-family: lato;
  padding: 0 0 0px 0;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  letter-spacing: 2px;
  border-bottom: 1px solid #f87c09 !important; }

.tp-caption.Agency-SmallLink:hover,
.Agency-SmallLink:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  cursor: pointer; }

.tp-caption.Agency-NavButton,
.Agency-NavButton {
  color: #333333;
  font-size: 17px;
  line-height: 50px;
  font-weight: 500;
  font-style: normal;
  font-family: Roboto;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  text-align: center;
  background-color: white;
  border-color: black;
  border-style: solid;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  text-align: center; }

.tp-caption.Agency-NavButton:hover,
.Agency-NavButton:hover {
  color: white;
  text-decoration: none;
  background-color: #333333;
  border-color: black;
  border-style: solid;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  cursor: pointer; }

.tp-caption.Agency-SmallLinkGreen,
.Agency-SmallLinkGreen {
  color: #6db19b;
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
  font-style: normal;
  font-family: lato;
  padding: 0 0 0px 0;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  letter-spacing: 2px;
  border-bottom: 1px solid #6db19b !important; }

.tp-caption.Agency-SmallLinkGreen:hover,
.Agency-SmallLinkGreen:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  cursor: pointer; }

.tp-caption.Agency-SmallLinkBlue,
.Agency-SmallLinkBlue {
  color: #999999;
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
  font-style: normal;
  font-family: lato;
  padding: 0 0 0px 0;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  letter-spacing: 2px;
  border-bottom: 1px solid #999 !important; }

.tp-caption.Agency-SmallLinkBlue:hover,
.Agency-SmallLinkBlue:hover {
  color: white;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  cursor: pointer; }

.tp-caption.Agency-LogoText,
.Agency-LogoText {
  color: white;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  font-family: Lato;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center;
  letter-spacing: 1px; }

.tp-caption.Agency-ArrowTooltip,
.Agency-ArrowTooltip {
  color: #333333;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  font-family: Permanent Marker;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: left; }

.tp-caption.Agency-SmallSocial,
.Agency-SmallSocial {
  color: white;
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  font-style: normal;
  font-family: Arial;
  padding: 0 0 0 0px;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  text-align: center; }

.tp-caption.Agency-SmallSocial:hover,
.Agency-SmallSocial:hover {
  color: #333333;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  cursor: pointer; }
/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ARES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
.ares.tparrows {
  cursor: pointer;
  background: #fff;
  min-width: 60px;
  min-height: 60px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 50%; }

.ares.tparrows:before {
  font-family: "revicons";
  font-size: 25px;
  color: #aaa;
  display: block;
  line-height: 60px;
  text-align: center;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 2;
  position: relative; }

.ares.tparrows.tp-leftarrow:before {
  content: "\E81F"; }

.ares.tparrows.tp-rightarrow:before {
  content: "\E81E"; }

.ares.tparrows:hover:before {
  color: #000; }

.ares .tp-title-wrap {
  position: absolute;
  z-index: 1;
  display: inline-block;
  background: #fff;
  min-height: 60px;
  line-height: 60px;
  top: 0px;
  margin-left: 30px;
  border-radius: 0px 30px 30px 0px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: 0% 50%;
  -webkit-transform-origin: 0% 50%; }

.ares.tp-rightarrow .tp-title-wrap {
  right: 0px;
  margin-right: 30px;
  margin-left: 0px;
  -webkit-transform-origin: 100% 50%;
  border-radius: 30px 0px 0px 30px; }

.ares.tparrows:hover .tp-title-wrap {
  transform: scaleX(1) scaleY(1);
  -webkit-transform: scaleX(1) scaleY(1); }

.ares .tp-arr-titleholder {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform: translateX(200px);
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: 60px;
  white-space: nowrap;
  padding: 0px 20px;
  margin-left: 10px;
  opacity: 0; }

.ares.tp-rightarrow .tp-arr-titleholder {
  transform: translateX(-200px);
  margin-left: 0px;
  margin-right: 10px; }

.ares.tparrows:hover .tp-arr-titleholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition-delay: 0.1s;
  opacity: 1; }

/* BULLETS */
.ares.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box; }

.ares .tp-bullet {
  width: 13px;
  height: 13px;
  position: absolute;
  background: #e5e5e5;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box; }

.ares .tp-bullet:hover,
.ares .tp-bullet.selected {
  background: #fff; }

.ares .tp-bullet-title {
  position: absolute;
  color: #888;
  font-size: 12px;
  padding: 0px 10px;
  font-weight: 600;
  right: 27px;
  top: -4px;
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  visibility: hidden;
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  line-height: 20px;
  white-space: nowrap; }

.ares .tp-bullet-title:after {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
  content: " ";
  position: absolute;
  right: -10px;
  top: 0px; }

.ares .tp-bullet:hover .tp-bullet-title {
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px); }

.ares .tp-bullet.selected:hover .tp-bullet-title {
  background: #fff; }

.ares .tp-bullet.selected:hover .tp-bullet-title:after {
  border-color: transparent transparent transparent #fff; }

.ares.tp-bullets:hover .tp-bullet-title {
  visibility: hidden; }

.ares.tp-bullets:hover .tp-bullet:hover .tp-bullet-title {
  visibility: visible; }

/* TABS */
.ares .tp-tab {
  opacity: 1;
  padding: 10px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5; }

.ares .tp-tab-image {
  width: 60px;
  height: 60px;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  display: inline-block;
  float: left; }

.ares .tp-tab-content {
  background: transparent;
  position: relative;
  padding: 15px 15px 15px 85px;
  left: 0px;
  overflow: hidden;
  margin-top: -15px;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute; }

.ares .tp-tab-date {
  display: block;
  color: #aaa;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 0px; }

.ares .tp-tab-title {
  display: block;
  text-align: left;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  line-height: 17px; }

.ares .tp-tab:hover,
.ares .tp-tab.selected {
  background: #eee; }

/* MEDIA QUERIES */
/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 CUSTOM SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.custom.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 100; }

.custom.tparrows:hover {
  background: #000; }

.custom.tparrows:before {
  font-family: "revicons";
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center; }

.custom.tparrows.tp-leftarrow:before {
  content: "\E824"; }

.custom.tparrows.tp-rightarrow:before {
  content: "\E825"; }

/* BULLETS */
.custom.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box; }

.custom .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #aaa;
  background: rgba(125, 125, 125, 0.5);
  cursor: pointer;
  box-sizing: content-box; }

.custom .tp-bullet:hover,
.custom .tp-bullet.selected {
  background: #7d7d7d; }

/* THUMBS */
/* TABS */
/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 DIONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.dione.tparrows {
  height: 100%;
  width: 100px;
  background: transparent;
  background: transparent;
  line-height: 100%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s; }

.dione.tparrows:hover {
  background: rgba(0, 0, 0, 0.45); }

.dione .tp-arr-imgwrapper {
  width: 100px;
  left: 0px;
  position: absolute;
  height: 100%;
  top: 0px;
  overflow: hidden; }

.dione.tp-rightarrow .tp-arr-imgwrapper {
  left: auto;
  right: 0px; }

.dione .tp-arr-imgholder {
  background-position: center center;
  background-size: cover;
  width: 100px;
  height: 100%;
  top: 0px;
  visibility: hidden;
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  opacity: 0;
  left: 0px; }

.dione.tparrows.tp-rightarrow .tp-arr-imgholder {
  right: 0px;
  left: auto;
  transform: translateX(50px);
  -webkit-transform: translateX(50px); }

.dione.tparrows:before {
  position: absolute;
  line-height: 30px;
  margin-left: -22px;
  top: 50%;
  left: 50%;
  font-size: 30px;
  margin-top: -15px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s; }

.dione.tparrows.tp-rightarrow:before {
  margin-left: 6px; }

.dione.tparrows:hover:before {
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  opacity: 0; }

.dione.tparrows.tp-rightarrow:hover:before {
  transform: translateX(20px);
  -webkit-transform: translateX(20px); }

.dione.tparrows:hover .tp-arr-imgholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  opacity: 1;
  visibility: visible; }

/* BULLETS */
.dione .tp-bullet {
  opacity: 1;
  width: 50px;
  height: 50px;
  padding: 3px;
  background: #000;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0px;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s; }

.dione .tp-bullet-image {
  display: block;
  box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  width: 44px;
  height: 44px;
  background-size: cover;
  background-position: center center; }

.dione .tp-bullet-title {
  position: absolute;
  bottom: 65px;
  display: inline-block;
  left: 50%;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  transform-origin: 50% 100%;
  -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  -webkit-transform-origin: 50% 100%;
  opacity: 0;
  white-space: nowrap; }

.dione .tp-bullet:hover .tp-bullet-title {
  transform: rotateX(0deg) translateX(-50%);
  -webkit-transform: rotateX(0deg) translateX(-50%);
  opacity: 1; }

.dione .tp-bullet.selected,
.dione .tp-bullet:hover {
  background: white;
  background: -moz-linear-gradient(top, white 0%, #777777 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
  background: -webkit-linear-gradient(top, white 0%, #777777 100%);
  background: -o-linear-gradient(top, white 0%, #777777 100%);
  background: -ms-linear-gradient(top, white 0%, #777777 100%);
  background: linear-gradient(to bottom, white 0%, #777777 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 ); }

.dione .tp-bullet-title:after {
  content: " ";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
  bottom: -8px; }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ERINYEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.erinyen.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  min-width: 70px;
  min-height: 70px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 35px; }

.erinyen.tparrows:before {
  font-family: "revicons";
  font-size: 20px;
  color: #fff;
  display: block;
  line-height: 70px;
  text-align: center;
  z-index: 2;
  position: relative; }

.erinyen.tparrows.tp-leftarrow:before {
  content: "\E824"; }

.erinyen.tparrows.tp-rightarrow:before {
  content: "\E825"; }

.erinyen .tp-title-wrap {
  position: absolute;
  z-index: 1;
  display: inline-block;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  min-height: 70px;
  line-height: 70px;
  top: 0px;
  margin-left: 0px;
  border-radius: 35px;
  overflow: hidden;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
  opacity: 0; }

.erinyen.tparrows:hover .tp-title-wrap {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible; }

.erinyen.tp-rightarrow .tp-title-wrap {
  right: 0px;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-transform-origin: 100% 50%;
  border-radius: 35px;
  padding-right: 20px;
  padding-left: 10px; }

.erinyen.tp-leftarrow .tp-title-wrap {
  padding-left: 20px;
  padding-right: 10px; }

.erinyen .tp-arr-titleholder {
  letter-spacing: 3px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform: translateX(200px);
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  line-height: 70px;
  white-space: nowrap;
  padding: 0px 20px;
  margin-left: 11px;
  opacity: 0; }

.erinyen .tp-arr-imgholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-size: cover; }

.erinyen .tp-arr-img-over {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: #000;
  background: rgba(0, 0, 0, 0.5); }

.erinyen.tp-rightarrow .tp-arr-titleholder {
  transform: translateX(-200px);
  margin-left: 0px;
  margin-right: 11px; }

.erinyen.tparrows:hover .tp-arr-titleholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition-delay: 0.1s;
  opacity: 1; }

/* BULLETS */
.erinyen.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #555555;
  /* old browsers */
  background: -moz-linear-gradient(top, #555555 0%, #222222 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #555555), color-stop(100%, #222222));
  /* chrome,safari4+ */
  background: -webkit-linear-gradient(top, #555555 0%, #222222 100%);
  /* chrome10+,safari5.1+ */
  background: -o-linear-gradient(top, #555555 0%, #222222 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(top, #555555 0%, #222222 100%);
  /* ie10+ */
  background: linear-gradient(to bottom, #555555 0%, #222222 100%);
  /* w3c */
  filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#555555", endcolorstr="#222222",gradienttype=0 );
  /* ie6-9 */
  padding: 10px 15px;
  margin-left: -15px;
  margin-top: -10px;
  box-sizing: content-box;
  border-radius: 10px;
  box-shadow: 0px 0px 2px 1px rgba(33, 33, 33, 0.3); }

.erinyen .tp-bullet {
  width: 13px;
  height: 13px;
  position: absolute;
  background: #111;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box; }

.erinyen .tp-bullet:hover,
.erinyen .tp-bullet.selected {
  background: #e5e5e5;
  /* old browsers */
  background: -moz-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e5e5e5), color-stop(100%, #999999));
  /* chrome,safari4+ */
  background: -webkit-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  /* chrome10+,safari5.1+ */
  background: -o-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  /* ie10+ */
  background: linear-gradient(to bottom, #e5e5e5 0%, #999999 100%);
  /* w3c */
  filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="#999999",gradienttype=0 );
  /* ie6-9 */
  border: 1px solid #555;
  width: 12px;
  height: 12px; }

/* THUMBS */
.erinyen .tp-thumb {
  opacity: 1; }

.erinyen .tp-thumb-over {
  background: #000;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.erinyen .tp-thumb-more:before {
  font-family: "revicons";
  font-size: 12px;
  color: #aaa;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  line-height: 12px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2; }

.erinyen .tp-thumb-more:before {
  content: "\E825"; }

.erinyen .tp-thumb-title {
  font-family: "Raleway";
  letter-spacing: 1px;
  font-size: 12px;
  color: #fff;
  display: block;
  line-height: 15px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  padding: 20px 35px 20px 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-weight: 500; }

.erinyen .tp-thumb.selected .tp-thumb-more:before,
.erinyen .tp-thumb:hover .tp-thumb-more:before {
  color: #aaa; }

.erinyen .tp-thumb.selected .tp-thumb-over,
.erinyen .tp-thumb:hover .tp-thumb-over {
  background: #fff; }

.erinyen .tp-thumb.selected .tp-thumb-title,
.erinyen .tp-thumb:hover .tp-thumb-title {
  color: #000; }

/* TABS */
.erinyen .tp-tab-title {
  color: #a8d8ee;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Roboto Slab";
  margin-bottom: 5px; }

.erinyen .tp-tab-desc {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 25px;
  font-family: "Roboto Slab"; }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 GYGES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
/* BULLETS */
.gyges.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #777777;
  /* Old browsers */
  background: -moz-linear-gradient(top, #777777 0%, #666666 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #777777), color-stop(100%, #666666));
  background: -webkit-linear-gradient(top, #777777 0%, #666666 100%);
  background: -o-linear-gradient(top, #777777 0%, #666666 100%);
  background: -ms-linear-gradient(top, #777777 0%, #666666 100%);
  background: linear-gradient(to bottom, #777777 0%, #666666 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#777777",  endColorstr="#666666",GradientType=0 );
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
  border-radius: 10px; }

.gyges .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #333;
  border: 3px solid #444;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box; }

.gyges .tp-bullet:hover,
.gyges .tp-bullet.selected {
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #e1e1e1 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #e1e1e1));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%, #e1e1e1 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%, #e1e1e1 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #e1e1e1 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%, #e1e1e1 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff",  endColorstr="#e1e1e1",GradientType=0 );
  /* IE6-9 */ }

/* THUMBS */
.gyges .tp-thumb {
  opacity: 1; }

.gyges .tp-thumb-img-wrap {
  padding: 3px;
  background: #000;
  background-color: rgba(0, 0, 0, 0.25);
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0px;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s; }

.gyges .tp-thumb-image {
  padding: 3px;
  display: block;
  box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25); }

.gyges .tp-thumb-title {
  position: absolute;
  bottom: 100%;
  display: inline-block;
  left: 50%;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 30px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin-bottom: 20px;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  transform-origin: 50% 100%;
  -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  -webkit-transform-origin: 50% 100%;
  white-space: nowrap; }

.gyges .tp-thumb:hover .tp-thumb-title {
  transform: rotateX(0deg) translateX(-50%);
  -webkit-transform: rotateX(0deg) translateX(-50%);
  opacity: 1; }

.gyges .tp-thumb:hover .tp-thumb-img-wrap,
.gyges .tp-thumb.selected .tp-thumb-img-wrap {
  background: white;
  background: -moz-linear-gradient(top, white 0%, #777777 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
  background: -webkit-linear-gradient(top, white 0%, #777777 100%);
  background: -o-linear-gradient(top, white 0%, #777777 100%);
  background: -ms-linear-gradient(top, white 0%, #777777 100%);
  background: linear-gradient(to bottom, white 0%, #777777 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 ); }

.gyges .tp-thumb-title:after {
  content: " ";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(255, 255, 255, 0.8) transparent transparent transparent;
  bottom: -8px; }

/* TABS */
.gyges .tp-tab {
  opacity: 1;
  padding: 10px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15); }

.gyges .tp-tab-image {
  width: 60px;
  height: 60px;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  display: inline-block;
  float: left; }

.gyges .tp-tab-content {
  background: transparent;
  position: relative;
  padding: 15px 15px 15px 85px;
  left: 0px;
  overflow: hidden;
  margin-top: -15px;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute; }

.gyges .tp-tab-date {
  display: block;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 0px; }

.gyges .tp-tab-title {
  display: block;
  text-align: left;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  line-height: 17px; }

.gyges .tp-tab:hover,
.gyges .tp-tab.selected {
  background: rgba(0, 0, 0, 0.5); }

/* MEDIA QUERIES */
/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HADES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hades.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.15);
  width: 100px;
  height: 100px;
  position: absolute;
  display: block;
  z-index: 100; }

.hades.tparrows:before {
  font-family: "revicons";
  font-size: 30px;
  color: #fff;
  display: block;
  line-height: 100px;
  text-align: center;
  transition: background 0.3s, color 0.3s; }

.hades.tparrows.tp-leftarrow:before {
  content: "\E824"; }

.hades.tparrows.tp-rightarrow:before {
  content: "\E825"; }

.hades.tparrows:hover:before {
  color: #aaa;
  background: #fff;
  background: white; }

.hades .tp-arr-allwrapper {
  position: absolute;
  left: 100%;
  top: 0px;
  background: #888;
  width: 100px;
  height: 100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0.0;
  -khtml-opacity: 0.0;
  opacity: 0.0;
  -webkit-transform: rotatey(-90deg);
  transform: rotatey(-90deg);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%; }

.hades.tp-rightarrow .tp-arr-allwrapper {
  left: auto;
  right: 100%;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotatey(90deg);
  transform: rotatey(90deg); }

.hades:hover .tp-arr-allwrapper {
  -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: rotatey(0deg);
  transform: rotatey(0deg); }

.hades .tp-arr-imgholder {
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%; }

/* BULLETS */
.hades.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box; }

.hades .tp-bullet {
  width: 3px;
  height: 3px;
  position: absolute;
  background: #888;
  cursor: pointer;
  border: 5px solid #fff;
  box-sizing: content-box;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
  -webkit-perspective: 400;
  perspective: 400;
  -webkit-transform: translatez(0.01px);
  transform: translatez(0.01px); }

.hades .tp-bullet:hover,
.hades .tp-bullet.selected {
  background: #555; }

.hades .tp-bullet-image {
  position: absolute;
  top: -80px;
  left: -60px;
  width: 120px;
  height: 60px;
  background-position: center center;
  background-size: cover;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transform-style: flat;
  transform-style: flat;
  perspective: 600;
  -webkit-perspective: 600;
  transform: rotatex(-90deg);
  -webkit-transform: rotatex(-90deg);
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%; }

.hades .tp-bullet:hover .tp-bullet-image {
  display: block;
  opacity: 1;
  transform: rotatex(0deg);
  -webkit-transform: rotatex(0deg);
  visibility: visible; }

/* THUMBS */
.hades .tp-thumb {
  opacity: 1; }

.hades .tp-thumb-img-wrap {
  border-radius: 50%;
  padding: 3px;
  display: inline-block;
  background: #000;
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0px;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s; }

.hades .tp-thumb-image {
  padding: 3px;
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25); }

.hades .tp-thumb:hover .tp-thumb-img-wrap,
.hades .tp-thumb.selected .tp-thumb-img-wrap {
  background: white;
  background: -moz-linear-gradient(top, white 0%, #777777 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
  background: -webkit-linear-gradient(top, white 0%, #777777 100%);
  background: -o-linear-gradient(top, white 0%, #777777 100%);
  background: -ms-linear-gradient(top, white 0%, #777777 100%);
  background: linear-gradient(to bottom, white 0%, #777777 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 ); }

.hades .tp-thumb-title:after {
  content: " ";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
  bottom: -8px; }

/* TABS */
.hades .tp-tab {
  opacity: 1; }

.hades .tp-tab-title {
  display: block;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  line-height: 25px; }

.hades .tp-tab-price {
  display: block;
  text-align: center;
  color: #999;
  font-size: 16px;
  margin-top: 10px;
  line-height: 20px; }

.hades .tp-tab-button {
  display: inline-block;
  margin-top: 15px;
  text-align: center;
  padding: 5px 15px;
  color: #fff;
  font-size: 14px;
  background: #219bd7;
  border-radius: 4px;
  font-weight: 400; }

.hades .tp-tab-inner {
  text-align: center; }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEBE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hebe.tparrows {
  cursor: pointer;
  background: #fff;
  min-width: 70px;
  min-height: 70px;
  position: absolute;
  display: block;
  z-index: 100; }

.hebe.tparrows:before {
  font-family: "revicons";
  font-size: 30px;
  color: #aaa;
  display: block;
  line-height: 70px;
  text-align: center;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 2;
  position: relative;
  background: #fff;
  min-width: 70px;
  min-height: 70px; }

.hebe.tparrows.tp-leftarrow:before {
  content: "\E824"; }

.hebe.tparrows.tp-rightarrow:before {
  content: "\E825"; }

.hebe.tparrows:hover:before {
  color: #000; }

.hebe .tp-title-wrap {
  position: absolute;
  z-index: 0;
  display: inline-block;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  min-height: 60px;
  line-height: 60px;
  top: -10px;
  margin-left: 0px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: 0% 50%;
  -webkit-transform-origin: 0% 50%; }

.hebe.tp-rightarrow .tp-title-wrap {
  right: 0px;
  -webkit-transform-origin: 100% 50%; }

.hebe.tparrows:hover .tp-title-wrap {
  transform: scaleX(1);
  -webkit-transform: scaleX(1); }

.hebe .tp-arr-titleholder {
  position: relative;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 90px;
  white-space: nowrap;
  padding: 0px 20px 0px 90px; }

.hebe.tp-rightarrow .tp-arr-titleholder {
  margin-left: 0px;
  padding: 0px 90px 0px 20px; }

.hebe.tparrows:hover .tp-arr-titleholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition-delay: 0.1s;
  opacity: 1; }

.hebe .tp-arr-imgholder {
  width: 90px;
  height: 90px;
  position: absolute;
  left: 100%;
  display: block;
  background-size: cover;
  background-position: center center;
  top: 0px;
  right: -90px; }

.hebe.tp-rightarrow .tp-arr-imgholder {
  right: auto;
  left: -90px; }

/* BULLETS */
.hebe.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box; }

.hebe .tp-bullet {
  width: 3px;
  height: 3px;
  position: absolute;
  background: #fff;
  cursor: pointer;
  border: 5px solid #222;
  border-radius: 50%;
  box-sizing: content-box;
  -webkit-perspective: 400;
  perspective: 400;
  -webkit-transform: translateZ(0.01px);
  transform: translateZ(0.01px);
  transition: all 0.3s; }

.hebe .tp-bullet:hover,
.hebe .tp-bullet.selected {
  background: #222;
  border-color: #fff; }

.hebe .tp-bullet-image {
  position: absolute;
  top: -90px;
  left: -40px;
  width: 70px;
  height: 70px;
  background-position: center center;
  background-size: cover;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transform-style: flat;
  transform-style: flat;
  perspective: 600;
  -webkit-perspective: 600;
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  border-radius: 6px; }

.hebe .tp-bullet:hover .tp-bullet-image {
  display: block;
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  visibility: visible; }

/* TABS */
.hebe .tp-tab-title {
  color: #a8d8ee;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Roboto Slab";
  margin-bottom: 5px; }

.hebe .tp-tab-desc {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 25px;
  font-family: "Roboto Slab"; }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEPHAISTOS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hephaistos.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 50%; }

.hephaistos.tparrows:hover {
  background: #000; }

.hephaistos.tparrows:before {
  font-family: "revicons";
  font-size: 18px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center; }

.hephaistos.tparrows.tp-leftarrow:before {
  content: "\E82C";
  margin-left: -2px; }

.hephaistos.tparrows.tp-rightarrow:before {
  content: "\E82D";
  margin-right: -2px; }

/* BULLETS */
.hephaistos.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box; }

.hephaistos .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #999;
  border: 3px solid #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
  box-shadow: 0px 0px 2px 1px rgba(130, 130, 130, 0.3); }

.hephaistos .tp-bullet:hover,
.hephaistos .tp-bullet.selected {
  background: #fff;
  border-color: #000; }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HERMES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hermes.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 30px;
  height: 110px;
  position: absolute;
  display: block;
  z-index: 100; }

.hermes.tparrows:before {
  font-family: "revicons";
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 110px;
  text-align: center;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition: all 0.3s;
  -webkit-transition: all 0.3s; }

.hermes.tparrows.tp-leftarrow:before {
  content: "\E824"; }

.hermes.tparrows.tp-rightarrow:before {
  content: "\E825"; }

.hermes.tparrows.tp-leftarrow:hover:before {
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  opacity: 0; }

.hermes.tparrows.tp-rightarrow:hover:before {
  transform: translateX(20px);
  -webkit-transform: translateX(20px);
  opacity: 0; }

.hermes .tp-arr-allwrapper {
  overflow: hidden;
  position: absolute;
  width: 180px;
  height: 140px;
  top: 0px;
  left: 0px;
  visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.hermes.tp-rightarrow .tp-arr-allwrapper {
  right: 0px;
  left: auto; }

.hermes.tparrows:hover .tp-arr-allwrapper {
  visibility: visible; }

.hermes .tp-arr-imgholder {
  width: 180px;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 110px;
  transform: translateX(-180px);
  -webkit-transform: translateX(-180px);
  transition: all 0.3s;
  transition-delay: 0.3s; }

.hermes.tp-rightarrow .tp-arr-imgholder {
  transform: translateX(180px);
  -webkit-transform: translateX(180px); }

.hermes.tparrows:hover .tp-arr-imgholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px); }

.hermes .tp-arr-titleholder {
  top: 110px;
  width: 180px;
  text-align: left;
  display: block;
  padding: 0px 10px;
  line-height: 30px;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-weight: 600;
  position: absolute;
  font-size: 12px;
  white-space: nowrap;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  box-sizing: border-box; }

.hermes.tparrows:hover .tp-arr-titleholder {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg); }

/* BULLETS */
.hermes .tp-bullet {
  overflow: hidden;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: transparent;
  box-shadow: inset 0 0 0 2px #FFF;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position: absolute; }

.hermes .tp-bullet:hover {
  background-color: rgba(0, 0, 0, 0.2); }

.hermes .tp-bullet:after {
  content: ' ';
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 1px #FFF;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease; }

.hermes .tp-bullet.selected:after {
  height: 100%; }

/* TABS */
.hermes .tp-tab {
  opacity: 1;
  padding-right: 10px;
  box-sizing: border-box; }

.hermes .tp-tab-image {
  width: 100%;
  height: 60%;
  position: relative; }

.hermes .tp-tab-content {
  background: #363636;
  position: absolute;
  padding: 20px 20px 20px 30px;
  box-sizing: border-box;
  color: #fff;
  display: block;
  width: 100%;
  min-height: 40%;
  bottom: 0px;
  left: -10px; }

.hermes .tp-tab-date {
  display: block;
  color: #888;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 10px; }

.hermes .tp-tab-title {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 19px; }

.hermes .tp-tab.selected .tp-tab-title:after {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 30px 0 30px 10px;
  border-color: transparent transparent transparent #363636;
  content: " ";
  position: absolute;
  right: -9px;
  bottom: 50%;
  margin-bottom: -30px; }

.hermes .tp-tab-mask {
  padding-right: 10px !important; }

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {
  .hermes .tp-tab .tp-tab-title {
    font-size: 14px;
    line-height: 16px; }
  .hermes .tp-tab-date {
    font-size: 11px;
    line-height: 13px;
    margin-bottom: 10px; }
  .hermes .tp-tab-content {
    padding: 15px 15px 15px 25px; } }

@media only screen and (max-width: 768px) {
  .hermes .tp-tab .tp-tab-title {
    font-size: 12px;
    line-height: 14px; }
  .hermes .tp-tab-date {
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 5px; }
  .hermes .tp-tab-content {
    padding: 10px 10px 10px 20px; } }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HESPERIDEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hesperiden.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 50%; }

.hesperiden.tparrows:hover {
  background: #000; }

.hesperiden.tparrows:before {
  font-family: "revicons";
  font-size: 20px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center; }

.hesperiden.tparrows.tp-leftarrow:before {
  content: "\E82C";
  margin-left: -3px; }

.hesperiden.tparrows.tp-rightarrow:before {
  content: "\E82D";
  margin-right: -3px; }

/* BULLETS */
.hesperiden.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
  border-radius: 8px; }

.hesperiden .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #999999;
  /* old browsers */
  background: -moz-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #999999), color-stop(100%, #e1e1e1));
  /* chrome,safari4+ */
  background: -webkit-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  /* chrome10+,safari5.1+ */
  background: -o-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  /* ie10+ */
  background: linear-gradient(to bottom, #999999 0%, #e1e1e1 100%);
  /* w3c */
  filter: progid:dximagetransform.microsoft.gradient(  startcolorstr="#999999", endcolorstr="#e1e1e1",gradienttype=0 );
  /* ie6-9 */
  border: 3px solid #e5e5e5;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box; }

.hesperiden .tp-bullet:hover,
.hesperiden .tp-bullet.selected {
  background: #666; }

/* THUMBS */
.hesperiden .tp-thumb {
  opacity: 1;
  -webkit-perspective: 600px;
  perspective: 600px; }

.hesperiden .tp-thumb .tp-thumb-title {
  font-size: 12px;
  position: absolute;
  margin-top: -10px;
  color: #fff;
  display: block;
  z-index: 1000;
  background-color: #000;
  padding: 5px 10px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transform: rotatex(90deg) translatez(0.001px);
  transform-origin: 50% 100%;
  -webkit-transform: rotatex(90deg) translatez(0.001px);
  -webkit-transform-origin: 50% 100%;
  opacity: 0; }

.hesperiden .tp-thumb:hover .tp-thumb-title {
  transform: rotatex(0deg);
  -webkit-transform: rotatex(0deg);
  opacity: 1; }

/* TABS */
.hesperiden .tp-tab {
  opacity: 1;
  padding: 10px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5; }

.hesperiden .tp-tab-image {
  width: 60px;
  height: 60px;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  display: inline-block;
  float: left; }

.hesperiden .tp-tab-content {
  background: transparent;
  position: relative;
  padding: 15px 15px 15px 85px;
  left: 0px;
  overflow: hidden;
  margin-top: -15px;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute; }

.hesperiden .tp-tab-date {
  display: block;
  color: #aaa;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 0px; }

.hesperiden .tp-tab-title {
  display: block;
  text-align: left;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  line-height: 17px; }

.hesperiden .tp-tab:hover,
.hesperiden .tp-tab.selected {
  background: #eee; }

/* MEDIA QUERIES */
/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 METIS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.metis.tparrows {
  background: #fff;
  padding: 10px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  width: 60px;
  height: 60px;
  box-sizing: border-box; }

.metis.tparrows:hover {
  background: #fff;
  background: rgba(255, 255, 255, 0.75); }

.metis.tparrows:before {
  color: #000;
  transition: all 0.3s;
  -webkit-transition: all 0.3s; }

.metis.tparrows:hover:before {
  transform: scale(1.5); }

/* BULLETS */
.metis .tp-bullet {
  opacity: 1;
  width: 50px;
  height: 50px;
  padding: 3px;
  background: #000;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0px;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  border-radius: 50%; }

.metis .tp-bullet-image {
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  width: 44px;
  height: 44px;
  background-size: cover;
  background-position: center center; }

.metis .tp-bullet-title {
  position: absolute;
  bottom: 65px;
  display: inline-block;
  left: 50%;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  transform-origin: 50% 100%;
  -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  -webkit-transform-origin: 50% 100%;
  opacity: 0;
  white-space: nowrap; }

.metis .tp-bullet:hover .tp-bullet-title {
  transform: rotateX(0deg) translateX(-50%);
  -webkit-transform: rotateX(0deg) translateX(-50%);
  opacity: 1; }

.metis .tp-bullet.selected,
.metis .tp-bullet:hover {
  background: white;
  background: -moz-linear-gradient(top, white 0%, #777777 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
  background: -webkit-linear-gradient(top, white 0%, #777777 100%);
  background: -o-linear-gradient(top, white 0%, #777777 100%);
  background: -ms-linear-gradient(top, white 0%, #777777 100%);
  background: linear-gradient(to bottom, white 0%, #777777 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 ); }

.metis .tp-bullet-title:after {
  content: " ";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
  bottom: -8px; }

.metis .tp-tab-number {
  color: #fff;
  font-size: 40px;
  line-height: 30px;
  font-weight: 400;
  font-family: "Playfair Display";
  width: 50px;
  margin-right: 17px;
  display: inline-block;
  float: left; }

.metis .tp-tab-mask {
  padding-left: 20px;
  left: 0px;
  max-width: 90px !important;
  transition: 0.4s padding-left, 0.4s left, 0.4s max-width; }

.metis:hover .tp-tab-mask {
  padding-left: 0px;
  left: 50px;
  max-width: 500px !important; }

.metis .tp-tab-divider {
  border-right: 1px solid transparent;
  height: 30px;
  width: 1px;
  margin-top: 5px;
  display: inline-block;
  float: left; }

.metis .tp-tab-title {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Playfair Display";
  position: relative;
  padding-top: 10px;
  padding-left: 30px;
  display: inline-block;
  transform: translateX(-100%);
  transition: 0.4s all; }

.metis .tp-tab-title-mask {
  position: absolute;
  overflow: hidden;
  left: 67px; }

.metis:hover .tp-tab-title {
  transform: translateX(0); }

.metis .tp-tab {
  opacity: 0.15;
  transition: 0.4s all; }

.metis .tp-tab:hover,
.metis .tp-tab.selected {
  opacity: 1; }

.metis .tp-tab.selected .tp-tab-divider {
  border-right: 1px solid #cdb083; }

.metis.tp-tabs {
  max-width: 118px !important;
  padding-left: 50px; }

.metis.tp-tabs:before {
  content: " ";
  height: 100%;
  width: 88px;
  background: rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  left: 0px;
  top: 0px;
  position: absolute;
  transition: 0.4s all; }

.metis.tp-tabs:hover:before {
  width: 118px; }

@media (max-width: 499px) {
  .metis.tp-tabs:before {
    background: rgba(0, 0, 0, 0.75); } }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 PERSEPHONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.persephone.tparrows {
  cursor: pointer;
  background: #aaa;
  background: rgba(200, 200, 200, 0.5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 100;
  border: 1px solid #f5f5f5; }

.persephone.tparrows:hover {
  background: #333; }

.persephone.tparrows:before {
  font-family: "revicons";
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center; }

.persephone.tparrows.tp-leftarrow:before {
  content: "\E824"; }

.persephone.tparrows.tp-rightarrow:before {
  content: "\E825"; }

/* BULLETS */
.persephone.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box; }

.persephone .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #aaa;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  box-sizing: content-box; }

.persephone .tp-bullet:hover,
.persephone .tp-bullet.selected {
  background: #222; }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 URANUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.uranus.tparrows {
  width: 50px;
  height: 50px;
  background: transparent; }

.uranus.tparrows:before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 40px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s; }

.uranus.tparrows:hover:before {
  opacity: 0.75; }

/* BULLETS */
.uranus .tp-bullet {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  background: transparent; }

.uranus .tp-bullet.selected,
.uranus .tp-bullet:hover {
  box-shadow: 0 0 0 2px #FFF;
  border: none;
  border-radius: 50%;
  background: transparent; }

.uranus .tp-bullet-inner {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.3);
  text-indent: -999em;
  cursor: pointer;
  position: absolute; }

.uranus .tp-bullet.selected .tp-bullet-inner,
.uranus .tp-bullet:hover .tp-bullet-inner {
  transform: scale(0.4);
  -webkit-transform: scale(0.4);
  background-color: #fff; }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.zeus.tparrows {
  cursor: pointer;
  min-width: 70px;
  min-height: 70px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 35px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1); }

.zeus.tparrows:before {
  font-family: "revicons";
  font-size: 20px;
  color: #fff;
  display: block;
  line-height: 70px;
  text-align: center;
  z-index: 2;
  position: relative; }

.zeus.tparrows.tp-leftarrow:before {
  content: "\E824"; }

.zeus.tparrows.tp-rightarrow:before {
  content: "\E825"; }

.zeus .tp-title-wrap {
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  border-radius: 50%; }

.zeus .tp-arr-imgholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s; }

.zeus.tp-rightarrow .tp-arr-imgholder {
  transform: translateX(100%);
  -webkit-transform: translateX(100%); }

.zeus.tparrows:hover .tp-arr-imgholder {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  opacity: 1; }

.zeus.tparrows:hover .tp-title-wrap {
  transform: scale(1);
  -webkit-transform: scale(1);
  opacity: 1; }

/* BULLETS */
.zeus .tp-bullet {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 13px;
  height: 13px;
  border: 2px solid #fff; }

.zeus .tp-bullet:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease; }

.zeus .tp-bullet:hover:after,
.zeus .tp-bullet.selected:after {
  -webkit-transform: scale(1.2);
  transform: scale(1.2); }

.zeus .tp-bullet-image,
.zeus .tp-bullet-imageoverlay {
  width: 135px;
  height: 60px;
  position: absolute;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  bottom: 25px;
  left: 50%;
  margin-left: -65px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center center;
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 4px; }

.zeus .tp-bullet-title,
.zeus .tp-bullet-imageoverlay {
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.zeus .tp-bullet-title {
  color: #fff;
  text-align: center;
  line-height: 15px;
  font-size: 13px;
  font-weight: 600;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 45px;
  width: 135px;
  vertical-align: middle;
  left: -57px; }

.zeus .tp-bullet:hover .tp-bullet-title,
.zeus .tp-bullet:hover .tp-bullet-image,
.zeus .tp-bullet:hover .tp-bullet-imageoverlay {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px); }

/* THUMBS */
.zeus .tp-thumb {
  opacity: 1; }

.zeus .tp-thumb-over {
  background: #000;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.zeus .tp-thumb-more:before {
  font-family: "revicons";
  font-size: 12px;
  color: #aaa;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  line-height: 12px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2; }

.zeus .tp-thumb-more:before {
  content: "\E825"; }

.zeus .tp-thumb-title {
  font-family: "Raleway";
  letter-spacing: 1px;
  font-size: 12px;
  color: #fff;
  display: block;
  line-height: 15px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  padding: 20px 35px 20px 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-weight: 500; }

.zeus .tp-thumb.selected .tp-thumb-more:before,
.zeus .tp-thumb:hover .tp-thumb-more:before {
  color: #aaa; }

.zeus .tp-thumb.selected .tp-thumb-over,
.zeus .tp-thumb:hover .tp-thumb-over {
  background: #000; }

.zeus .tp-thumb.selected .tp-thumb-title,
.zeus .tp-thumb:hover .tp-thumb-title {
  color: #fff; }

/* TABS */
.zeus .tp-tab {
  opacity: 1;
  box-sizing: border-box; }

.zeus .tp-tab-title {
  display: block;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 13px;
  color: #fff;
  padding: 9px 10px; }

.zeus .tp-tab:hover .tp-tab-title,
.zeus .tp-tab.selected .tp-tab-title {
  color: #000;
  background: white; }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
.post-tabs .tp-thumb {
  opacity: 1; }

.post-tabs .tp-thumb-over {
  background: #252525;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.post-tabs .tp-thumb-more:before {
  font-family: "revicons";
  font-size: 12px;
  color: #aaa;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  line-height: 12px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2; }

.post-tabs .tp-thumb-more:before {
  content: "\E825"; }

.post-tabs .tp-thumb-title {
  font-family: "raleway";
  letter-spacing: 1px;
  font-size: 12px;
  color: #fff;
  display: block;
  line-height: 15px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  padding: 15px 30px 15px 15px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-weight: 500; }

.post-tabs .tp-thumb.selected .tp-thumb-more:before,
.post-tabs .tp-thumb:hover .tp-thumb-more:before {
  color: #aaa; }

.post-tabs .tp-thumb.selected .tp-thumb-over,
.post-tabs .tp-thumb:hover .tp-thumb-over {
  background: #fff; }

.post-tabs .tp-thumb.selected .tp-thumb-title,
.post-tabs .tp-thumb:hover .tp-thumb-title {
  color: #000; }
/*!
 * Cube Portfolio - Responsive jQuery Grid Plugin
 *
 * version: 3.8.0 (19 September, 2016)
 * require: jQuery v1.7+
 *
 * Copyright 2013-2016, Mihai Buricea (http://scriptpie.com/cubeportfolio/live-preview/)
 * Licensed under CodeCanyon License (http://codecanyon.net/licenses)
 *
 */
.cbp, .cbp *,
.cbp *:after, .cbp:after, .cbp-l-filters-alignCenter, .cbp-l-filters-alignCenter *, .cbp-l-filters-alignCenter .cbp-filter-counter:after, .cbp-l-filters-alignLeft, .cbp-l-filters-alignLeft *, .cbp-l-filters-alignRight, .cbp-l-filters-alignRight *, .cbp-l-filters-alignRight .cbp-filter-counter:after, .cbp-l-filters-button, .cbp-l-filters-button *, .cbp-l-filters-button .cbp-filter-counter:after, .cbp-l-filters-buttonCenter, .cbp-l-filters-buttonCenter *, .cbp-l-filters-buttonCenter .cbp-filter-counter:after, .cbp-l-filters-dropdown, .cbp-l-filters-dropdown *, .cbp-l-filters-dropdownHeader:after, .cbp-l-filters-list, .cbp-l-filters-list *, .cbp-l-filters-work, .cbp-l-filters-work *, .cbp-l-filters-big, .cbp-l-filters-big *, .cbp-l-filters-text, .cbp-l-filters-text *, .cbp-l-filters-text .cbp-filter-counter:after, .cbp-l-filters-underline, .cbp-l-filters-underline *, .cbp-popup-wrap, .cbp-popup-wrap *, .cbp-popup-wrap:before, .cbp-popup-loadingBox:after, .cbp-l-loadMore-bgbutton, .cbp-l-loadMore-bgbutton *, .cbp-l-loadMore-button, .cbp-l-loadMore-button *, .cbp-l-loadMore-text, .cbp-l-loadMore-text *, .cbp-search, .cbp-search * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.cbp-l-grid-agency-title, .cbp-l-grid-agency-desc, .cbp-l-grid-work-title, .cbp-l-grid-work-desc, .cbp-l-grid-blog-title, .cbp-l-grid-projects-title, .cbp-l-grid-projects-desc, .cbp-l-grid-masonry-projects-title, .cbp-l-grid-masonry-projects-desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.cbp-l-filters-alignCenter, .cbp-l-filters-alignCenter *, .cbp-l-filters-alignLeft, .cbp-l-filters-alignLeft *, .cbp-l-filters-alignRight, .cbp-l-filters-alignRight *, .cbp-l-filters-button, .cbp-l-filters-button *, .cbp-l-filters-buttonCenter, .cbp-l-filters-buttonCenter *, .cbp-l-filters-dropdown, .cbp-l-filters-dropdown *, .cbp-l-filters-list, .cbp-l-filters-list *, .cbp-l-filters-work, .cbp-l-filters-work *, .cbp-l-filters-big, .cbp-l-filters-big *, .cbp-l-filters-text, .cbp-l-filters-text *, .cbp-l-filters-underline, .cbp-l-filters-underline * {
  -webkit-tap-highlight-color: transparent; }

.cbp:after, .cbp-lazyload:after, .cbp-popup-loadingBox:after, .cbp-popup-singlePageInline:after {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: cbp-rotation .8s infinite linear;
  animation: cbp-rotation .8s infinite linear;
  border-left: 3px solid rgba(114, 144, 182, 0.15);
  border-right: 3px solid rgba(114, 144, 182, 0.15);
  border-bottom: 3px solid rgba(114, 144, 182, 0.15);
  border-top: 3px solid rgba(114, 144, 182, 0.8);
  border-radius: 100%; }

/*  ---------------------------------------------------------------
    Default style for plugin. Please change them carefully!
    --------------------------------------------------------------- */
.cbp-item {
  display: inline-block;
  margin: 0 10px 20px 0; }

.cbp {
  position: relative;
  margin: 0 auto;
  z-index: 1;
  height: 400px; }

.cbp > * {
  visibility: hidden; }

.cbp .cbp-item {
  position: absolute;
  top: 0;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden; }

.cbp img {
  display: block;
  border: 0;
  width: 100%;
  height: auto; }

.cbp a,
.cbp a:hover,
.cbp a:active {
  text-decoration: none;
  outline: 0; }

.cbp-ready > * {
  visibility: visible; }

.cbp-ready:after {
  display: none;
  visibility: hidden; }

.cbp-lazyload {
  position: relative;
  background: #fff;
  display: block; }

.cbp-lazyload img {
  opacity: 1; }

.cbp-lazyload img[data-cbp-src] {
  opacity: 0; }

.cbp-lazyload img:not([data-cbp-src]) {
  -webkit-transition: opacity .7s ease-in-out;
  transition: opacity .7s ease-in-out; }

.cbp-lazyload:after {
  z-index: 0; }

.cbp-wrapper-outer {
  overflow: hidden;
  position: relative;
  margin: 0 auto; }

.cbp-wrapper-outer,
.cbp-wrapper,
.cbp-wrapper-helper {
  list-style-type: none;
  padding: 0;
  width: 100%;
  height: 100%;
  z-index: 1; }

.cbp-wrapper,
.cbp-wrapper-helper {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0; }

.cbp-item-off {
  z-index: -1;
  pointer-events: none;
  visibility: hidden; }

.cbp-item-on2off {
  z-index: 0; }

.cbp-item-off2on {
  z-index: 1; }

.cbp-item-on2on {
  z-index: 2; }

.cbp-item-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0; }

.cbp-l-project-related-wrap img,
.cbp-l-inline img {
  display: block;
  width: 100%;
  height: auto;
  border: 0; }

.cbp-updateItems {
  -webkit-transition: height .5s ease-in-out !important;
  transition: height .5s ease-in-out !important;
  will-change: height; }

.cbp-updateItems .cbp-item {
  -webkit-transition: top .5s ease-in-out, left .5s ease-in-out;
  transition: top .5s ease-in-out, left .5s ease-in-out; }

.cbp-updateItems .cbp-item-loading {
  -webkit-animation: fadeIn .5s ease-in-out;
  animation: fadeIn .5s ease-in-out;
  -webkit-transition: none;
  transition: none; }

.cbp-removeItem {
  -webkit-animation: fadeOut .5s ease-in-out;
  animation: fadeOut .5s ease-in-out; }

/*  END - Default style for plugin. Please change them carefully! */
.cbp-panel {
  width: 94%;
  max-width: 1170px;
  margin: 0 auto; }

.cbp-misc-video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
  text-align: center; }

.cbp-misc-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

@-webkit-keyframes cbp-rotation {
  0 {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes cbp-rotation {
  0 {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both; }

.cbp-l-filters-left {
  float: left; }

.cbp-l-filters-right {
  float: right; }

/* general caption style */
.cbp-caption,
.cbp-caption-defaultWrap,
.cbp-caption-activeWrap {
  display: block; }

.cbp-caption-activeWrap {
  background-color: #282727; }

.cbp-caption-active .cbp-caption,
.cbp-caption-active .cbp-caption-defaultWrap,
.cbp-caption-active .cbp-caption-activeWrap {
  overflow: hidden;
  position: relative;
  z-index: 1; }

.cbp-caption-active .cbp-caption-defaultWrap {
  top: 0; }

.cbp-caption-active .cbp-caption-activeWrap {
  width: 100%;
  position: absolute;
  z-index: 2;
  height: 100%; }

/*  ---------------------------------------------------------------
    caption miscellaneous style
    --------------------------------------------------------------- */
.cbp-l-caption-title {
  color: #fff;
  font: 400 16px/21px "Open Sans", sans-serif; }

.cbp-l-caption-desc {
  color: #aaa;
  font: 400 12px/16px "Open Sans", sans-serif; }

.cbp-l-caption-text {
  font: 400 14px/21px "Open Sans", sans-serif;
  color: #fff;
  letter-spacing: 3px;
  padding: 0 6px; }

.cbp-l-caption-buttonLeft,
.cbp-l-caption-buttonRight {
  background-color: #547EB1;
  color: #FFFFFF;
  display: inline-block;
  font: 400 12px/30px "Open Sans", sans-serif;
  min-width: 90px;
  text-align: center;
  margin: 4px;
  padding: 0 6px; }

.cbp-l-caption-buttonLeft:hover,
.cbp-l-caption-buttonRight:hover {
  opacity: 0.9; }

/*  END - caption miscellaneous style */
/*  ---------------------------------------------------------------
    none caption
    --------------------------------------------------------------- */
.cbp-caption-none .cbp-caption-activeWrap {
  display: none; }

/*  END - none caption */
/*  ---------------------------------------------------------------
    caption layout align left
    --------------------------------------------------------------- */
.cbp-l-caption-alignLeft .cbp-l-caption-body {
  padding: 12px 30px; }

.cbp-caption-fadeIn .cbp-l-caption-alignLeft .cbp-l-caption-body, .cbp-caption-minimal .cbp-l-caption-alignLeft .cbp-l-caption-body, .cbp-caption-moveRight .cbp-l-caption-alignLeft .cbp-l-caption-body, .cbp-caption-overlayRightAlong .cbp-l-caption-alignLeft .cbp-l-caption-body, .cbp-caption-pushDown .cbp-l-caption-alignLeft .cbp-l-caption-body, .cbp-caption-pushTop .cbp-l-caption-alignLeft .cbp-l-caption-body, .cbp-caption-revealBottom .cbp-l-caption-alignLeft .cbp-l-caption-body, .cbp-caption-revealLeft .cbp-l-caption-alignLeft .cbp-l-caption-body, .cbp-caption-revealTop .cbp-l-caption-alignLeft .cbp-l-caption-body, .cbp-caption-zoom .cbp-l-caption-alignLeft .cbp-l-caption-body, .cbp-caption-opacity .cbp-l-caption-alignLeft .cbp-l-caption-body {
  padding-top: 30px; }

/*  END - caption layout left */
/*  ---------------------------------------------------------------
    caption layout center vertically and horizontally
    --------------------------------------------------------------- */
.cbp-l-caption-alignCenter {
  display: table;
  width: 100%;
  height: 100%; }

.cbp-l-caption-alignCenter .cbp-l-caption-body {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 10px 0; }

.cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft,
.cbp-l-caption-alignCenter .cbp-l-caption-buttonRight {
  position: relative;
  -webkit-transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-overlayBottom .cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft,
.cbp-caption-overlayBottomPush .cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft,
.cbp-caption-overlayBottomAlong .cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft {
  left: -20px; }

.cbp-caption-overlayBottom .cbp-l-caption-alignCenter .cbp-l-caption-buttonRight,
.cbp-caption-overlayBottomPush .cbp-l-caption-alignCenter .cbp-l-caption-buttonRight,
.cbp-caption-overlayBottomAlong .cbp-l-caption-alignCenter .cbp-l-caption-buttonRight {
  left: 20px; }

.cbp-caption:hover .cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft,
.cbp-caption:hover .cbp-l-caption-alignCenter .cbp-l-caption-buttonRight {
  left: 0; }

/*  END - caption layout center vertically and horizontally */
.cbp-caption-fadeIn .cbp-caption-activeWrap {
  opacity: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-fadeIn .cbp-caption:hover .cbp-caption-activeWrap {
  opacity: 1; }

.cbp-caption-minimal .cbp-l-caption-title,
.cbp-caption-minimal .cbp-l-caption-desc {
  position: relative;
  left: 0;
  opacity: 0;
  -webkit-transition: -webkit-transform .35s ease-out;
  transition: transform .35s ease-out; }

.cbp-caption-minimal .cbp-l-caption-title {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.cbp-caption-minimal .cbp-l-caption-desc {
  -webkit-transform: translateY(70%);
  transform: translateY(70%); }

.cbp-caption-minimal .cbp-caption:hover .cbp-l-caption-title,
.cbp-caption-minimal .cbp-caption:hover .cbp-l-caption-desc {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0); }

.cbp-caption-minimal .cbp-caption-activeWrap {
  top: 0;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }

.cbp-caption-minimal .cbp-caption:hover .cbp-caption-activeWrap {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; }

.cbp-caption-moveRight .cbp-caption-activeWrap {
  left: -100%;
  top: 0;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-moveRight .cbp-caption:hover .cbp-caption-activeWrap {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

.cbp-caption-overlayBottom .cbp-caption-activeWrap {
  height: 60px;
  background-color: #181616;
  background-color: rgba(24, 22, 22, 0.7);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-overlayBottom .cbp-caption:hover .cbp-caption-activeWrap {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

.cbp-caption-overlayBottomAlong .cbp-caption-defaultWrap,
.cbp-caption-overlayBottomAlong .cbp-caption-activeWrap {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-overlayBottomAlong .cbp-caption-activeWrap {
  height: 60px; }

.cbp-caption-overlayBottomAlong .cbp-caption:hover .cbp-caption-defaultWrap {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px); }

.cbp-caption-overlayBottomAlong .cbp-caption:hover .cbp-caption-activeWrap {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

.cbp-caption-overlayBottomPush .cbp-caption-defaultWrap {
  -webkit-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-overlayBottomPush .cbp-caption-activeWrap {
  bottom: -60px;
  height: 60px;
  -webkit-transition: bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-overlayBottomPush .cbp-caption:hover .cbp-caption-defaultWrap {
  top: -60px; }

.cbp-caption-overlayBottomPush .cbp-caption:hover .cbp-caption-activeWrap {
  bottom: 0; }

.cbp-caption-overlayBottomReveal .cbp-caption-defaultWrap {
  z-index: 2;
  -webkit-transition: top 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0.5s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-overlayBottomReveal .cbp-caption-activeWrap {
  bottom: 0;
  z-index: 1;
  height: 60px; }

.cbp-caption-overlayBottomReveal .cbp-caption:hover .cbp-caption-defaultWrap {
  top: -60px; }

.cbp-caption-overlayRightAlong .cbp-caption-defaultWrap,
.cbp-caption-overlayRightAlong .cbp-caption-activeWrap {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-overlayRightAlong .cbp-caption-activeWrap {
  top: 0;
  left: -50%;
  width: 50%; }

.cbp-caption-overlayRightAlong .cbp-caption:hover .cbp-caption-defaultWrap {
  -webkit-transform: translateX(25%);
  transform: translateX(25%); }

.cbp-caption-overlayRightAlong .cbp-caption:hover .cbp-caption-activeWrap {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

.cbp-caption-pushDown .cbp-caption-defaultWrap,
.cbp-caption-pushDown .cbp-caption-activeWrap {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-pushDown .cbp-caption-activeWrap {
  top: -102%;
  height: 102%; }

.cbp-caption-pushDown .cbp-caption:hover .cbp-caption-defaultWrap {
  -webkit-transform: translateY(100%);
  transform: translateY(100%); }

.cbp-caption-pushDown .cbp-caption:hover .cbp-caption-activeWrap {
  -webkit-transform: translateY(99%);
  transform: translateY(99%); }

.cbp-caption-pushTop .cbp-caption-activeWrap,
.cbp-caption-pushTop .cbp-caption-defaultWrap {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-pushTop .cbp-caption-activeWrap {
  height: 102%; }

.cbp-caption-pushTop .cbp-caption:hover .cbp-caption-defaultWrap {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

.cbp-caption-pushTop .cbp-caption:hover .cbp-caption-activeWrap {
  -webkit-transform: translateY(-99%);
  transform: translateY(-99%); }

.cbp-caption-revealBottom .cbp-caption-defaultWrap {
  z-index: 2;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-revealBottom .cbp-caption-activeWrap {
  top: 0;
  z-index: 1; }

.cbp-caption-revealBottom .cbp-caption:hover .cbp-caption-defaultWrap {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

.cbp-caption-revealLeft .cbp-caption-activeWrap {
  left: 100%;
  top: 0;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-revealLeft .cbp-caption:hover .cbp-caption-activeWrap {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

.cbp-caption-revealTop .cbp-caption-defaultWrap {
  z-index: 2;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-revealTop .cbp-caption-activeWrap {
  top: 0;
  z-index: 1; }

.cbp-caption-revealTop .cbp-caption:hover .cbp-caption-defaultWrap {
  -webkit-transform: translateY(100%);
  transform: translateY(100%); }

.cbp-caption-zoom .cbp-caption-defaultWrap {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-zoom .cbp-caption:hover .cbp-caption-defaultWrap {
  -webkit-transform: scale(1.25);
  transform: scale(1.25); }

.cbp-caption-zoom .cbp-caption-activeWrap {
  opacity: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-zoom .cbp-caption:hover .cbp-caption-activeWrap {
  opacity: 1; }

.cbp-caption-opacity .cbp-item {
  padding: 1px; }

.cbp-caption-opacity .cbp-caption,
.cbp-caption-opacity .cbp-caption-activeWrap,
.cbp-caption-opacity .cbp-caption-defaultWrap {
  background-color: transparent; }

.cbp-caption-opacity .cbp-caption {
  border: 1px solid transparent; }

.cbp-caption-opacity .cbp-caption:hover {
  border-color: #EDEDED; }

.cbp-caption-opacity .cbp-caption-defaultWrap {
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.cbp-caption-opacity .cbp-caption:hover .cbp-caption-defaultWrap {
  opacity: .8; }

.cbp-caption-opacity .cbp-caption:hover .cbp-caption-activeWrap {
  top: 0; }

.cbp-caption-expand .cbp-caption-activeWrap {
  height: auto;
  background-color: transparent; }

.cbp-caption-expand .cbp-caption {
  border-bottom: 1px dotted #eaeaea; }

.cbp-caption-expand .cbp-caption-defaultWrap {
  cursor: pointer;
  font: 500 15px/23px "Roboto", sans-serif;
  color: #474747;
  padding: 12px 0 11px 26px; }

.cbp-caption-expand .cbp-caption-defaultWrap svg {
  position: absolute;
  top: 16px;
  left: 0; }

.cbp-caption-expand .cbp-l-caption-body {
  font: 400 13px/21px "Roboto", sans-serif;
  color: #888;
  padding: 0 0 20px 26px; }

.cbp-caption-expand-active {
  -webkit-transition: height .4s !important;
  transition: height .4s !important; }

.cbp-caption-expand-active .cbp-item {
  -webkit-transition: left .4s, top .4s !important;
  transition: left .4s, top .4s !important; }

.cbp-caption-expand-open .cbp-caption-activeWrap {
  -webkit-transition: height .4s;
  transition: height .4s; }

.cbp-l-filters-alignCenter {
  margin-bottom: 30px;
  text-align: center;
  font: 400 12px/21px sans-serif;
  color: #DADADA; }

.cbp-l-filters-alignCenter .cbp-filter-item {
  color: #949494;
  cursor: pointer;
  font: 400 13px/21px "Open Sans", sans-serif;
  padding: 0 12px;
  transition: all .3s ease-in-out;
  position: relative;
  overflow: visible;
  margin: 0 0 10px;
  display: inline-block; }

.cbp-l-filters-alignCenter .cbp-filter-item:hover {
  color: #2D2C2C; }

.cbp-l-filters-alignCenter .cbp-filter-item.cbp-filter-item-active {
  color: #2D2C2C;
  cursor: default; }

.cbp-l-filters-alignCenter .cbp-filter-counter {
  background: none repeat scroll 0 0 #626161;
  border-radius: 3px;
  color: #FFFFFF;
  font: 400 11px/18px "Open Sans", sans-serif;
  margin: 0 auto;
  padding: 4px 0;
  text-align: center;
  width: 34px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: all .25s ease;
  transition: all .25s ease; }

.cbp-l-filters-alignCenter .cbp-filter-counter:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #626161;
  display: none; }

.cbp-l-filters-alignCenter .cbp-filter-item:hover .cbp-filter-counter:after {
  display: block; }

.cbp-l-filters-alignCenter .cbp-filter-item:hover .cbp-filter-counter {
  bottom: 30px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1; }

.cbp-l-filters-alignLeft {
  margin-bottom: 30px; }

.cbp-l-filters-alignLeft .cbp-filter-item {
  background-color: #fff;
  border: 1px solid #cdcdcd;
  cursor: pointer;
  font: 400 12px/30px "Open Sans", sans-serif;
  padding: 0 13px;
  position: relative;
  overflow: visible;
  margin: 0 8px 10px 0;
  display: inline-block;
  color: #888888;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

.cbp-l-filters-alignLeft .cbp-filter-item:hover {
  color: #111; }

.cbp-l-filters-alignLeft .cbp-filter-item.cbp-filter-item-active {
  background-color: #6C7A89;
  border: 1px solid #6C7A89;
  color: #fff;
  cursor: default; }

.cbp-l-filters-alignLeft .cbp-filter-counter {
  display: inline; }

.cbp-l-filters-alignRight {
  margin-bottom: 30px;
  text-align: right; }

.cbp-l-filters-alignRight .cbp-filter-item {
  background-color: transparent;
  color: #8B8B8B;
  cursor: pointer;
  font: 400 11px/31px "Open Sans", sans-serif;
  padding: 0 14px;
  position: relative;
  overflow: visible;
  margin: 0 0 10px 5px;
  border: 1px solid #E4E2E2;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

.cbp-l-filters-alignRight .cbp-filter-item:hover {
  color: #2B3444; }

.cbp-l-filters-alignRight .cbp-filter-item:hover .cbp-filter-counter:after {
  display: block; }

.cbp-l-filters-alignRight .cbp-filter-item:hover .cbp-filter-counter {
  bottom: 44px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1; }

.cbp-l-filters-alignRight .cbp-filter-item.cbp-filter-item-active {
  color: #FFFFFF;
  background-color: #049372;
  border-color: #049372;
  cursor: default; }

.cbp-l-filters-alignRight .cbp-filter-counter {
  background: none repeat scroll 0 0 #049372;
  border-radius: 3px;
  color: #fff;
  font: 400 11px/18px "Open Sans", sans-serif;
  margin: 0 auto;
  padding: 4px 0;
  text-align: center;
  width: 34px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: opacity .25s ease, bottom .25s ease;
  transition: opacity .25s ease, bottom .25s ease; }

.cbp-l-filters-alignRight .cbp-filter-counter:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #049372;
  display: none; }

.cbp-l-filters-button {
  margin-bottom: 30px; }

.cbp-l-filters-button .cbp-filter-item {
  background-color: #FFFFFF;
  border: 1px solid #ECECEC;
  color: #888888;
  cursor: pointer;
  font: 400 12px/32px "Open Sans", sans-serif;
  margin: 0 10px 10px 0;
  overflow: visible;
  padding: 0 17px;
  position: relative;
  display: inline-block;
  -webkit-transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
  transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out; }

.cbp-l-filters-button .cbp-filter-item:hover {
  color: #545454;
  border-color: #DADADA; }

.cbp-l-filters-button .cbp-filter-item.cbp-filter-item-active {
  background-color: #545454;
  color: #fff;
  border-color: #5d5d5d;
  cursor: default; }

.cbp-l-filters-button .cbp-filter-counter {
  background-color: #545454;
  border-radius: 3px;
  color: #fff;
  font: 400 11px/18px "Open Sans", sans-serif;
  margin: 0 auto;
  padding: 4px 0;
  text-align: center;
  width: 34px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity .25s ease, bottom .25s ease;
  transition: opacity .25s ease, bottom .25s ease; }

.cbp-l-filters-button .cbp-filter-counter:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #545454;
  display: none; }

.cbp-l-filters-button .cbp-filter-item:hover .cbp-filter-counter:after {
  display: block; }

.cbp-l-filters-button .cbp-filter-item:hover .cbp-filter-counter {
  bottom: 44px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1; }

.cbp-l-filters-buttonCenter {
  margin-bottom: 30px;
  text-align: center; }

.cbp-l-filters-buttonCenter .cbp-filter-item {
  background-color: #FFFFFF;
  border: 1px solid #ECECEC;
  color: #888888;
  cursor: pointer;
  font: 400 12px/32px "Roboto", sans-serif;
  margin: 0 10px 10px 0;
  overflow: visible;
  padding: 0 17px;
  position: relative;
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

.cbp-l-filters-buttonCenter .cbp-filter-item:hover {
  color: #5d5d5d; }

.cbp-l-filters-buttonCenter .cbp-filter-item.cbp-filter-item-active {
  color: #3B9CB3;
  border-color: #8CD2E5;
  cursor: default; }

.cbp-l-filters-buttonCenter .cbp-filter-counter {
  background-color: #68ABBC;
  border-radius: 3px;
  color: #fff;
  font: 400 11px/18px "Roboto", sans-serif;
  margin: 0 auto;
  padding: 4px 0;
  text-align: center;
  width: 34px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity .25s ease, bottom .25s ease;
  transition: opacity .25s ease, bottom .25s ease; }

.cbp-l-filters-buttonCenter .cbp-filter-counter:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #68ABBC;
  display: none; }

.cbp-l-filters-buttonCenter .cbp-filter-item:hover .cbp-filter-counter:after {
  display: block; }

.cbp-l-filters-buttonCenter .cbp-filter-item:hover .cbp-filter-counter {
  bottom: 44px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1; }

.cbp-l-filters-dropdown {
  margin-bottom: 40px;
  height: 38px;
  position: relative;
  z-index: 5; }

.cbp-l-filters-dropdownWrap {
  width: 200px;
  position: absolute;
  right: 0;
  background: #4d4c4d; }

.cbp-l-filters-dropdownHeader {
  font: 400 12px/38px "Open Sans", sans-serif;
  margin: 0 17px;
  color: #FFF;
  cursor: default;
  position: relative; }

.cbp-l-filters-dropdownHeader:after {
  border-color: #FFFFFF transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  margin-top: -1px; }

.cbp-l-filters-dropdownWrap.cbp-l-filters-dropdownWrap-open .cbp-l-filters-dropdownHeader:after {
  border-width: 0 5px 5px; }

.cbp-l-filters-dropdownList {
  display: none;
  list-style: none outside none;
  margin: 0;
  padding: 0; }

.cbp-l-filters-dropdownList > li {
  margin: 0;
  list-style: none; }

.cbp-l-filters-dropdownWrap.cbp-l-filters-dropdownWrap-open .cbp-l-filters-dropdownList {
  display: block;
  margin: 0; }

.cbp-l-filters-dropdownList .cbp-filter-item {
  background: transparent;
  color: #b3b3b3;
  width: 100%;
  text-align: left;
  font: 400 12px/40px "Open Sans", sans-serif;
  margin: 0;
  padding: 0 17px;
  cursor: pointer;
  border: none;
  border-top: 1px solid #595959; }

.cbp-l-filters-dropdownList .cbp-filter-item:hover {
  color: #e6e6e6; }

.cbp-l-filters-dropdownList .cbp-filter-item-active {
  color: #fff;
  cursor: default; }

.cbp-l-filters-dropdownWrap .cbp-filter-counter {
  display: inline; }

.cbp-l-filters-dropdown-floated {
  float: right;
  margin-top: -2px;
  margin-left: 20px;
  width: 200px; }

.cbp-l-filters-list {
  margin-bottom: 30px;
  /* clearfix */
  content: "";
  display: table;
  clear: both; }

.cbp-l-filters-list .cbp-filter-item {
  background-color: transparent;
  color: #585252;
  cursor: pointer;
  font: 400 12px/35px "Open Sans", sans-serif;
  padding: 0 18px;
  position: relative;
  overflow: visible;
  margin: 0 0 10px;
  float: left;
  border: 1px solid #3288C4;
  border-right-width: 0;
  -webkit-transition: left .3s ease-in-out;
  transition: left .3s ease-in-out; }

.cbp-l-filters-list .cbp-filter-item:hover {
  color: #000; }

.cbp-l-filters-list .cbp-filter-item.cbp-filter-item-active {
  cursor: default;
  color: #FFFFFF;
  background-color: #3288C4; }

.cbp-l-filters-list-first {
  border-radius: 6px 0 0 6px; }

.cbp-l-filters-list-last {
  border-radius: 0 6px 6px 0;
  border-right-width: 1px !important; }

.cbp-l-filters-list .cbp-filter-counter {
  display: inline; }

@media only screen and (max-width: 600px) {
  .cbp-l-filters-list .cbp-filter-item {
    margin-right: 5px;
    border-radius: 6px;
    border-right-width: 1px; } }

.cbp-l-filters-work {
  margin-bottom: 30px;
  text-align: center; }

.cbp-l-filters-work .cbp-filter-item {
  background-color: #FFFFFF;
  color: #888;
  cursor: pointer;
  font: 600 11px/37px "Open Sans", sans-serif;
  margin: 0 5px 10px 0;
  overflow: visible;
  padding: 0 16px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.cbp-l-filters-work .cbp-filter-item:hover {
  color: #fff;
  background: #607D8B; }

.cbp-l-filters-work .cbp-filter-item.cbp-filter-item-active {
  background: #607D8B;
  color: #fff;
  cursor: default; }

.cbp-l-filters-work .cbp-filter-counter {
  font: 600 11px/37px "Open Sans", sans-serif;
  text-align: center;
  display: inline-block;
  margin-left: 8px; }

.cbp-l-filters-work .cbp-filter-counter:before {
  content: '('; }

.cbp-l-filters-work .cbp-filter-counter:after {
  content: ')'; }

.cbp-l-filters-big {
  margin-bottom: 30px;
  text-align: center; }

.cbp-l-filters-big .cbp-filter-item {
  color: #444;
  cursor: pointer;
  font: 400 15px/22px "Roboto", sans-serif;
  margin: 0 15px 10px 0;
  padding: 10px 23px;
  position: relative;
  display: inline-block;
  border: 1px solid transparent;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.cbp-l-filters-big .cbp-filter-item:hover {
  color: #888; }

.cbp-l-filters-big .cbp-filter-item.cbp-filter-item-active {
  border-color: #d5d5d5;
  cursor: default;
  color: #444; }

.cbp-l-filters-text {
  margin-bottom: 30px;
  text-align: center;
  font: 400 12px/21px "Lato", sans-serif;
  color: #DADADA;
  padding: 0 15px; }

.cbp-l-filters-text .cbp-filter-item {
  color: #949494;
  cursor: pointer;
  font: 400 13px/21px "Lato", sans-serif;
  padding: 0 12px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
  overflow: visible;
  margin: 0 0 10px;
  display: inline-block; }

.cbp-l-filters-text .cbp-filter-item:hover {
  color: #2D2C2C; }

.cbp-l-filters-text .cbp-filter-item.cbp-filter-item-active {
  color: #2D2C2C;
  cursor: default; }

.cbp-l-filters-text .cbp-filter-counter {
  background: none repeat scroll 0 0 #626161;
  border-radius: 3px;
  color: #FFFFFF;
  font: 400 11px/16px "Lato", sans-serif;
  margin: 0 auto;
  padding: 4px 0;
  text-align: center;
  width: 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: all .25s ease;
  transition: all .25s ease; }

.cbp-l-filters-text .cbp-filter-counter:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #626161;
  display: none; }

.cbp-l-filters-text .cbp-filter-item:hover .cbp-filter-counter:after {
  display: block; }

.cbp-l-filters-text .cbp-filter-item:hover .cbp-filter-counter {
  bottom: 30px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1; }

.cbp-l-filters-text-sort {
  display: inline-block;
  font: 400 13px/21px "Lato", sans-serif;
  color: #949494;
  margin-right: 15px; }

.cbp-l-filters-underline {
  margin-bottom: 30px; }

.cbp-l-filters-underline .cbp-filter-item {
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font: 600 14px/21px "Open Sans", sans-serif;
  padding: 8px 10px;
  position: relative;
  overflow: visible;
  margin: 0 20px 10px 0;
  display: inline-block;
  color: #787878;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

.cbp-l-filters-underline .cbp-filter-item:hover {
  color: #111; }

.cbp-l-filters-underline .cbp-filter-item.cbp-filter-item-active {
  border-bottom-color: #666;
  color: #444;
  cursor: default; }

.cbp-l-filters-underline .cbp-filter-counter {
  display: inline; }

.cbp-animation-quicksand {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-quicksand .cbp-item {
  -webkit-transition: -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out; }

.cbp-animation-quicksand .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-quicksand .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-quicksand .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: quicksand-off .6s ease-out both;
  animation: quicksand-off .6s ease-out both; }

.cbp-animation-quicksand .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: quicksand-on .6s ease-out both;
  animation: quicksand-on .6s ease-out both; }

/* in */
@-webkit-keyframes quicksand-off {
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0); } }

@keyframes quicksand-off {
  100% {
    opacity: 0;
    transform: scale3d(0, 0, 0); } }

/* out */
@-webkit-keyframes quicksand-on {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0); } }

@keyframes quicksand-on {
  0% {
    opacity: 0;
    transform: scale3d(0, 0, 0); } }

.cbp-animation-fadeOut,
.cbp-animation-boxShadow {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-fadeOut .cbp-item,
.cbp-animation-boxShadow .cbp-item {
  -webkit-transition: -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out; }

.cbp-animation-fadeOut .cbp-item,
.cbp-animation-boxShadow .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-fadeOut .cbp-item-wrapper,
.cbp-animation-boxShadow .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-fadeOut .cbp-item-on2off .cbp-item-wrapper,
.cbp-animation-boxShadow .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: fadeOut-off .6s ease-in-out both;
  animation: fadeOut-off .6s ease-in-out both; }

.cbp-animation-fadeOut .cbp-item-off2on .cbp-item-wrapper,
.cbp-animation-boxShadow .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: fadeOut-on .6s ease-in-out both;
  animation: fadeOut-on .6s ease-in-out both; }

/* in */
@-webkit-keyframes fadeOut-off {
  0% {
    opacity: 1; }
  80%, 100% {
    opacity: 0; } }

@keyframes fadeOut-off {
  0% {
    opacity: 1; }
  80%, 100% {
    opacity: 0; } }

/* out */
@-webkit-keyframes fadeOut-on {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeOut-on {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.cbp-animation-flipOut {
  -webkit-transition: height .7s ease-in-out;
  transition: height .7s ease-in-out;
  will-change: height; }

.cbp-animation-flipOut .cbp-item {
  -webkit-transition: -webkit-transform .7s ease-in-out;
  transition: transform .7s ease-in-out; }

.cbp-animation-flipOut .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-flipOut .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-flipOut .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: flipOut-out .7s both ease-in;
  animation: flipOut-out .7s both ease-in; }

.cbp-animation-flipOut .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: flipOut-in .7s ease-out both;
  animation: flipOut-in .7s ease-out both; }

/* out */
@-webkit-keyframes flipOut-out {
  50%, 100% {
    -webkit-transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2; } }

@keyframes flipOut-out {
  50%, 100% {
    transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2; } }

/* in */
@-webkit-keyframes flipOut-in {
  0%, 50% {
    -webkit-transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2; } }

@keyframes flipOut-in {
  0%, 50% {
    transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2; } }

.cbp-animation-flipBottom {
  -webkit-transition: height .7s ease-in-out;
  transition: height .7s ease-in-out;
  will-change: height; }

.cbp-animation-flipBottom .cbp-item {
  -webkit-transition: -webkit-transform .7s ease-in-out;
  transition: transform .7s ease-in-out; }

.cbp-animation-flipBottom .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-flipBottom .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-flipBottom .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: flipBottom-out .7s both ease-in;
  animation: flipBottom-out .7s both ease-in; }

.cbp-animation-flipBottom .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: flipBottom-in .7s ease-out both;
  animation: flipBottom-in .7s ease-out both; }

/* out */
@-webkit-keyframes flipBottom-out {
  50%, 100% {
    -webkit-transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2; } }

@keyframes flipBottom-out {
  50%, 100% {
    transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2; } }

/* in */
@-webkit-keyframes flipBottom-in {
  0%, 50% {
    -webkit-transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2; } }

@keyframes flipBottom-in {
  0%, 50% {
    transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2; } }

.cbp-animation-scaleSides {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-scaleSides .cbp-item {
  -webkit-transition: -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out; }

.cbp-animation-scaleSides .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-scaleSides .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-scaleSides .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: scaleSides-out .9s ease both;
  animation: scaleSides-out .9s ease both; }

.cbp-animation-scaleSides .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: scaleSides-in .9s ease both;
  animation: scaleSides-in .9s ease both; }

/* out */
@-webkit-keyframes scaleSides-out {
  50%, 100% {
    -webkit-transform: scale(0.6);
    opacity: 0; } }

@keyframes scaleSides-out {
  50%, 100% {
    transform: scale(0.6);
    opacity: 0; } }

/* in */
@-webkit-keyframes scaleSides-in {
  0%, 50% {
    -webkit-transform: scale(0.6);
    opacity: 0; } }

@keyframes scaleSides-in {
  0%, 50% {
    transform: scale(0.6);
    opacity: 0; } }

.cbp-animation-skew {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-skew .cbp-item {
  -webkit-transition: -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out; }

.cbp-animation-skew .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-skew .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-skew .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: skew-off .6s ease-out both;
  animation: skew-off .6s ease-out both; }

.cbp-animation-skew .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: skew-on .6s ease-out both;
  animation: skew-on .6s ease-out both; }

/* in */
@-webkit-keyframes skew-off {
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) skew(20deg, 0); } }

@keyframes skew-off {
  100% {
    opacity: 0;
    transform: scale3d(0, 0, 0) skew(20deg, 0); } }

/* out */
@-webkit-keyframes skew-on {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) skew(0, 20deg); } }

@keyframes skew-on {
  0% {
    opacity: 0;
    transform: scale3d(0, 0, 0) skew(0, 20deg); } }

.cbp-animation-fadeOutTop {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-fadeOutTop .cbp-wrapper-outer {
  overflow: visible; }

.cbp-animation-fadeOutTop .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  overflow: visible; }

.cbp-animation-fadeOutTop .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-fadeOutTop .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: fadeOutTop-out .6s both ease-in-out;
  animation: fadeOutTop-out .6s both ease-in-out; }

.cbp-animation-fadeOutTop .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: fadeOutTop-in .6s both ease-in-out;
  animation: fadeOutTop-in .6s both ease-in-out; }

/* out */
@-webkit-keyframes fadeOutTop-out {
  0% {
    -webkit-transform: translateY(0);
    opacity: 1; }
  50%, 100% {
    -webkit-transform: translateY(-30px);
    opacity: 0; } }

@keyframes fadeOutTop-out {
  0% {
    transform: translateY(0);
    opacity: 1; }
  50%, 100% {
    transform: translateY(-30px);
    opacity: 0; } }

/* out */
@-webkit-keyframes fadeOutTop-in {
  0%, 50% {
    -webkit-transform: translateY(-30px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1; } }

@keyframes fadeOutTop-in {
  0%, 50% {
    transform: translateY(-30px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.cbp-animation-slideLeft {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-slideLeft .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-slideLeft .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-slideLeft .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: slideLeft-out .8s both ease-in-out;
  animation: slideLeft-out .8s both ease-in-out; }

.cbp-animation-slideLeft .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: slideLeft-in .8s both ease-in-out;
  animation: slideLeft-in .8s both ease-in-out; }

/* out */
@-webkit-keyframes slideLeft-out {
  0% {
    opacity: 1;
    transform: scale(1); }
  25% {
    opacity: .75;
    -webkit-transform: scale(0.8); }
  75% {
    opacity: .75;
    -webkit-transform: scale(0.8) translateX(-200%); }
  100% {
    opacity: .75;
    -webkit-transform: scale(0.8) translateX(-200%); } }

@keyframes slideLeft-out {
  0% {
    opacity: 1;
    transform: scale(1); }
  25% {
    opacity: .75;
    transform: scale(0.8); }
  75% {
    opacity: .75;
    transform: scale(0.8) translateX(-200%); }
  100% {
    opacity: .75;
    transform: scale(0.8) translateX(-200%); } }

/* in */
@-webkit-keyframes slideLeft-in {
  0%, 25% {
    opacity: .75;
    -webkit-transform: scale(0.8) translateX(200%); }
  75% {
    opacity: .75;
    -webkit-transform: scale(0.8); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0); } }

@keyframes slideLeft-in {
  0%, 25% {
    opacity: .75;
    transform: scale(0.8) translateX(200%); }
  75% {
    opacity: .75;
    transform: scale(0.8); }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0); } }

.cbp-animation-sequentially {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-sequentially .cbp-wrapper-outer {
  overflow: visible; }

.cbp-animation-sequentially .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  overflow: visible; }

.cbp-animation-sequentially .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-sequentially .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: fadeOutTop-out .6s both ease;
  animation: fadeOutTop-out .6s both ease; }

.cbp-animation-sequentially .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: fadeOutTop-in .6s both ease-out;
  animation: fadeOutTop-in .6s both ease-out; }

.cbp-animation-3dflip {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-3dflip .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-3dflip .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-3dflip .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-animation: flip-out 0.6s both ease-in-out;
  animation: flip-out 0.6s both ease-in-out; }

.cbp-animation-3dflip .cbp-wrapper .cbp-item-wrapper {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-animation: flip-in 0.6s both ease-in-out;
  animation: flip-in 0.6s both ease-in-out; }

@-webkit-keyframes flip-out {
  100% {
    opacity: 0;
    -webkit-transform: rotateY(90deg); } }

@keyframes flip-out {
  100% {
    opacity: 0;
    transform: rotateY(90deg); } }

@-webkit-keyframes flip-in {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg); }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg); } }

@keyframes flip-in {
  0% {
    opacity: 0;
    transform: rotateY(-90deg); }
  100% {
    opacity: 1;
    transform: rotateY(0deg); } }

.cbp-animation-flipOutDelay {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-flipOutDelay .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-flipOutDelay .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-flipOutDelay .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: flipOut-out 1s both ease-in;
  animation: flipOut-out 1s both ease-in; }

.cbp-animation-flipOutDelay .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: flipOut-in 1s both ease-out;
  animation: flipOut-in 1s both ease-out; }

.cbp-animation-slideDelay {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-slideDelay .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-slideDelay .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-slideDelay .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: slideDelay-out 0.5s both ease-in-out;
  animation: slideDelay-out 0.5s both ease-in-out; }

.cbp-animation-slideDelay .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: slideDelay-in 0.5s both ease-in-out;
  animation: slideDelay-in 0.5s both ease-in-out; }

/* out */
@-webkit-keyframes slideDelay-out {
  100% {
    -webkit-transform: translateX(-100%); } }

@keyframes slideDelay-out {
  100% {
    transform: translateX(-100%); } }

@-webkit-keyframes slideDelay-in {
  0% {
    -webkit-transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(0); } }

@keyframes slideDelay-in {
  0% {
    transform: translateX(100%); }
  100% {
    transform: translateX(0); } }

.cbp-animation-rotateSides {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-rotateSides .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-rotateSides .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-rotateSides .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-transform-origin: -50% 50%;
  -webkit-animation: rotateSides-out .5s both ease-in;
  transform-origin: -50% 50%;
  animation: rotateSides-out .5s both ease-in; }

.cbp-animation-rotateSides .cbp-wrapper .cbp-item-wrapper {
  -webkit-transform-origin: 150% 50%;
  -webkit-animation: rotateSides-in .6s both ease-out;
  transform-origin: 150% 50%;
  animation: rotateSides-in .6s both ease-out; }

/* out */
@-webkit-keyframes rotateSides-out {
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-500px) rotateY(90deg); } }

@keyframes rotateSides-out {
  100% {
    opacity: 0;
    transform: translateZ(-500px) rotateY(90deg); } }

/* in */
@-webkit-keyframes rotateSides-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-500px) rotateY(-90deg); }
  40% {
    opacity: 0;
    -webkit-transform: translateZ(-500px) rotateY(-90deg); } }

@keyframes rotateSides-in {
  0% {
    opacity: 0;
    transform: translateZ(-500px) rotateY(-90deg); }
  40% {
    opacity: 0;
    transform: translateZ(-500px) rotateY(-90deg); } }

.cbp-animation-foldLeft {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-foldLeft .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-foldLeft .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-foldLeft .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-animation: foldLeft-out .7s both ease;
  animation: foldLeft-out .7s both ease; }

.cbp-animation-foldLeft .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: foldLeft-in .7s both ease;
  animation: foldLeft-in .7s ease both; }

/* out */
@-webkit-keyframes foldLeft-out {
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotateY(-90deg); } }

@keyframes foldLeft-out {
  100% {
    opacity: 0;
    transform: translateX(-100%) rotateY(-90deg); } }

/* in */
@-webkit-keyframes foldLeft-in {
  0% {
    opacity: 0.3;
    -webkit-transform: translateX(100%); } }

@keyframes foldLeft-in {
  0% {
    opacity: 0.3;
    transform: translateX(100%); } }

.cbp-animation-unfold {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-unfold .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-unfold .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-unfold .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: unfold-out .8s ease both;
  animation: unfold-out .8s ease both; }

.cbp-animation-unfold .cbp-wrapper .cbp-item-wrapper {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: unfold-in .8s both ease;
  transform-origin: 0% 50%;
  animation: unfold-in .8s both ease; }

/* out */
@-webkit-keyframes unfold-out {
  90% {
    opacity: 0.3; }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%); } }

@keyframes unfold-out {
  90% {
    opacity: 0.3; }
  100% {
    opacity: 0;
    transform: translateX(-100%); } }

/* in */
@-webkit-keyframes unfold-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotateY(90deg); } }

@keyframes unfold-in {
  0% {
    opacity: 0;
    transform: translateX(100%) rotateY(90deg); } }

.cbp-animation-scaleDown {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-scaleDown .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-scaleDown .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-scaleDown .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: scaleDown-out .7s ease both;
  animation: scaleDown-out .7s ease both; }

.cbp-animation-scaleDown .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: scaleDown-in .6s ease both;
  animation: scaleDown-in .6s ease both; }

/* out */
@-webkit-keyframes scaleDown-out {
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8); } }

@keyframes scaleDown-out {
  100% {
    opacity: 0;
    transform: scale(0.8); } }

/* in */
@-webkit-keyframes scaleDown-in {
  0% {
    -webkit-transform: translateX(100%); } }

@keyframes scaleDown-in {
  0% {
    transform: translateX(100%); } }

.cbp-animation-frontRow {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-frontRow .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-frontRow .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-frontRow .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: frontRow-out .7s both ease;
  animation: frontRow-out .7s both ease; }

.cbp-animation-frontRow .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: frontRow-in .6s both ease;
  animation: frontRow-in .6s both ease; }

/* out */
@-webkit-keyframes frontRow-out {
  100% {
    -webkit-transform: translateX(-60%) scale(0.8);
    opacity: 0; } }

@keyframes frontRow-out {
  100% {
    transform: translateX(-60%) scale(0.8);
    opacity: 0; } }

/* in */
@-webkit-keyframes frontRow-in {
  0% {
    -webkit-transform: translateX(100%) scale(0.8); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%) scale(1); } }

@keyframes frontRow-in {
  0% {
    transform: translateX(100%) scale(0.8); }
  100% {
    opacity: 1;
    transform: translateX(0%) scale(1); } }

.cbp-animation-rotateRoom {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-rotateRoom .cbp-item {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-animation-rotateRoom .cbp-item-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.cbp-animation-rotateRoom .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-animation: rotateRoom-out .8s both ease;
  animation: rotateRoom-out .8s both ease; }

.cbp-animation-rotateRoom .cbp-wrapper .cbp-item-wrapper {
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-animation: rotateRoom-in .8s both ease;
  animation: rotateRoom-in .8s both ease; }

/* out */
@-webkit-keyframes rotateRoom-out {
  90% {
    opacity: .3; }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotateY(90deg); } }

@keyframes rotateRoom-out {
  90% {
    opacity: .3; }
  100% {
    opacity: 0;
    transform: translateX(-100%) rotateY(90deg); } }

/* in */
@-webkit-keyframes rotateRoom-in {
  0% {
    opacity: .3;
    -webkit-transform: translateX(100%) rotateY(-90deg); } }

@keyframes rotateRoom-in {
  0% {
    opacity: .3;
    transform: translateX(100%) rotateY(-90deg); } }

.cbp-animation-bounceBottom {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-bounceBottom .cbp-wrapper-helper {
  -webkit-animation: bounceBottom-out .6s both ease-in-out;
  animation: bounceBottom-out .6s both ease-in-out; }

.cbp-animation-bounceBottom .cbp-wrapper {
  -webkit-animation: bounceBottom-in .6s both ease-in-out;
  animation: bounceBottom-in .6s both ease-in-out; }

/* out */
@-webkit-keyframes bounceBottom-out {
  100% {
    -webkit-transform: translateY(100%);
    opacity: 0; } }

@keyframes bounceBottom-out {
  100% {
    transform: translateY(100%);
    opacity: 0; } }

/* in */
@-webkit-keyframes bounceBottom-in {
  0% {
    -webkit-transform: translateY(100%);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1; } }

@keyframes bounceBottom-in {
  0% {
    transform: translateY(100%);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.cbp-animation-bounceLeft {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-bounceLeft .cbp-wrapper-helper {
  -webkit-animation: bounceLeft-out .6s both ease-in-out;
  animation: bounceLeft-out .6s both ease-in-out; }

.cbp-animation-bounceLeft .cbp-wrapper {
  -webkit-animation: bounceLeft-in .6s both ease-in-out;
  animation: bounceLeft-in .6s both ease-in-out; }

/* out */
@-webkit-keyframes bounceLeft-out {
  100% {
    -webkit-transform: translateX(-100%);
    opacity: 0; } }

@keyframes bounceLeft-out {
  100% {
    transform: translateX(-100%);
    opacity: 0; } }

/* in */
@-webkit-keyframes bounceLeft-in {
  0% {
    -webkit-transform: translateX(-100%);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    opacity: 1; } }

@keyframes bounceLeft-in {
  0% {
    transform: translateX(-100%);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

.cbp-animation-bounceTop {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-bounceTop .cbp-wrapper-helper {
  -webkit-animation: bounceTop-out .6s both ease-in-out;
  animation: bounceTop-out .6s both ease-in-out; }

.cbp-animation-bounceTop .cbp-wrapper {
  -webkit-animation: bounceTop-in .6s both ease-in-out;
  animation: bounceTop-in .6s both ease-in-out; }

/* out */
@-webkit-keyframes bounceTop-out {
  100% {
    -webkit-transform: translateY(-100%);
    opacity: 0; } }

@keyframes bounceTop-out {
  100% {
    transform: translateY(-100%);
    opacity: 0; } }

/* in */
@-webkit-keyframes bounceTop-in {
  0% {
    -webkit-transform: translateY(-100%);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1; } }

@keyframes bounceTop-in {
  0% {
    transform: translateY(-100%);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.cbp-animation-moveLeft {
  -webkit-transition: height .6s ease-in-out;
  transition: height .6s ease-in-out;
  will-change: height; }

.cbp-animation-moveLeft .cbp-wrapper-helper {
  -webkit-animation: moveLeft-out .6s both ease-in-out;
  animation: moveLeft-out .6s both ease-in-out; }

.cbp-animation-moveLeft .cbp-wrapper {
  -webkit-animation: moveLeft-in .6s both ease-in-out;
  animation: moveLeft-in .6s both ease-in-out; }

/* out */
@-webkit-keyframes moveLeft-out {
  100% {
    -webkit-transform: translateX(-100%);
    opacity: 0; } }

@keyframes moveLeft-out {
  100% {
    transform: translateX(-100%);
    opacity: 0; } }

/* in */
@-webkit-keyframes moveLeft-in {
  0% {
    -webkit-transform: translateX(100%);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    opacity: 1; } }

@keyframes moveLeft-in {
  0% {
    transform: translateX(100%);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

.cbp-displayType-bottomToTop {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.cbp-displayType-bottomToTop .cbp-item {
  -webkit-animation: fadeInBottomToTop .3s both ease-in;
  animation: fadeInBottomToTop .3s both ease-in; }

@-webkit-keyframes fadeInBottomToTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@keyframes fadeInBottomToTop {
  0% {
    opacity: 0;
    transform: translateY(50px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.cbp-displayType-fadeIn {
  -webkit-animation: fadeIn .5s both ease-in;
  animation: fadeIn .5s both ease-in; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.cbp-displayType-fadeInToTop {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-animation: fadeInToTop .5s both ease-in;
  animation: fadeInToTop .5s both ease-in; }

@-webkit-keyframes fadeInToTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@keyframes fadeInToTop {
  0% {
    opacity: 0;
    transform: translateY(30px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.cbp-displayType-sequentially .cbp-item {
  -webkit-animation: fadeIn .5s both ease-in;
  animation: fadeIn .5s both ease-in; }

.cbp-lightbox img {
  display: block;
  border: 0;
  width: 100%;
  height: auto; }

.cbp-popup-ie8bg {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; }

.cbp-popup-wrap {
  height: 100%;
  text-align: center;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  display: none;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  z-index: 9990;
  padding: 0 10px; }

.cbp-popup-wrap video {
  outline: 0 none; }

.cbp-popup-lightbox {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center; }

.cbp-popup-singlePage {
  background: white;
  padding: 0; }

.cbp-popup-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.cbp-popup-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  max-width: 100%; }

.cbp-popup-singlePage .cbp-popup-content {
  position: relative;
  z-index: 1;
  margin-top: 145px;
  max-width: 1024px;
  vertical-align: top;
  width: 94%; }

.cbp-popup-singlePage .cbp-popup-content-basic {
  position: relative;
  z-index: 1;
  margin-top: 104px;
  vertical-align: top;
  width: 100%;
  display: inline-block;
  text-align: left; }

.cbp-popup-lightbox-figure {
  position: relative; }

.cbp-popup-lightbox-bottom {
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  margin-top: 3px; }

.cbp-popup-lightbox-title {
  padding-right: 70px;
  font: 400 12px/18px "Open Sans", sans-serif;
  color: #eee; }

.cbp-popup-lightbox-counter {
  position: absolute;
  top: 0;
  right: 0;
  font: 400 12px/18px "Open Sans", sans-serif;
  color: #eee; }

.cbp-popup-lightbox-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px 0 40px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }

.cbp-popup-lightbox-img[data-action] {
  cursor: pointer; }

.cbp-popup-lightbox-isIframe .cbp-popup-content {
  width: 75%; }

@media only screen and (max-width: 768px) {
  .cbp-popup-lightbox-isIframe .cbp-popup-content {
    width: 95%; } }

.cbp-popup-lightbox-isIframe .cbp-lightbox-bottom {
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  margin-top: 3px; }

.cbp-popup-lightbox-iframe {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  /* 16/9 ratio */
  background: #000; }

.cbp-popup-lightbox-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }

.cbp-popup-lightbox-iframe audio {
  margin-top: 27%; }

/* NAVIGATION BUTTONS */
.cbp-popup-singlePage .cbp-popup-navigation-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  height: 104px;
  background-color: #3D4750; }

.cbp-popup-singlePage .cbp-popup-navigation {
  position: relative;
  width: 100%;
  height: 100%; }

.cbp-popup-singlePage-sticky .cbp-popup-navigation-wrap {
  position: fixed;
  top: 0 !important; }

.cbp-popup-singlePage-counter {
  color: #fff;
  position: absolute;
  margin: auto;
  right: 40px;
  top: 0;
  bottom: 0;
  font: 400 13px/30px "Open Sans", sans-serif;
  height: 30px; }

@media only screen and (max-width: 768px) {
  .cbp-popup-singlePage-counter {
    right: 3%; } }

.cbp-popup-next,
.cbp-popup-prev,
.cbp-popup-close {
  padding: 0;
  border: medium none;
  position: absolute;
  cursor: pointer;
  outline: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.cbp-popup-lightbox .cbp-popup-prev,
.cbp-popup-lightbox .cbp-popup-next,
.cbp-popup-lightbox .cbp-popup-close {
  visibility: hidden; }

/* NAVOGATION BUTTONS */
.cbp-popup-ready.cbp-popup-lightbox .cbp-popup-next,
.cbp-popup-ready.cbp-popup-lightbox .cbp-popup-prev,
.cbp-popup-ready.cbp-popup-lightbox .cbp-popup-close {
  visibility: visible; }

/* PREVIOUS BUTTON LIGHBOX */
.cbp-popup-lightbox .cbp-popup-prev {
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat scroll 0 0 transparent;
  width: 44px;
  height: 44px;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto; }

.cbp-popup-lightbox .cbp-popup-prev:hover {
  background-position: 0 -46px; }

/* PREVIOUS BUTTON SINGLEPAGE */
.cbp-popup-singlePage .cbp-popup-prev {
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat scroll 0 -92px transparent;
  width: 44px;
  height: 44px;
  margin: auto;
  top: 0;
  right: 108px;
  bottom: 0;
  left: 0; }

.cbp-popup-singlePage .cbp-popup-prev:hover {
  background-position: 0 -138px; }

/* NEXT BUTTON LIGHTBOX */
.cbp-popup-lightbox .cbp-popup-next {
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat scroll -46px 0 transparent;
  width: 44px;
  height: 44px;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto; }

.cbp-popup-lightbox .cbp-popup-next:hover {
  background-position: -46px -46px; }

/* NEXT BUTTON SINGLEPAGE */
.cbp-popup-singlePage .cbp-popup-next {
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat scroll -46px -92px transparent;
  width: 44px;
  height: 44px;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 108px; }

.cbp-popup-singlePage .cbp-popup-next:hover {
  background-position: -46px -138px; }

/* CLOSE BUTTON LIGTHBOX */
.cbp-popup-lightbox .cbp-popup-close {
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat scroll -92px 0 transparent;
  height: 40px;
  width: 40px;
  right: 20px;
  top: 20px; }

.cbp-popup-lightbox .cbp-popup-close:hover {
  background-position: -92px -46px; }

/* CLOSE BUTTON SINGLEPAGE */
.cbp-popup-singlePage .cbp-popup-close {
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat scroll -92px -92px transparent;
  height: 44px;
  width: 44px;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.cbp-popup-singlePage .cbp-popup-close:hover {
  background-position: -92px -138px; }

.cbp-popup-singlePage .cbp-popup-ie8bg {
  background-color: #fff; }

@media only screen and (max-width: 360px), (max-height: 600px) {
  .cbp-popup-next,
  .cbp-popup-prev,
  .cbp-popup-close {
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8); }
  .cbp-popup-lightbox .cbp-popup-close {
    right: 10px;
    top: 10px; }
  .cbp-popup-lightbox .cbp-popup-next {
    right: 10px; }
  .cbp-popup-lightbox .cbp-popup-prev {
    left: 10px; }
  .cbp-popup-singlePage .cbp-popup-navigation-wrap {
    height: 84px; }
  .cbp-popup-singlePage .cbp-popup-content {
    margin-top: 120px; } }

.cbp-popup-loadingBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.cbp-popup-lightbox .cbp-popup-loadingBox:after {
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  border-right: 3px solid rgba(255, 255, 255, 0.3);
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid rgba(255, 255, 255, 0.85); }

.cbp-popup-ready .cbp-popup-loadingBox {
  visibility: hidden;
  display: none; }

.cbp-popup-loading .cbp-popup-loadingBox {
  visibility: visible;
  display: block; }

.cbp-popup-transitionend {
  overflow-y: scroll; }

.cbp-popup-singlePage {
  left: 100%;
  -webkit-transition: left .6s ease-in-out;
  transition: left .6s ease-in-out; }

.cbp-popup-singlePage.cbp-popup-loading .cbp-popup-content {
  opacity: 0; }

.cbp-popup-singlePage-open {
  left: 0; }

.cbp-popup-singlePage.cbp-popup-singlePage-fade {
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out; }

.cbp-popup-singlePage-open.cbp-popup-singlePage-fade {
  opacity: 1; }

.cbp-popup-singlePage.cbp-popup-singlePage-right {
  left: -100%;
  -webkit-transition: left .6s ease-in-out;
  transition: left .6s ease-in-out; }

.cbp-popup-singlePage-open.cbp-popup-singlePage-right {
  left: 0; }

.cbp-l-project-title {
  color: #454444;
  font: 600 42px/46px "Open Sans", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase; }

.cbp-l-project-subtitle {
  color: #787878;
  font: 400 14px/21px "Open Sans", sans-serif;
  margin: 0 auto 50px;
  max-width: 500px;
  text-align: center; }

.cbp-popup-singlePage .cbp-popup-content .cbp-l-project-img {
  display: block;
  margin: 0 auto;
  max-width: 100%; }

.cbp-l-project-container {
  overflow: hidden;
  margin: 40px auto 0;
  clear: both; }

.cbp-l-project-desc {
  float: left;
  width: 62%; }

.cbp-l-project-details {
  float: right;
  width: 38%;
  padding-left: 60px;
  margin-bottom: 15px; }

@media only screen and (max-width: 768px) {
  .cbp-l-project-title {
    font-size: 30px;
    line-height: 34px; }
  .cbp-l-project-desc {
    width: 100%; }
  .cbp-l-project-details {
    width: 100%;
    margin-top: 20px;
    padding-left: 0; } }

.cbp-l-project-desc-title {
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 22px;
  color: #444; }

.cbp-l-project-desc-title span,
.cbp-l-project-details-title span {
  border-bottom: 1px solid #747474;
  display: inline-block;
  margin: 0 0 -1px 0;
  font: 400 16px/36px "Open Sans", sans-serif;
  padding: 0 5px 0 0; }

.cbp-l-project-desc-text {
  font: 400 13px/20px "Open Sans", sans-serif;
  color: #555;
  margin-bottom: 20px; }

.cbp-l-project-details-title {
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 19px;
  color: #444; }

.cbp-l-project-details-list {
  margin: 0;
  padding: 0;
  list-style: none; }

.cbp-l-project-details-list > li,
.cbp-l-project-details-list > div {
  border-bottom: 1px dotted #DFDFDF;
  padding: inherit;
  color: #666;
  font: 400 12px/30px "Open Sans", sans-serif; }

.cbp-l-project-details-list > li:last-child,
.cbp-l-project-details-list > div:last-child {
  border: none; }

.cbp-l-project-details-list strong {
  display: inline-block;
  color: #696969;
  font-weight: 600;
  min-width: 100px; }

.cbp-l-project-details-visit {
  color: #FFFFFF;
  float: right;
  clear: both;
  text-decoration: none;
  font: 400 11px/18px "Open Sans", sans-serif;
  margin-top: 25px;
  background-color: #62B57B;
  padding: 8px 19px;
  text-transform: uppercase;
  letter-spacing: .5px; }

.cbp-l-project-details-visit:hover {
  opacity: 0.9;
  color: #fff; }

.cbp-l-project-related-wrap {
  font-size: 0;
  margin: 0;
  padding: 0; }

.cbp-l-project-related-item {
  margin-left: 5%;
  max-width: 30%;
  float: left; }

.cbp-l-project-related-item:first-child {
  margin-left: 0; }

.cbp-l-project-related-title {
  font: 700 14px/18px "Open Sans", sans-serif;
  color: #474747;
  margin-top: 20px; }

.cbp-l-project-related-link {
  text-decoration: none; }

.cbp-l-project-related-link:hover {
  opacity: 0.9; }

.cbp-l-member-img {
  float: left;
  width: 40%;
  margin-top: 20px; }

.cbp-l-member-img img {
  border: 1px solid #e2e2e2;
  width: auto;
  max-width: 100%;
  height: auto;
  display: inline-block;
  border: 0; }

.cbp-l-member-info {
  margin-top: 20px;
  padding-left: 25px;
  float: left;
  width: 60%; }

@media only screen and (max-width: 768px) {
  .cbp-l-member-img {
    width: 100%;
    text-align: center; }
  .cbp-l-member-info {
    width: 100%;
    padding-left: 0; } }

.cbp-l-member-name {
  font: 400 28px/28px "Open Sans", sans-serif;
  color: #474747; }

.cbp-l-member-position {
  font: 400 13px/21px "Open Sans", sans-serif;
  color: #888;
  margin-top: 6px; }

.cbp-l-member-desc {
  font: 400 12px/18px "Open Sans", sans-serif;
  margin-top: 25px;
  color: #474747; }

/* SINGLE PAGE INLINE */
.cbp-popup-singlePageInline-open {
  -webkit-transition: height .5s ease 0s !important;
  transition: height .5s ease 0s !important; }

.cbp-popup-singlePageInline-open .cbp-item {
  -webkit-transition: -webkit-transform .5s ease 0s !important;
  transition: transform .5s ease 0s !important; }

.cbp-popup-singlePageInline-close .cbp-popup-singlePageInline:after {
  display: none;
  visibility: hidden; }

.cbp-popup-singlePageInline-close .cbp-popup-singlePageInline .cbp-popup-content,
.cbp-popup-singlePageInline-close .cbp-popup-singlePageInline .cbp-popup-navigation {
  -webkit-transition-delay: 0;
  transition-delay: 0; }

.cbp-popup-singlePageInline {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  /* CLOSE BUTTON singlePageInline */ }

.cbp-popup-singlePageInline .cbp-popup-content {
  opacity: 0;
  width: 100%;
  z-index: 1;
  min-height: 300px; }

.cbp-popup-singlePageInline .cbp-popup-content,
.cbp-popup-singlePageInline .cbp-popup-navigation {
  -webkit-transition: opacity .4s ease-in .2s;
  transition: opacity .4s ease-in .2s; }

.cbp-popup-singlePageInline .cbp-popup-navigation {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 40px; }

.cbp-popup-singlePageInline .cbp-popup-close {
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat scroll -92px 0 transparent;
  height: 40px;
  width: 40px;
  right: 20px;
  top: 30px; }

.cbp-popup-singlePageInline .cbp-popup-close:hover {
  opacity: 0.7; }

.cbp-popup-singlePageInline-ready {
  z-index: 4; }

.cbp-popup-singlePageInline-ready .cbp-popup-content,
.cbp-popup-singlePageInline-ready .cbp-popup-navigation {
  opacity: 1; }

.cbp-popup-singlePageInline-ready:after {
  display: none;
  visibility: hidden; }

.cbp-singlePageInline-active {
  opacity: 0.6 !important; }

.cbp-l-inline {
  margin: 20px 0;
  overflow: hidden;
  background: #FAFAFA;
  padding: 30px; }

.cbp-l-inline-left {
  float: left;
  width: 44%; }

.cbp-l-project-img {
  max-width: 100%; }

.cbp-l-inline-right {
  float: right;
  width: 56%;
  padding-left: inherit; }

@media only screen and (max-width: 768px) {
  .cbp-l-inline-left {
    width: 100%;
    text-align: center;
    margin-top: 40px; }
  .cbp-l-inline-right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px; } }

.cbp-l-inline-title {
  font: 400 28px/30px "Open Sans", sans-serif;
  color: #474747; }

.cbp-l-inline-subtitle {
  font: 400 13px/21px "Open Sans", sans-serif;
  color: #888;
  margin-top: 7px; }

.cbp-l-inline-desc {
  font: 400 13px/20px "Open Sans", sans-serif;
  color: #474747;
  margin-top: 25px;
  margin-bottom: 20px; }

.cbp-l-inline-view-wrap {
  text-align: right; }

.cbp-l-inline-view {
  font: 400 13px/35px "Open Sans", sans-serif;
  color: #9C9C9C;
  margin-top: 40px;
  display: inline-block;
  padding: 0 20px;
  border: 1px solid #ccc;
  text-decoration: none; }

.cbp-l-inline-view:hover {
  color: #757575; }

.cbp-l-inline-details {
  margin-bottom: 15px;
  font: 13px/22px "Open Sans", sans-serif; }

/* default state */
.cbp-l-loadMore-defaultText,
.cbp-l-loadMore-button-defaultText {
  display: block; }

.cbp-l-loadMore-loadingText,
.cbp-l-loadMore-noMoreLoading,
.cbp-l-loadMore-button-loadingText,
.cbp-l-loadMore-button-noMoreLoading {
  display: none; }

/* loading state */
.cbp-l-loadMore-loading .cbp-l-loadMore-loadingText,
.cbp-l-loadMore-loading .cbp-l-loadMore-button-loadingText {
  display: block; }

.cbp-l-loadMore-loading .cbp-l-loadMore-defaultText,
.cbp-l-loadMore-loading .cbp-l-loadMore-noMoreLoading,
.cbp-l-loadMore-loading .cbp-l-loadMore-button-defaultText,
.cbp-l-loadMore-loading .cbp-l-loadMore-button-noMoreLoading {
  display: none; }

/* no more loading */
.cbp-l-loadMore-stop .cbp-l-loadMore-noMoreLoading,
.cbp-l-loadMore-stop .cbp-l-loadMore-button-noMoreLoading {
  display: block; }

.cbp-l-loadMore-stop .cbp-l-loadMore-defaultText,
.cbp-l-loadMore-stop .cbp-l-loadMore-loadingText,
.cbp-l-loadMore-stop .cbp-l-loadMore-button-defaultText,
.cbp-l-loadMore-stop .cbp-l-loadMore-button-loadingText {
  display: none; }

.cbp-l-loadMore-bgbutton {
  text-align: center; }

.cbp-l-loadMore-bgbutton .cbp-l-loadMore-link {
  border: 1px solid #DEDEDE;
  color: #7E7B7B;
  display: inline-block;
  font: 400 13px/40px "Lato", sans-serif;
  min-width: 80px;
  text-decoration: none;
  padding: 0 50px;
  margin-top: 50px;
  outline: 0;
  box-shadow: none;
  letter-spacing: 1px;
  -webkit-transition: color .25s;
  transition: color .25s; }

.cbp-l-loadMore-bgbutton .cbp-l-loadMore-link:hover,
.cbp-l-loadMore-bgbutton .cbp-l-loadMore-link.cbp-l-loadMore-loading {
  color: #B0B0B0; }

.cbp-l-loadMore-bgbutton .cbp-l-loadMore-link.cbp-l-loadMore-stop {
  cursor: default;
  color: #B0B0B0; }

.cbp-l-loadMore-button {
  text-align: center; }

.cbp-l-loadMore-button .cbp-l-loadMore-link,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link {
  border: 1px solid #DEDEDE;
  color: #7E7B7B;
  display: inline-block;
  font: 400 12px/36px "Open Sans", sans-serif;
  min-width: 80px;
  text-decoration: none;
  padding: 0 30px;
  outline: 0;
  margin-top: 40px;
  box-shadow: none;
  -webkit-transition: color .25s;
  transition: color .25s; }

.cbp-l-loadMore-button .cbp-l-loadMore-link:hover,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link:hover,
.cbp-l-loadMore-button .cbp-l-loadMore-link.cbp-l-loadMore-loading {
  color: #B0B0B0; }

.cbp-l-loadMore-button .cbp-l-loadMore-link.cbp-l-loadMore-stop,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link.cbp-l-loadMore-stop,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link.cbp-l-loadMore-button-stop {
  cursor: default;
  color: #B0B0B0; }

.cbp-l-loadMore-text {
  text-align: center; }

.cbp-l-loadMore-text .cbp-l-loadMore-link,
.cbp-l-loadMore-text .cbp-l-loadMore-text-link {
  font: 400 15px "Open Sans", sans-serif;
  color: #7E7B7B;
  text-decoration: none;
  cursor: pointer;
  margin-top: 50px;
  display: block; }

.cbp-l-loadMore-text .cbp-l-loadMore-stop,
.cbp-l-loadMore-text .cbp-l-loadMore-text-stop {
  color: #B0B0B0;
  cursor: default; }

.cbp-mode-slider {
  -webkit-transition: height 0.35s cubic-bezier(0.22, 0.6, 0.345, 1);
  transition: height 0.35s cubic-bezier(0.22, 0.6, 0.345, 1); }

.cbp-mode-slider .cbp-wrapper,
.cbp-mode-slider .cbp-item {
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 0.6, 0.345, 1);
  transition: transform 0.35s cubic-bezier(0.22, 0.6, 0.345, 1); }

.cbp-mode-slider .cbp-wrapper {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.cbp-mode-slider-dragStart * {
  cursor: move !important;
  cursor: -ms-grabbing !important;
  cursor: -webkit-grabbing !important;
  cursor: -moz-grabbing !important;
  cursor: grabbing !important; }

.cbp-mode-slider-dragStart .cbp-wrapper {
  -webkit-transition: none;
  transition: none; }

.cbp-nav-next,
.cbp-nav-prev {
  position: relative;
  background: #7c8b90;
  cursor: pointer;
  display: inline-block;
  margin-left: 1px;
  height: 22px;
  width: 21px; }

.cbp-nav-next {
  border-radius: 0 2px 2px 0; }

.cbp-nav-prev {
  border-radius: 2px 0 0 2px; }

.cbp-nav-next:hover,
.cbp-nav-prev:hover {
  opacity: 0.8; }

.cbp-nav-next:after,
.cbp-nav-prev:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat;
  height: 10px;
  width: 7px; }

.cbp-nav-next:after {
  background-position: -134px 0; }

.cbp-nav-prev:after {
  background-position: -134px -12px; }

.cbp-nav-stop {
  opacity: 0.5 !important;
  cursor: default !important; }

.cbp-nav {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.cbp-nav-controls {
  position: absolute;
  top: -51px;
  right: 0;
  z-index: 100; }

.cbp-nav-pagination {
  position: absolute;
  bottom: -30px;
  right: 0;
  z-index: 100;
  left: 0;
  text-align: center; }

.cbp-nav-pagination-item {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  display: inline-block;
  cursor: pointer;
  background: #c2c2c2;
  -webkit-transition: background 0.5s;
  transition: background 0.5s; }

.cbp-nav-pagination-active {
  background: #797979; }

.cbp-pagination-item {
  max-width: 100px;
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
  margin-right: 5px;
  position: relative; }

.cbp-pagination-item img {
  display: block;
  width: 100%;
  height: auto;
  border: 0; }

.cbp-pagination-item:after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: background .5s ease-in-out;
  transition: background .5s ease-in-out; }

.cbp-pagination-active:after {
  background: transparent; }

.cbp-slider-wrap,
.cbp-slider-item {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.cbp-slider .cbp-nav-controls {
  position: static; }

.cbp-slider .cbp-nav-next,
.cbp-slider .cbp-nav-prev {
  background: transparent;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 100;
  width: 44px;
  height: 44px; }

.cbp-slider .cbp-nav-next {
  right: 25px;
  left: auto; }

.cbp-slider .cbp-nav-prev {
  left: 25px;
  right: auto; }

.cbp-slider .cbp-nav-next:after,
.cbp-slider .cbp-nav-prev:after {
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat;
  width: 44px;
  height: 44px; }

.cbp-slider .cbp-nav-next:after {
  background-position: -46px -92px; }

.cbp-slider .cbp-nav-next:hover:after {
  background-position: -46px -46px; }

.cbp-slider .cbp-nav-prev:after {
  background-position: 0 -92px; }

.cbp-slider .cbp-nav-prev:hover:after {
  background-position: 0 -46px; }

.cbp-slider .cbp-nav-pagination {
  text-align: right;
  bottom: 20px;
  right: 25px;
  left: auto; }

.cbp-slider-edge .cbp-nav-controls {
  position: static; }

.cbp-slider-edge .cbp-nav-next,
.cbp-slider-edge .cbp-nav-prev {
  background: transparent;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 100;
  width: 44px;
  height: 44px; }

.cbp-slider-edge .cbp-nav-next {
  right: -14px;
  left: auto; }

.cbp-slider-edge .cbp-nav-prev {
  left: -14px;
  right: auto; }

.cbp-slider-edge .cbp-nav-next:after,
.cbp-slider-edge .cbp-nav-prev:after {
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat;
  width: 9px;
  height: 16px; }

.cbp-slider-edge .cbp-nav-next:after {
  background-position: -134px -24px; }

.cbp-slider-edge .cbp-nav-prev:after {
  background-position: -134px -42px; }

.cbp-slider-edge .cbp-nav-pagination {
  bottom: -50px; }

.cbp-slider-edge .cbp-nav-pagination-item {
  border: 2px solid #0f0f0f;
  opacity: 0.4;
  background: transparent; }

.cbp-slider-edge .cbp-nav-pagination-active {
  background: #000; }

.cbp-slider-inline {
  position: relative; }

.cbp-slider-inline .cbp-slider-item {
  position: absolute;
  width: 100%;
  top: 0;
  transition: left .5s ease; }

.cbp-slider-inline .cbp-slider-item--active {
  position: relative;
  z-index: 2; }

.cbp-slider-wrapper {
  position: relative;
  overflow: hidden; }

.cbp-slider-controls {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  opacity: 0;
  -webkit-transition: opacity .7s ease-in-out;
  transition: opacity .7s ease-in-out; }

.cbp-slider-inline-ready .cbp-slider-controls {
  opacity: 1; }

.cbp-slider-next,
.cbp-slider-prev {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float: left;
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
  background: #547EB1; }

.cbp-slider-next {
  margin-left: 1px; }

.cbp-slider-next:after,
.cbp-slider-prev:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(/public/d487134fb11fb2eaa45cb26763ee0f0c.png) no-repeat;
  width: 9px;
  height: 16px; }

.cbp-slider-next:after {
  background-position: -134px -60px; }

.cbp-slider-prev:after {
  background-position: -134px -78px; }

.cbp-l-grid-agency .cbp-caption:after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-bottom: 10px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  bottom: 0px;
  left: 50%;
  margin-left: -5px;
  z-index: 1; }

.cbp-l-grid-agency.cbp-caption-zoom .cbp-caption:hover .cbp-caption-defaultWrap {
  -webkit-transform: scale(1.15);
  transform: scale(1.15); }

.cbp-l-grid-agency-title {
  margin-top: 18px;
  font: 700 17px/24px "Lato", sans-serif;
  color: #666;
  text-align: center; }

.cbp-item:hover .cbp-l-grid-agency-title {
  color: #222; }

.cbp-l-grid-agency-desc {
  font: 400 12px/21px "Open Sans", sans-serif;
  color: #aaa;
  text-align: center; }

.cbp-l-grid-work.cbp-caption-zoom .cbp-caption-activeWrap {
  background-color: rgba(0, 0, 0, 0.7); }

.cbp-l-grid-work .cbp-item {
  padding: 3px; }

.cbp-l-grid-work .cbp-item-wrapper {
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  padding: 7px 7px 27px;
  border-top: 1px solid #F4F4F4; }

.cbp-l-grid-work-title {
  margin-top: 17px;
  font: 400 17px/25px "Roboto Condensed", sans-serif;
  color: #607D8B;
  text-align: center;
  text-transform: uppercase;
  display: block; }

.cbp-l-grid-work-title:hover {
  color: #365D67; }

.cbp-l-grid-work-desc {
  font: 400 11px/16px "Open Sans", sans-serif;
  color: #888888;
  text-align: center;
  text-transform: uppercase; }

.cbp-l-grid-blog-title {
  font: 400 18px/30px "Open Sans", sans-serif;
  color: #444;
  display: block;
  margin-top: 17px; }

.cbp-l-grid-blog-title:hover {
  color: #787878; }

.cbp-l-grid-blog-date {
  font: 400 12px/18px "Open Sans", sans-serif;
  color: #787878;
  display: inline-block; }

.cbp-l-grid-blog-comments {
  font: 400 12px/18px "Open Sans", sans-serif;
  color: #3C6FBB;
  display: inline-block; }

.cbp-l-grid-blog-comments:hover {
  opacity: .8; }

.cbp-l-grid-blog-desc {
  font: 400 13px/18px "Open Sans", sans-serif;
  color: #9B9B9B;
  margin-top: 9px; }

.cbp-l-grid-blog-split {
  margin: 0 4px;
  font: 400 13px/16px "Open Sans", sans-serif;
  color: #787878;
  display: inline-block; }

.cbp-l-grid-clients {
  height: 180px; }

.cbp-l-clients-title-block {
  font: 400 32px/53px "Roboto", sans-serif;
  color: #666464;
  text-align: center;
  margin-bottom: 40px; }

.cbp-l-grid-faq .cbp-item {
  width: 100%; }

.cbp-l-grid-projects-title {
  font: 700 14px/21px "Open Sans", sans-serif;
  color: #474747;
  margin-top: 15px; }

.cbp-l-grid-projects-desc {
  font: 400 12px/18px "Open Sans", sans-serif;
  color: #888888;
  margin-top: 5px; }

.cbp-l-grid-masonry-projects .cbp-caption-activeWrap {
  background-color: #59a3b6;
  background-color: rgba(89, 163, 182, 0.95); }

.cbp-l-grid-masonry-projects .cbp-l-caption-buttonLeft,
.cbp-l-grid-masonry-projects .cbp-l-caption-buttonRight {
  background-color: #545454; }

.cbp-l-grid-masonry-projects-title {
  font: 500 15px/22px "Roboto", sans-serif;
  color: #59a3b6;
  text-align: center;
  display: block;
  margin-top: 12px; }

.cbp-l-grid-masonry-projects-title:hover {
  color: #457C8B; }

.cbp-l-grid-masonry-projects-desc {
  font: 400 12px/18px "Roboto", sans-serif;
  color: #b2b2b2;
  text-align: center; }

.cbp-l-grid-team-name {
  font: 400 17px/24px "Open Sans", sans-serif;
  color: #456297;
  display: block;
  text-align: center;
  margin-top: 18px; }

.cbp-l-grid-team-name:hover {
  color: #34425C; }

.cbp-l-grid-team-position {
  font: italic 400 13px/21px "Open Sans", sans-serif;
  color: #999;
  text-align: center; }

.cbp-l-grid-mosaic-flat .cbp-caption-activeWrap {
  background-color: #64C28E;
  background-color: rgba(101, 199, 150, 0.95); }

.cbp-l-grid-mosaic-flat .cbp-l-caption-title {
  color: #FFFFFF;
  font: 400 14px/21px "Lato", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block; }

.cbp-l-grid-mosaic-flat .cbp-l-caption-title:after {
  content: '';
  display: block;
  width: 40%;
  height: 1px;
  background-color: #fff;
  margin: 8px auto 0; }

.cbp-l-grid-mosaic-projects .cbp-caption-activeWrap {
  background-color: #59a3b6;
  background-color: rgba(89, 163, 182, 0.97); }

.cbp-l-grid-mosaic .cbp-caption-activeWrap {
  background-color: #FFEA71;
  background-color: rgba(255, 234, 113, 0.95); }

.cbp-l-grid-mosaic .cbp-l-caption-title {
  color: #5A5A5A;
  font: 500 18px/22px "Roboto", sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px; }

.cbp-l-grid-mosaic .cbp-l-caption-desc {
  color: #585858;
  font: 400 13px/20px "Roboto", sans-serif; }

.cbp-l-slider-title-block {
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 22px; }

.cbp-l-slider-title-block div {
  padding: 0 2px 6px 0;
  display: inline-block;
  border-bottom: 1px solid #a9a5a5;
  color: #5e5e5e;
  margin-bottom: -1px;
  font: 15px/21px "Roboto", sans-serif; }

.cbp-l-grid-slider-team-name {
  float: left;
  font: 20px/30px "Roboto", sans-serif;
  color: #494949;
  margin-top: 16px; }

.cbp-l-grid-slider-team-position {
  clear: both;
  font: 14px/21px "Roboto", sans-serif;
  color: #A6A6A6; }

.cbp-l-grid-slider-team-desc {
  font: 13px/20px "Roboto", sans-serif;
  color: #969696;
  margin-top: 15px; }

.cbp-l-grid-slider-team-social {
  float: right;
  margin-top: 22px; }

.cbp-l-grid-slider-team-social a {
  margin-left: 4px; }

.cbp-l-grid-slider-team-social a:hover {
  opacity: 0.8; }

.cbp-l-slider-testimonials-wrap {
  background: #f8f9f9;
  padding: 80px 0 110px;
  border-width: 1px 0;
  border-style: solid;
  border-color: #dce1e2; }

.cbp-l-grid-slider-testimonials-body {
  color: #424242;
  max-width: 800px;
  margin: 0 auto;
  font: 20px/32px sans-serif;
  text-align: center;
  padding: 0 20px; }

.cbp-l-grid-slider-testimonials-footer {
  font: 12px/19px "Roboto", sans-serif;
  color: #777;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 30px; }

.cbp-l-grid-tabs {
  height: 100px; }

.cbp-l-grid-tabs .cbp-item {
  font: 14px/24px "Lato", sans-serif;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  right: 0;
  text-align: center;
  color: #5a5a5a; }

.cbp-l-testimonials-title-block {
  position: relative;
  text-align: center;
  font: 26px/36px "Roboto", sans-serif;
  color: #E7E7E7;
  margin-bottom: 60px; }

.cbp-l-testimonials-title-block:after {
  content: '';
  position: absolute;
  margin: 0 auto;
  width: 23px;
  height: 2px;
  bottom: -6px;
  background-color: #C2C2C2;
  left: 0;
  right: 0; }

.cbp-l-testimonials-wrap {
  background: #2D2D2D;
  padding: 60px 0 110px; }

.cbp-l-grid-testimonials-body {
  color: #e7e7e7;
  max-width: 800px;
  margin: 0 auto;
  font: 20px/32px "Roboto", sans-serif;
  text-align: center;
  padding: 0 20px; }

.cbp-l-grid-testimonials-footer {
  font: 12px/19px "Roboto", sans-serif;
  color: #C2C2C2;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 35px; }

.cbp-search {
  position: relative;
  width: 220px;
  margin-bottom: 40px; }

.cbp-search .cbp-search-nothing {
  display: none; }

.cbp-search-icon {
  position: absolute;
  width: 32px;
  height: 100%;
  top: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
  pointer-events: none; }

.cbp-search-icon:after {
  content: '';
  display: block;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzczNzM3MyIgZD0iTTEyMTYgODMycTAtMTg1LTEzMS41LTMxNi41VDc2OCAzODQgNDUxLjUgNTE1LjUgMzIwIDgzMnQxMzEuNSAzMTYuNVQ3NjggMTI4MHQzMTYuNS0xMzEuNVQxMjE2IDgzMnptNTEyIDgzMnEwIDUyLTM4IDkwdC05MCAzOHEtNTQgMC05MC0zOGwtMzQzLTM0MnEtMTc5IDEyNC0zOTkgMTI0LTE0MyAwLTI3My41LTU1LjV0LTIyNS0xNTAtMTUwLTIyNVQ2NCA4MzJ0NTUuNS0yNzMuNSAxNTAtMjI1IDIyNS0xNTBUNzY4IDEyOHQyNzMuNSA1NS41IDIyNSAxNTAgMTUwIDIyNVQxNDcyIDgzMnEwIDIyMC0xMjQgMzk5bDM0MyAzNDNxMzcgMzcgMzcgOTB6Ii8+PC9zdmc+") no-repeat scroll center center;
  width: 100%;
  height: 100%;
  pointer-events: none; }

.cbp-search-input {
  height: 36px;
  padding: 0 32px 0 12px;
  margin: 0;
  border-radius: 1px;
  border: 1px solid #c6c3c4;
  font: 400 12px "Open Sans", sans-serif;
  width: 100%; }

.cbp-search-input[value] + .cbp-search-icon {
  pointer-events: auto; }

.cbp-search-input[value] + .cbp-search-icon:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzczNzM3MyIgZD0iTTE0OTAgMTMyMnEwIDQwLTI4IDY4bC0xMzYgMTM2cS0yOCAyOC02OCAyOHQtNjgtMjhsLTI5NC0yOTQtMjk0IDI5NHEtMjggMjgtNjggMjh0LTY4LTI4bC0xMzYtMTM2cS0yOC0yOC0yOC02OHQyOC02OGwyOTQtMjk0LTI5NC0yOTRxLTI4LTI4LTI4LTY4dDI4LTY4bDEzNi0xMzZxMjgtMjggNjgtMjh0NjggMjhsMjk0IDI5NCAyOTQtMjk0cTI4LTI4IDY4LTI4dDY4IDI4bDEzNiAxMzZxMjggMjggMjggNjh0LTI4IDY4bC0yOTQgMjk0IDI5NCAyOTRxMjggMjggMjggNjh6Ii8+PC9zdmc+"); }

.cbp-search-nothing {
  position: absolute;
  top: 0;
  padding: 0 0 30px;
  text-align: center;
  width: 100%;
  font: 13px "Open Sans", sans-serif; }

.cbp-l-project-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.cbp-social-fb,
.cbp-social-twitter,
.cbp-social-googleplus,
.cbp-social-pinterest {
  margin-right: 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.cbp-social-fb:hover,
.cbp-social-twitter:hover,
.cbp-social-googleplus:hover,
.cbp-social-pinterest:hover {
  opacity: .8; }

.cbp-social-fb:focus,
.cbp-social-twitter:focus,
.cbp-social-googleplus:focus,
.cbp-social-pinterest:focus {
  outline: none; }

.cbp-social-fb path {
  fill: #415C9B; }

.cbp-social-twitter path {
  fill: #55acee; }

.cbp-social-googleplus path {
  fill: #E57371; }

.cbp-social-pinterest path {
  fill: #cb2027; }
/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  transform-style: preserve-3d; }

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/public/8467d166126fa51084f66fed55b38e0c.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

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

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

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

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

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

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

.fancybox-inner {
  overflow: hidden; }

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

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

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

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

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url(/public/783d4031fe50c3d83c960911e1fbc705.png); }

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

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url(/public/328cc0f6c78211485058d460e80f4fa8.gif) center center no-repeat; }

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

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

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

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

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

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

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

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

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto; }

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

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

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url(/public/77aeaa52715b898b73c74d68c630330e.png); }

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

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

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

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

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

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

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

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

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

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url(/public/ed9970ce22242421e66ff150aa97fe5f.png);
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/ }
  #fancybox-loading div {
    background-image: url(/public/f92938639fa894a0e8ded1c3368abe98.gif);
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }
/*!
 * Slider for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative; }

.slider.slider-horizontal {
  width: 210px;
  height: 20px; }

.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0; }

.slider.slider-horizontal .slider-selection {
  height: 100%;
  top: 0;
  bottom: 0; }

.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
  margin-top: -5px; }

.slider.slider-horizontal .slider-handle.triangle {
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0; }

.slider.slider-vertical {
  height: 210px;
  width: 20px; }

.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  margin-left: -5px;
  left: 50%;
  top: 0; }

.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0; }

.slider.slider-vertical .slider-handle {
  margin-left: -5px;
  margin-top: -10px; }

.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  margin-left: 0; }

.slider input {
  display: none; }

.slider .tooltip-inner {
  white-space: nowrap; }

.slider-track {
  position: absolute;
  cursor: pointer;
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.slider-selection {
  position: absolute;
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #f9f9f9, #f5f5f5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#f5f5f5));
  background-image: -webkit-linear-gradient(top, #f9f9f9, #f5f5f5);
  background-image: -o-linear-gradient(top, #f9f9f9, #f5f5f5);
  background-image: linear-gradient(to bottom, #f9f9f9, #f5f5f5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.slider-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #0e90d2;
  background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
  background-image: linear-gradient(to bottom, #149bdf, #0480be);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  opacity: 0.8;
  border: 0px solid transparent; }

.slider-handle.round {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px; }

.slider-handle.triangle {
  background: transparent none; }
.ilightbox-overlay.dark {
	background: #000;
}

.ilightbox-loader.dark {
	-webkit-box-shadow: black 0px 0px 85px, black 0px 0px 85px;
	        box-shadow: black 0px 0px 85px, black 0px 0px 85px;
}
.ilightbox-loader.dark div {
	background: #000 url(/public/9d9ac53c4d412cf08de635eb48f36a8f.gif) no-repeat center;
}

.ilightbox-holder.dark {
	padding: 5px;
	background: #000;
	
	-webkit-box-shadow: 0 0 15px hsla(0,0%,0%,.8);
	        box-shadow: 0 0 15px hsla(0,0%,0%,.8);
}

.ilightbox-holder.dark .ilightbox-container  .ilightbox-caption {
	background: url(/public/f7bcd39de50db75cb3dd64612af5d068.png);
	color: #FFF;
	text-shadow: 0 1px black;
}

.ilightbox-holder.dark .ilightbox-container .ilightbox-social {
	background: url(/public/f7bcd39de50db75cb3dd64612af5d068.png);
	
	-webkit-border-radius: 2px;
	        border-radius: 2px;
}

.ilightbox-holder.dark .ilightbox-alert {
	background: url(/public/c84d8acbf4bae5563c6db964e0ed59b8.png) no-repeat center top;
	color: #555;
}

/* Style toolbar */
.ilightbox-toolbar.dark {
	top: 11px;
	left: 10px;
}

.ilightbox-toolbar.dark a {
	width: 25px;
	height: 23px;
	background: black url(/public/b92a518b423dc882a4a5a6479b8c9baa.png) no-repeat 7px 6px;
}

.ilightbox-toolbar.dark a.disabled {
	opacity: 0.2;
	filter: alpha(opacity=20);
	cursor: default;
	background-color: #000 !important;
}

.ilightbox-toolbar.dark a:first-of-type {
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-top-left-radius: 3px;
		    border-bottom-left-radius: 3px;
		    border-top-left-radius: 3px;
}

.ilightbox-toolbar.dark a:last-of-type {
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		    border-bottom-right-radius: 3px;
		    border-top-right-radius: 3px;
}

.ilightbox-toolbar.dark a.ilightbox-close:hover {
	background-position: -32px 6px;
}

.ilightbox-toolbar.dark a.ilightbox-fullscreen {
	background-position: 6px -33px;
	right: 35px;
}

.ilightbox-toolbar.dark a.ilightbox-fullscreen:hover {
	background-position: -31px -33px;
}

.ilightbox-toolbar.dark a.ilightbox-play {
	background-position: 8px -57px;
}

.ilightbox-toolbar.dark a.ilightbox-play:hover {
	background-position: -32px -57px;
}

.ilightbox-toolbar.dark a.ilightbox-pause {
	background-position: 8px -83px;
}

.ilightbox-toolbar.dark a.ilightbox-pause:hover {
	background-position: -32px -83px;
}

.isMobile .ilightbox-toolbar.dark {
	background: #000;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	text-align: center;
	
	-webkit-box-shadow: 0 0 25px rgba(0,0,0,.8);
	        box-shadow: 0 0 25px rgba(0,0,0,.8);
}

.isMobile .ilightbox-toolbar.dark a {
	display: inline-block;
	float: none;
	width: 50px;
	height: 40px;
	background-size: 50%;
	background-position: 50% !important;
}

.isMobile .ilightbox-toolbar.dark a:hover {
	background-color: #111;
}

.isMobile .ilightbox-toolbar.dark a.ilightbox-fullscreen {
	background-image: url(/public/7b0607a2d8c494977a1274609acdc9cd.png);
	background-image/*\**/: url(/public/26413ea1f6d0c001e6f58c1940200c2e.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.dark a.ilightbox-close {
	background-image: url(/public/0d9c0d040341d9247cc8e5c9e92183a0.png);
	background-image/*\**/: url(/public/7e34f78ca2d8cdf0baa2be81420c645e.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.dark a.ilightbox-next-button {
	background-image: url(/public/ab02f344a662c1d070d6666a65a9a47b.png);
	background-image/*\**/: url(/public/c97b6cc3454f8671718de72618581e88.png)\9;  /* IE7-8 */
	background-position: 52% 50%;
}

.isMobile .ilightbox-toolbar.dark a.ilightbox-prev-button {
	background-image: url(/public/20f7acc79ebf678f84062c792c618e44.png);
	background-image/*\**/: url(/public/ae0e8d4bd961e079e28195dc7ee579a6.png)\9;  /* IE7-8 */
	background-position: 48% 50%;
}

.isMobile .ilightbox-toolbar.dark a.ilightbox-play {
	background-image: url(/public/f4e80ec8a6d26d22f35ba98f781ed1dc.png);
	background-image/*\**/: url(/public/c32ae6a0f0afa5d7f7f907b44eb8e742.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.dark a.ilightbox-pause {
	background-image: url(/public/70719f12efbea31b05a697d45a02902a.png);
	background-image/*\**/: url(/public/3353d5210fad25c99b80e6cb0953b43c.png)\9;  /* IE7-8 */
}

.ilightbox-holder.dark .ilightbox-inner-toolbar .ilightbox-title {
	font-size: 18px;
	padding: 10px 8px;
	padding-right: 60px;
	color: #FFF;
}

.ilightbox-holder.dark .ilightbox-inner-toolbar .ilightbox-toolbar {
	left: auto;
	top: 5px;
	right: 5px;
}

.ilightbox-holder.dark .ilightbox-inner-toolbar .ilightbox-toolbar a {
	-webkit-border-radius: 0;
	        border-radius: 0;
	float: right;
}

.ilightbox-holder.dark .ilightbox-inner-toolbar .ilightbox-toolbar a:first-of-type {
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		    border-bottom-right-radius: 3px;
		    border-top-right-radius: 3px;
}

.ilightbox-holder.dark .ilightbox-inner-toolbar .ilightbox-toolbar a:last-of-type {
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-top-left-radius: 3px;
		    border-bottom-left-radius: 3px;
		    border-top-left-radius: 3px;
}

/* Style thumbnails */
.ilightbox-thumbnails.dark .ilightbox-thumbnails-grid .ilightbox-thumbnail img {
	box-shadow: 0 0 6px rgba(0, 0, 0, .9);
}

.ilightbox-thumbnails.dark .ilightbox-thumbnails-grid .ilightbox-thumbnail .ilightbox-thumbnail-video {
	background: url(/public/0de625a948c3e97a7f7d85dc62c68473.png) no-repeat center;
}

/* Configure arrow buttons */
.ilightbox-button.dark.disabled {
	opacity: 0.1;
	filter: alpha(opacity=10);  /* IE7-8 */
	cursor: default;
	background-color: #000 !important;
}
.ilightbox-button.dark span {
	display: block;
	width: 100%;
	height: 100%;
}
.ilightbox-button.dark {
	bottom: 0;
	right: 0;
	left: 0;
	left/*\**/: 45%\9;  /* IE7-8 */
	right/*\**/: auto\9;  /* IE7-8 */
	width: 95px;
	height: 75px;
	margin: auto;
	background: url(/public/4331d2353d20bde9c5f57ec0a4210cde.png) no-repeat 50% 65%;
	background-color: #000;

	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
		    border-top-left-radius: 5px;
		    border-top-right-radius: 5px;
}
.ilightbox-button.ilightbox-button.dark:hover {
	background-color: #111;
}
.ilightbox-button.ilightbox-prev-button.dark {
	top: 0;
	bottom: auto;
	background-image: url(/public/1afe98c57fbb111dd499c5700952a1a2.png);
	background-position: 50% 35%;

	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
		    border-bottom-left-radius: 5px;
		    border-bottom-right-radius: 5px;
}
.ilightbox-button.dark.horizontal {
	right: 0;
	left: auto;
	top: 0;
	bottom: 0;
	top/*\**/: 41%\9;  /* IE7-8 */
	bottom/*\**/: auto\9;  /* IE7-8 */
	width: 75px;
	height: 95px;
	background-image: url(/public/ab02f344a662c1d070d6666a65a9a47b.png);
	background-position: 65% 50%;

	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
		    border-bottom-left-radius: 5px;
		    border-top-left-radius: 5px;
}
.ilightbox-button.ilightbox-prev-button.dark.horizontal {
	right: auto;
	left: 0;
	background-image: url(/public/20f7acc79ebf678f84062c792c618e44.png);
	background-position: 35% 50%;

	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
		    border-bottom-right-radius: 5px;
		    border-top-right-radius: 5px;
}.ilightbox-overlay.light {
	background: #FFF;
}

.ilightbox-loader.light {
	-webkit-box-shadow: hsla(255,90%,90%,1) 0px 0px 85px, hsla(255,90%,90%,1) 0px 0px 85px;
	        box-shadow: hsla(255,90%,90%,1) 0px 0px 85px, hsla(255,90%,90%,1) 0px 0px 85px;
}
.ilightbox-loader.light div {
	background: #FFF url(/public/9570a60d79a3a0b4088e71f71df20639.gif) no-repeat center;
}

.ilightbox-holder.light {
	padding: 10px;
	background: #FFF;
	
	-webkit-box-shadow: 0 0 15px hsla(255,90%,90%,1);
	        box-shadow: 0 0 15px hsla(255,90%,90%,1);
}

.ilightbox-holder.light .ilightbox-container .ilightbox-caption {
	background: url(/public/357d92d939784aeaa77094162d1fd1a4.png);
	color: #000;
	text-shadow: 0 1px #FFF;
}

.ilightbox-holder.light .ilightbox-container .ilightbox-social {
	background: url(/public/357d92d939784aeaa77094162d1fd1a4.png);
	
	-webkit-border-radius: 2px;
	        border-radius: 2px;
}

.ilightbox-holder.light .ilightbox-alert {
	background: url(/public/4f092a51c4a9bf0bf915acf87c5bd7d2.png) no-repeat center top;
	color: #89949B;
}

/* Style toolbar */
.ilightbox-toolbar.light {
	top: 8px;
	left: 8px;
	height: 23px;
	
	-webkit-box-shadow: 0 0 7px hsla(255,90%,90%,1);
	        box-shadow: 0 0 7px hsla(255,90%,90%,1);
	
	-webkit-border-radius: 3px;
	        border-radius: 3px;
}

.ilightbox-toolbar.light a {
	width: 25px;
	height: 23px;
	background: white url(/public/7382ebb0e4dd7c3c63e1aeaea0da953b.png) no-repeat 7px 6px;
}

.ilightbox-toolbar.light a.disabled {
	opacity: 0.2;
	filter: alpha(opacity=20);
	cursor: default;
	background-color: #FFF;
}

.ilightbox-toolbar.light a:first-of-type {
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-top-left-radius: 3px;
		    border-bottom-left-radius: 3px;
		    border-top-left-radius: 3px;
}

.ilightbox-toolbar.light a:last-of-type {
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		    border-bottom-right-radius: 3px;
		    border-top-right-radius: 3px;
}

.ilightbox-toolbar.light a.ilightbox-close:hover {
	background-position: -32px 6px;
}

.ilightbox-toolbar.light a.ilightbox-fullscreen {
	background-position: 6px -33px;
}

.ilightbox-toolbar.light a.ilightbox-fullscreen:hover {
	background-position: -31px -33px;
}

.ilightbox-toolbar.light a.ilightbox-play {
	background-position: 8px -57px;
}

.ilightbox-toolbar.light a.ilightbox-play:hover {
	background-position: -32px -57px;
}

.ilightbox-toolbar.light a.ilightbox-pause {
	background-position: 8px -83px;
}

.ilightbox-toolbar.light a.ilightbox-pause:hover {
	background-position: -32px -83px;
}

.isMobile .ilightbox-toolbar.light {
	background: #FFF;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	text-align: center;
	
	-webkit-box-shadow: 0 0 25px hsla(255,90%,90%,1);
	        box-shadow: 0 0 25px hsla(255,90%,90%,1);
}

.isMobile .ilightbox-toolbar.light a {
	display: inline-block;
	float: none;
	width: 50px;
	height: 40px;
	background-size: 50%;
	background-position: 50% !important;
}

.isMobile .ilightbox-toolbar.light a:hover {
	background-color: #f6f3ff;
}

.isMobile .ilightbox-toolbar.light a.ilightbox-fullscreen {
	background-image: url(/public/157308dc002152b6e7397c173afebea3.png);
	background-image/*\**/: url(/public/821e480c6d29971afbb9cdba93190643.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.light a.ilightbox-close {
	background-image: url(/public/79f54f19a4d98d509c928b0852cc18af.png);
	background-image/*\**/: url(/public/3998457f27bfc68979efeaa2c3348f5f.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.light a.ilightbox-next-button {
	background-image: url(/public/5ee899515f64321a0aa26e49ad9c1ce7.png);
	background-image/*\**/: url(/public/b40028886f3cfd4dde938b28e0f04969.png)\9;  /* IE7-8 */
	background-position: 52% 50%;
}

.isMobile .ilightbox-toolbar.light a.ilightbox-prev-button {
	background-image: url(/public/c89a62ca76fc6a680d818a132f20f9e8.png);
	background-image/*\**/: url(/public/4435e6d037595efb3ec9bed7d94abead.png)\9;  /* IE7-8 */
	background-position: 48% 50%;
}

.isMobile .ilightbox-toolbar.light a.ilightbox-play {
	background-image: url(/public/302b3d75addaec90431633fbb7d45709.png);
	background-image/*\**/: url(/public/9debda9efeb9e5af95cbfeb6836e0f97.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.light a.ilightbox-pause {
	background-image: url(/public/0f74c2b159004622245a4615f61ac769.png);
	background-image/*\**/: url(/public/4da3b20953c83470f578d8f041dc52ec.png)\9;  /* IE7-8 */
}

/* Style thumbnails */
.ilightbox-thumbnails.light .ilightbox-thumbnails-grid .ilightbox-thumbnail img {
	box-shadow: 0 0 6px hsla(255,90%,90%,1);
}

.ilightbox-thumbnails.light .ilightbox-thumbnails-grid .ilightbox-thumbnail .ilightbox-thumbnail-video {
	background: url(/public/0de625a948c3e97a7f7d85dc62c68473.png) no-repeat center;
}

.ilightbox-holder.light .ilightbox-inner-toolbar .ilightbox-title {
	font-size: 18px;
	padding: 10px 8px;
	padding-right: 60px;
	color: #000;
}

.ilightbox-holder.light .ilightbox-inner-toolbar .ilightbox-toolbar {
	left: auto;
	top: 5px;
	right: 5px;
}

.ilightbox-holder.light .ilightbox-inner-toolbar .ilightbox-toolbar a {
	float: right;
}

.ilightbox-holder.light .ilightbox-inner-toolbar .ilightbox-toolbar a:first-of-type {
	-webkit-border-radius: 0;
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	        border-radius: 0;
		    border-bottom-right-radius: 3px;
		    border-top-right-radius: 3px;
}

.ilightbox-holder.light .ilightbox-inner-toolbar .ilightbox-toolbar a:last-of-type {
	-webkit-border-radius: 0;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	        border-radius: 0;
		    border-bottom-left-radius: 3px;
		    border-top-left-radius: 3px;
}

/* Configure arrow buttons */
.ilightbox-button.light.disabled {
	opacity: 0.3;
	filter: alpha(opacity=30);  /* IE7-8 */
	cursor: default;
	background-color: #FFF !important;
}
.ilightbox-button.light span {
	display: block;
	width: 100%;
	height: 100%;
}
.ilightbox-button.ilightbox-next-button.light,
.ilightbox-button.ilightbox-prev-button.light {
	bottom: 0;
	right: 0;
	left: 0;
	left/*\**/: 45%\9;  /* IE7-8 */
	right/*\**/: auto\9;  /* IE7-8 */
	width: 95px;
	height: 75px;
	margin: auto;
	background: url(/public/f85609f83e758e8bafb43aba7bb96ad2.png) no-repeat 50% 65%;
	background-color: #FFF;
	
	-webkit-box-shadow: 0 0 15px hsla(255,90%,90%,1);
	        box-shadow: 0 0 15px hsla(255,90%,90%,1);
}
.ilightbox-button.ilightbox-button.light:hover {
	background-color: #f6f3ff;
}
.ilightbox-button.ilightbox-prev-button.light {
	top: 0;
	bottom: auto;
	background-image: url(/public/5a1f9d52e1b4d589a94f9a6d85e02e5d.png);
	background-position: 50% 35%;
}
.ilightbox-button.ilightbox-next-button.light.horizontal,
.ilightbox-button.ilightbox-prev-button.light.horizontal {
	right: 0;
	left: auto;
	top: 0;
	bottom: 0;
	top/*\**/: 41%\9;  /* IE7-8 */
	bottom/*\**/: auto\9;  /* IE7-8 */
	width: 75px;
	height: 95px;
	background-image: url(/public/5ee899515f64321a0aa26e49ad9c1ce7.png);
	background-position: 65% 50%;

	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
		    border-bottom-left-radius: 5px;
		    border-top-left-radius: 5px;
}
.ilightbox-button.ilightbox-prev-button.light.horizontal {
	right: auto;
	left: 0;
	background-image: url(/public/c89a62ca76fc6a680d818a132f20f9e8.png);
	background-position: 35% 50%;

	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
		    border-bottom-right-radius: 5px;
		    border-top-right-radius: 5px;
}.ilightbox-overlay.parade {
	background: #333 url(/public/729bd9ff508234a5d69e82e76af9608f.png);
}

.ilightbox-loader.parade {
	-webkit-box-shadow: 0 0 35px hsla(0,0%,0%,.3);
	        box-shadow: 0 0 35px hsla(0,0%,0%,.3);
}
.ilightbox-loader.parade div {
	background: white url(/public/5e74713feda0a51bb2b1a778473c5516.gif) no-repeat center;
}

.ilightbox-holder.parade {
	padding: 10px;
	background: #333;
	background: rgba(0,0,0,0.25);
	
	-webkit-border-radius: 4px;
	        border-radius: 4px;
}

.ilightbox-holder.parade .ilightbox-container  {
	background: #FFF;
}

.ilightbox-holder.parade .ilightbox-container  .ilightbox-caption {
	background: url(/public/da2b97bc1d2a2ff51209c60a5719239e.png);
	color: #FFF;
	text-shadow: 0 1px black;
}

.ilightbox-holder.parade .ilightbox-container  .ilightbox-social {
	background: url(/public/da2b97bc1d2a2ff51209c60a5719239e.png);
	
	-webkit-border-radius: 2px;
	        border-radius: 2px;
}

.ilightbox-holder.parade .ilightbox-alert {
	background: url(/public/c84d8acbf4bae5563c6db964e0ed59b8.png) no-repeat center top;
	color: #555;
}

.ilightbox-toolbar.parade {
	top: 11px;
	left: 10px;
	padding: 3px;
	background: #333;
	background: rgba(0,0,0,0.25);
}

.ilightbox-toolbar.parade a {
	width: 29px;
	height: 25px;
	background: #FFF url(/public/48667e4ecdfea8c6025d2a784b1f570f.png) no-repeat 8px 6px;
}

.ilightbox-toolbar.parade a:hover {
	background-color: #f5f5f5;
}

.ilightbox-toolbar.parade a.ilightbox-close:hover {
	background-position: -29px 6px;
}

.ilightbox-toolbar.parade a.ilightbox-fullscreen {
	background-position: 8px -33px;
	right: 35px;
}

.ilightbox-toolbar.parade a.ilightbox-fullscreen:hover {
	background-position: -29px -33px;
}

.ilightbox-thumbnails.parade .ilightbox-thumbnails-grid .ilightbox-thumbnail img {
	box-shadow: 0 0 6px rgba(0, 0, 0, .9);
}

.ilightbox-thumbnails.parade .ilightbox-thumbnails-grid .ilightbox-thumbnail .ilightbox-thumbnail-video {
	background: url(/public/0a94d21363415824fb0b0d529472d26a.png) no-repeat center;
}

.ilightbox-holder.parade .ilightbox-inner-toolbar .ilightbox-title {
	font-size: 18px;
	padding: 10px 8px;
	padding-right: 60px;
	color: #FFF;
}

.ilightbox-holder.parade .ilightbox-inner-toolbar .ilightbox-toolbar {
	left: auto;
	top: 5px;
	right: 5px;
}

.ilightbox-holder.parade .ilightbox-inner-toolbar .ilightbox-toolbar a {
	float: right;
}.ilightbox-overlay.metro-black {
	background: #000;
}

.ilightbox-loader.metro-black {
	-webkit-box-shadow: rgba(0,0,0,1) 0px 0px 55px, rgba(0,0,0,.3) 0px 0px 55px;
	        box-shadow: rgba(0,0,0,1) 0px 0px 55px, rgba(0,0,0,.3) 0px 0px 55px;
}
.ilightbox-loader.metro-black div {
	background: #000 url(/public/b907394e72c01e06038b463b68bcdaa8.gif) no-repeat center;
}

.ilightbox-holder.metro-black {
	padding: 3px;
	background: #000;
	
	-webkit-box-shadow: 0 0 45px rgba(0,0,0,.8);
	        box-shadow: 0 0 45px rgba(0,0,0,.8);
}

.ilightbox-holder.metro-black .ilightbox-container .ilightbox-caption {
	background: url(/public/796ef8bc9f72421ae67c81eafdedd59e.png) repeat-x bottom;
	background-size: 100% 100%;
	left: 0;
	right: 0;
	color: #FFF;
	text-shadow: 0 0 3px rgba(0, 0, 0, .75);
	padding-top: 15px;
}

.ilightbox-holder.metro-black .ilightbox-container .ilightbox-social {
	background: url(/public/f7bcd39de50db75cb3dd64612af5d068.png);
	
	-webkit-border-radius: 2px;
	        border-radius: 2px;
}

.ilightbox-holder.metro-black .ilightbox-alert {
	background: url(/public/c84d8acbf4bae5563c6db964e0ed59b8.png) no-repeat center top;
	color: #555;
}

/* Style toolbar */
.ilightbox-toolbar.metro-black {
	top: 8px;
	left: 8px;
	height: 25px;
}

.ilightbox-toolbar.metro-black a {
	width: 27px;
	height: 25px;
	background: #000 url(/public/d0bec012123d3edf0901c935eb3e3747.png) no-repeat 7px 6px;
}

.ilightbox-toolbar.metro-black a:hover {
	background-color: #51b7ff;
}

.ilightbox-toolbar.metro-black a.ilightbox-close:hover {
	background-color: #d94947;
}

.ilightbox-toolbar.metro-black a.disabled {
	opacity: 0.2;
	filter: alpha(opacity=20);
	cursor: default;
	background-color: #000;
	
	-webkit-box-shadow: 0 0 25px rgba(0,0,0,.8);
	        box-shadow: 0 0 25px rgba(0,0,0,.8);
}

.ilightbox-toolbar.metro-black a.ilightbox-fullscreen {
	background-position: 6px -31px;
}

.ilightbox-toolbar.metro-black a.ilightbox-play {
	background-position: 8px -55px;
}

.ilightbox-toolbar.metro-black a.ilightbox-pause {
	background-position: 8px -81px;
}

.isMobile .ilightbox-toolbar.metro-black {
	background: #000;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	text-align: center;
}

.isMobile .ilightbox-toolbar.metro-black a {
	display: inline-block;
	float: none;
	width: 50px;
	height: 40px;
	background-size: 50%;
	background-position: 50%;
}

.isMobile .ilightbox-toolbar.metro-black a.ilightbox-fullscreen {
	background-image: url(/public/7b0607a2d8c494977a1274609acdc9cd.png);
	background-image/*\**/: url(/public/4bcf39d414d5f6b41bc57318b74a9d00.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-black a.ilightbox-close {
	background-image: url(/public/0d9c0d040341d9247cc8e5c9e92183a0.png);
	background-image/*\**/: url(/public/7e34f78ca2d8cdf0baa2be81420c645e.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-black a.ilightbox-next-button {
	background-image: url(/public/ab02f344a662c1d070d6666a65a9a47b.png);
	background-image/*\**/: url(/public/c97b6cc3454f8671718de72618581e88.png)\9;  /* IE7-8 */
	background-position: 52% 50%;
}

.isMobile .ilightbox-toolbar.metro-black a.ilightbox-prev-button {
	background-image: url(/public/20f7acc79ebf678f84062c792c618e44.png);
	background-image/*\**/: url(/public/ae0e8d4bd961e079e28195dc7ee579a6.png)\9;  /* IE7-8 */
	background-position: 48% 50%;
}

.isMobile .ilightbox-toolbar.metro-black a.ilightbox-play {
	background-image: url(/public/f4e80ec8a6d26d22f35ba98f781ed1dc.png);
	background-image/*\**/: url(/public/c32ae6a0f0afa5d7f7f907b44eb8e742.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-black a.ilightbox-pause {
	background-image: url(/public/70719f12efbea31b05a697d45a02902a.png);
	background-image/*\**/: url(/public/3353d5210fad25c99b80e6cb0953b43c.png)\9;  /* IE7-8 */
}

.ilightbox-holder.metro-black .ilightbox-inner-toolbar .ilightbox-title {
	font-size: 18px;
	padding: 10px 12px;
	padding-right: 60px;
	color: #acacad;
}

.ilightbox-holder.metro-black .ilightbox-inner-toolbar .ilightbox-toolbar {
	left: auto;
	top: 5px;
	right: 5px;
}

.ilightbox-holder.metro-black .ilightbox-inner-toolbar .ilightbox-toolbar a {
	float: right;
}

/* Style thumbnails */
.ilightbox-thumbnails.metro-black.ilightbox-horizontal {
	height: 104px;
}

.ilightbox-thumbnails.metro-black.ilightbox-horizontal .ilightbox-thumbnails-container {
	height: 104px;
}

.ilightbox-thumbnails.metro-black.ilightbox-vertical {
	width: 144px;
}

.ilightbox-thumbnails.metro-black.ilightbox-vertical .ilightbox-thumbnails-container {
	width: 144px;
}

.ilightbox-thumbnails.metro-black .ilightbox-thumbnails-grid .ilightbox-thumbnail img {
	border: 2px solid #000;
	
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.8);
	        box-shadow: 0 0 10px rgba(0,0,0,.8);
	
	-webkit-border-radius: 0;
	        border-radius: 0;
}

.ilightbox-thumbnails.metro-black .ilightbox-thumbnails-grid .ilightbox-thumbnail .ilightbox-thumbnail-video {
	background: url(/public/70deaec9f64daeba5fda1b8bf4a98b74.png) no-repeat center;
}

/* Configure arrow buttons */
.ilightbox-button.metro-black.disabled {
	opacity: 0.1;
	filter: alpha(opacity=10);
	cursor: default;
}
.ilightbox-button.metro-black span {
	display: block;
	width: 100%;
	height: 100%;
}
.ilightbox-button.ilightbox-next-button.metro-black,
.ilightbox-button.ilightbox-prev-button.metro-black {
	bottom: 0;
	right: 0;
	left: 0;
	left/*\**/: 35%\9;  /* IE7-8 */
	right/*\**/: auto\9;  /* IE7-8 */
	width: 30%;
	height: 100px;
	margin: auto;
	background: url(/public/a52e4e4dfcf9cae0d5becb6b77046313.png) no-repeat 50% -100px;
	background-color: #000;
	background-color: rgba(0,0,0,0.5);
}
.ilightbox-button.ilightbox-prev-button.metro-black {
	top: 0;
	bottom: auto;
	background-position: 50% 0;
}
.ilightbox-button.ilightbox-next-button.metro-black.horizontal,
.ilightbox-button.ilightbox-prev-button.metro-black.horizontal {
	right: 0;
	left: auto;
	top: 0;
	bottom: 0;
	top/*\**/: 36%\9;  /* IE7-8 */
	bottom/*\**/: auto\9;  /* IE7-8 */
	width: 100px;
	height: 30%;
	background-image: url(/public/0985ababc5dc0042860f7b482832c567.png);
	background-position: -93px 50%;
}
.ilightbox-button.ilightbox-prev-button.metro-black.horizontal {
	right: auto;
	left: 0;
	background-position: -7px 50%;
}.ilightbox-overlay.metro-white {
	background: #FFF;
}

.ilightbox-loader.metro-white {
	-webkit-box-shadow: rgba(0,0,0,.3) 0px 0px 55px;
	        box-shadow: rgba(0,0,0,.3) 0px 0px 55px;
}
.ilightbox-loader.metro-white div {
	background: #FFF url(/public/a30efecb01ca4d87205ee9c0f8b9f76f.gif) no-repeat center;
}

.ilightbox-holder.metro-white {
	padding: 3px;
	background: #FFF;
	
	-webkit-box-shadow: 0 0 45px rgba(0,0,0,.2);
	        box-shadow: 0 0 45px rgba(0,0,0,.2);
}

.ilightbox-holder.metro-white .ilightbox-container .ilightbox-caption {
	background: url(/public/b0fc9c8b9a410d0f20ac7cd68c0e29c6.png) repeat-x bottom;
	background-size: 100% 100%;
	left: 0;
	right: 0;
	color: #000;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	padding-top: 15px;
}

.ilightbox-holder.metro-white .ilightbox-container .ilightbox-social {
	background: url(/public/357d92d939784aeaa77094162d1fd1a4.png);
	
	-webkit-border-radius: 2px;
	        border-radius: 2px;
}

.ilightbox-holder.metro-white .ilightbox-alert {
	background: url(/public/4f092a51c4a9bf0bf915acf87c5bd7d2.png) no-repeat center top;
	color: #89949B;
}

/* Style toolbar */
.ilightbox-toolbar.metro-white {
	top: 8px;
	left: 8px;
	height: 25px;
}

.ilightbox-toolbar.metro-white a {
	width: 27px;
	height: 25px;
	background: white url(/public/112f10d5fa35ed5e805319a5e733ea20.png) no-repeat 7px 6px;
}

.ilightbox-toolbar.metro-white a:hover {
	background-color: #51b7ff;
}

.ilightbox-toolbar.metro-white a.disabled {
	opacity: 0.2;
	filter: alpha(opacity=20);
	cursor: default;
	background-color: #FFF;
}

.ilightbox-toolbar.metro-white a.ilightbox-close:hover {
	background-color: #d94947;
	background-position: -30px 6px;
}

.ilightbox-toolbar.metro-white a.ilightbox-fullscreen {
	background-position: 6px -31px;
}

.ilightbox-toolbar.metro-white a.ilightbox-fullscreen:hover {
	background-position: -29px -31px;
}

.ilightbox-toolbar.metro-white a.ilightbox-play {
	background-position: 8px -55px;
}

.ilightbox-toolbar.metro-white a.ilightbox-play:hover {
	background-position: -30px -55px;
}

.ilightbox-toolbar.metro-white a.ilightbox-pause {
	background-position: 8px -81px;
}

.ilightbox-toolbar.metro-white a.ilightbox-pause:hover {
	background-position: -30px -81px;
}

.isMobile .ilightbox-toolbar.metro-white {
	background: #FFF;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	text-align: center;
	
	-webkit-box-shadow: 0 0 25px rgba(0,0,0,.2);
	        box-shadow: 0 0 25px rgba(0,0,0,.2);
}

.isMobile .ilightbox-toolbar.metro-white a, .isMobile .ilightbox-toolbar.metro-white a:hover {
	display: inline-block;
	float: none;
	width: 50px;
	height: 40px;
	background-size: 50%;
	background-position: 50%;
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-fullscreen {
	background-image: url(/public/a39d645d45f040071b8439735919bd0b.png);
	background-image/*\**/: url(/public/456a4eac40c87030c1601416357489bb.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-fullscreen:hover {
	background-image: url(/public/7b0607a2d8c494977a1274609acdc9cd.png);
	background-image/*\**/: url(/public/26413ea1f6d0c001e6f58c1940200c2e.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-close {
	background-image: url(/public/cdc94e81404d68b25728400cac575eb6.png);
	background-image/*\**/: url(/public/fad21d2315310dbb9f89c47f35860c2f.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-close:hover {
	background-image: url(/public/0d9c0d040341d9247cc8e5c9e92183a0.png);
	background-image/*\**/: url(/public/7e34f78ca2d8cdf0baa2be81420c645e.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-next-button {
	background-image: url(/public/5a0a085021fd02b516da756911428ff9.png);
	background-image/*\**/: url(/public/8e4e6fc4285289d836310124e120ed81.png)\9;  /* IE7-8 */
	background-position: 52% 50%;
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-next-button:hover {
	background-image: url(/public/ab02f344a662c1d070d6666a65a9a47b.png);
	background-image/*\**/: url(/public/c97b6cc3454f8671718de72618581e88.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-next-button.disabled {
	background-image: url(/public/5a0a085021fd02b516da756911428ff9.png);
	background-image/*\**/: url(/public/8e4e6fc4285289d836310124e120ed81.png)\9;  /* IE7-8 */
	background-position: 52% 50%;
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-prev-button {
	background-image: url(/public/dc48399057c87fcab906f7dfa882032b.png);
	background-image/*\**/: url(/public/a88476f24a9604bb9e819aecb53d126a.png)\9;  /* IE7-8 */
	background-position: 48% 50%;
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-prev-button:hover {
	background-image: url(/public/20f7acc79ebf678f84062c792c618e44.png);
	background-image/*\**/: url(/public/ae0e8d4bd961e079e28195dc7ee579a6.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-prev-button.disabled {
	background-image: url(/public/dc48399057c87fcab906f7dfa882032b.png);
	background-image/*\**/: url(/public/a88476f24a9604bb9e819aecb53d126a.png)\9;  /* IE7-8 */
	background-position: 48% 50%;
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-play {
	background-image: url(/public/991f70a1b5ea1f9f09a964c705103c69.png);
	background-image/*\**/: url(/public/2747e632c7515beeb533d59ec0e6e67d.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-play:hover {
	background-image: url(/public/f4e80ec8a6d26d22f35ba98f781ed1dc.png);
	background-image/*\**/: url(/public/c32ae6a0f0afa5d7f7f907b44eb8e742.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-pause {
	background-image: url(/public/df0301b5742318322cccb46f68e9dcf7.png);
	background-image/*\**/: url(/public/c346f8de557887cfd8667f7aebbfc5fb.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.metro-white a.ilightbox-pause:hover {
	background-image: url(/public/70719f12efbea31b05a697d45a02902a.png);
	background-image/*\**/: url(/public/3353d5210fad25c99b80e6cb0953b43c.png)\9;  /* IE7-8 */
}

/* Style thumbnails */
.ilightbox-thumbnails.metro-white.ilightbox-horizontal {
	height: 104px;
}

.ilightbox-thumbnails.metro-white.ilightbox-horizontal .ilightbox-thumbnails-container {
	height: 104px;
}

.ilightbox-thumbnails.metro-white.ilightbox-vertical {
	width: 144px;
}

.ilightbox-thumbnails.metro-white.ilightbox-vertical .ilightbox-thumbnails-container {
	width: 144px;
}

.ilightbox-thumbnails.metro-white .ilightbox-thumbnails-grid .ilightbox-thumbnail img {
	border: 2px solid #FFF;
	
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
	        box-shadow: 0 0 10px rgba(0,0,0,.2);
	
	-webkit-border-radius: 0;
	        border-radius: 0;
}

.ilightbox-thumbnails.metro-white .ilightbox-thumbnails-grid .ilightbox-thumbnail .ilightbox-thumbnail-video {
	background: url(/public/70deaec9f64daeba5fda1b8bf4a98b74.png) no-repeat center;
}

.ilightbox-holder.metro-white .ilightbox-inner-toolbar .ilightbox-title {
	font-size: 18px;
	padding: 10px 12px;
	padding-right: 60px;
	color: #535352;
}

.ilightbox-holder.metro-white .ilightbox-inner-toolbar .ilightbox-toolbar {
	left: auto;
	top: 5px;
	right: 5px;
}

.ilightbox-holder.metro-white .ilightbox-inner-toolbar .ilightbox-toolbar a {
	float: right;
}

/* Configure arrow buttons */
.ilightbox-button.metro-white.disabled {
	opacity: 0.1;
	filter: alpha(opacity=10);
	cursor: default;
}
.ilightbox-button.metro-white span {
	display: block;
	width: 100%;
	height: 100%;
}
.ilightbox-button.ilightbox-next-button.metro-white,
.ilightbox-button.ilightbox-prev-button.metro-white {
	bottom: 0;
	right: 0;
	left: 0;
	left/*\**/: 35%\9;  /* IE7-8 */
	right/*\**/: auto\9;  /* IE7-8 */
	width: 30%;
	height: 100px;
	margin: auto;
	background: url(/public/0df3f1d7e644aca225ef6122f967b1b7.png) no-repeat 50% -100px;
	background-color: #FFF;
	background-color: rgba(255,255,255,0.6);
}
.ilightbox-button.ilightbox-prev-button.metro-white {
	top: 0;
	bottom: auto;
	background-position: 50% 0;
}
.ilightbox-button.ilightbox-next-button.metro-white.horizontal,
.ilightbox-button.ilightbox-prev-button.metro-white.horizontal {
	right: 0;
	left: auto;
	top: 0;
	bottom: 0;
	top/*\**/: 36%\9;  /* IE7-8 */
	bottom/*\**/: auto\9;  /* IE7-8 */
	width: 100px;
	height: 30%;
	background-image: url(/public/c7f06c68325c2d37a7ecd5523fdb877b.png);
	background-position: -93px 50%;
}
.ilightbox-button.ilightbox-prev-button.metro-white.horizontal {
	right: auto;
	left: 0;
	background-position: -7px 50%;
}.ilightbox-overlay.mac {
	background: #2B2B2B;
}

.ilightbox-loader.mac {
	-webkit-box-shadow: black 0px 0px 85px, black 0px 0px 85px;
	        box-shadow: black 0px 0px 85px, black 0px 0px 85px;
}
.ilightbox-loader.mac div {
	background: #141414 url(/public/42f8a037e1c52f08802b714900f31ff0.gif) no-repeat center;
}

.ilightbox-holder.mac {
	padding: 2px;
	background: rgba(35,35,35,.9);
	background/*\**/: rgb(35,35,35)\9;  /* IE7-8 */

	-webkit-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, .6);
	-moz-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, .6);
	box-shadow: 0 38px 30px -18px rgba(0, 0, 0, .6);
}

.ilightbox-holder.mac .ilightbox-container  .ilightbox-caption {
	background: url(/public/42f249f97f8bfd9950e985d7fa0ec7c9.png);
	color: #FFF;
	bottom: 15px;
	left: 15px;
	right: 15px;
	border: rgba(255,255,255,0.8) 1px solid;
	border/*\**/: rgb(245,245,245) 1px solid\9;  /* IE7-8 */

	-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.5);
	box-shadow: 0 0 2px rgba(0,0,0,0.5);

	-webkit-border-radius: 3px;
	        border-radius: 3px;
}

.ilightbox-holder.mac .ilightbox-container  .ilightbox-social {
	background: #FFF;
}

.ilightbox-holder.mac .ilightbox-alert {
	background: url(/public/c84d8acbf4bae5563c6db964e0ed59b8.png) no-repeat center top;
	color: #555;
}

/* Style toolbar */
.ilightbox-toolbar.mac {
	top: 15px;
	left: 15px;
	background: rgb(65,65,65); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(65,65,65,1) 0%, rgba(65,65,65,1) 40%, rgba(50,50,50,1) 60%, rgba(50,50,50,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(65,65,65,1)), color-stop(40%,rgba(65,65,65,1)), color-stop(60%,rgba(50,50,50,1)), color-stop(100%,rgba(50,50,50,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#414141', endColorstr='#323232',GradientType=0 ); /* IE7-9 */
	border: rgba(30,30,30,.6) 1px solid;
	border/*\**/: rgb(30,30,30) 1px solid\9;  /* IE7-8 */
	overflow: hidden;
	
	-webkit-border-radius: 3px;
	        border-radius: 3px;
}

.ilightbox-toolbar.mac a {
	width: 28px;
	height: 28px;
	background: no-repeat 50%;
}

.ilightbox-toolbar.mac a.disabled {
	opacity: 0.2;
	filter: alpha(opacity=20);  /* IE7-8 */
	cursor: default;
	background-color: transparent !important;
}

.ilightbox-toolbar.mac a:hover {
	background-color: #4B4B4B;
}

.ilightbox-toolbar.mac a.ilightbox-close {
	background-image: url(/public/c11ec465d12d8e4f21141c06ca9f4000.png);
}

.ilightbox-toolbar.mac a.ilightbox-fullscreen {
	background-image: url(/public/d7f4984edc29c0f50dcf0ae296af69d5.png);
	right: 35px;
}

.ilightbox-toolbar.mac a.ilightbox-play {
	background-image: url(/public/e83f7f89af6a2c765cc741c35daaa964.png);
	right: 35px;
}

.ilightbox-toolbar.mac a.ilightbox-pause {
	background-image: url(/public/bff7156ebc6fab58acd7d2ff4b88bdab.png);
	right: 35px;
}

.isMobile .ilightbox-toolbar.mac {
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: rgb(65,65,65); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(65,65,65,1) 0%, rgba(65,65,65,1) 40%, rgba(50,50,50,1) 60%, rgba(50,50,50,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(65,65,65,1)), color-stop(40%,rgba(65,65,65,1)), color-stop(60%,rgba(50,50,50,1)), color-stop(100%,rgba(50,50,50,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#414141', endColorstr='#323232',GradientType=0 ); /* IE7-9 */
	border: 0;
	border-top: rgba(30,30,30,.6) 1px solid;
	border-top/*\**/: rgb(30,30,30) 1px solid\9;  /* IE7-8 */
	overflow: hidden;
	text-align: center;
	
	-webkit-border-radius: 3px;
	        border-radius: 3px;
}

.isMobile .ilightbox-toolbar.mac a {
	display: inline-block;
	float: none;
	width: 50px;
	height: 40px;
	background-size: 50%;
	background-position: 50% !important;
}

.isMobile .ilightbox-toolbar.mac a.ilightbox-fullscreen {
	background-image: url(/public/faf71540be02227160169e603a705c13.png);
	background-image/*\**/: url(/public/fe8b08dc215bfd8fbdebbb7a90fc5f69.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.mac a.ilightbox-close {
	background-image: url(/public/0df94a736e0eb1741922a753d5c59d11.png);
	background-image/*\**/: url(/public/c57b36ff3543be2561b379bc556f2adf.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.mac a.ilightbox-next-button {
	background-image: url(/public/c6a300e48594d91e561c08662c8808c5.png);
	background-position: 52% 50% !important;
	background-image/*\**/: url(/public/6f31e9efa33e3f0a008dd9e2a83d1e3e.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.mac a.ilightbox-prev-button {
	background-image: url(/public/40465972502099aef42d34b2ad6aa182.png);
	background-position: 48% 50% !important;
	background-image/*\**/: url(/public/b029676a16b65a6a8d46d36065c79cb7.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.mac a.ilightbox-play {
	background-image: url(/public/347a034e91570b10edd342a987425887.png);
	background-size: 80%;
	background-position: 70% 50% !important;
	background-image/*\**/: url(/public/560112af65df9852be74ed7ebb50cfef.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.mac a.ilightbox-pause {
	background-image: url(/public/fcd4e0f88804458d57eb338cd3ff6c67.png);
	background-size: 80%;
	background-image/*\**/: url(/public/037cecf94a757b52a96e77e6ab588398.png)\9;  /* IE7-8 */
}

.ilightbox-holder.mac .ilightbox-inner-toolbar .ilightbox-title {
	font-size: 18px;
	padding: 10px 8px;
	color: #000;
}

.ilightbox-holder.mac .ilightbox-inner-toolbar .ilightbox-toolbar {
	display: inline-block;
	left: -15px;
	top: -15px;
}

.ilightbox-holder.mac .ilightbox-inner-toolbar .ilightbox-toolbar a {
	float: left;
	
	-webkit-border-radius: 0;
	        border-radius: 0;
}

/* Style thumbnails */
.ilightbox-thumbnails.mac .ilightbox-thumbnails-grid .ilightbox-thumbnail img {
	box-shadow: 0 0 6px rgba(0, 0, 0, .9);
	
	-webkit-border-radius: 0;
	        border-radius: 0;
}

.ilightbox-thumbnails.mac .ilightbox-thumbnails-grid .ilightbox-thumbnail .ilightbox-thumbnail-video {
	background: url(/public/0de625a948c3e97a7f7d85dc62c68473.png) no-repeat center;
}

/* Configure arrow buttons */
.ilightbox-button.mac.disabled {
	opacity: 0.2;
	filter: alpha(opacity=20);  /* IE7-8 */
	cursor: default;
	background: #3b3b3b !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#414141', endColorstr='#323232',GradientType=0 ); /* IE7-9 */
}
.ilightbox-button.mac span {
	display: block;
	width: 100%;
	height: 100%;
}
.ilightbox-button.mac {
	bottom: 0;
	right: 0;
	left: 0;
	left/*\**/: 45%\9;  /* IE7-8 */
	right/*\**/: auto\9;  /* IE7-8 */
	width: 95px;
	height: 55px;
	margin: auto;
	background: rgb(65,65,65); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(65,65,65,1) 0%, rgba(65,65,65,1) 40%, rgba(50,50,50,1) 60%, rgba(50,50,50,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(65,65,65,1)), color-stop(40%,rgba(65,65,65,1)), color-stop(60%,rgba(50,50,50,1)), color-stop(100%,rgba(50,50,50,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(65,65,65,1) 0%,rgba(65,65,65,1) 40%,rgba(50,50,50,1) 60%,rgba(50,50,50,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#414141', endColorstr='#323232',GradientType=0 ); /* IE7-9 */
	border: rgba(30,30,30,.6) 1px solid;
	border/*\**/: rgb(30,30,30) 1px solid\9;  /* IE7-8 */

	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
		    border-top-left-radius: 5px;
		    border-top-right-radius: 5px;
}
.ilightbox-button.ilightbox-button.mac:hover {
	background: rgb(75,75,75); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(75,75,75,1) 0%, rgba(75,75,75,1) 40%, rgba(60,60,60,1) 60%, rgba(60,60,60,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(75,75,75,1)), color-stop(40%,rgba(75,75,75,1)), color-stop(60%,rgba(60,60,60,1)), color-stop(100%,rgba(60,60,60,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(75,75,75,1) 0%,rgba(75,75,75,1) 40%,rgba(60,60,60,1) 60%,rgba(60,60,60,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(75,75,75,1) 0%,rgba(75,75,75,1) 40%,rgba(60,60,60,1) 60%,rgba(60,60,60,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(75,75,75,1) 0%,rgba(75,75,75,1) 40%,rgba(60,60,60,1) 60%,rgba(60,60,60,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(75,75,75,1) 0%,rgba(75,75,75,1) 40%,rgba(60,60,60,1) 60%,rgba(60,60,60,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b4b4b', endColorstr='#3c3c3c',GradientType=0 ); /* IE7-9 */
}
.ilightbox-button.ilightbox-prev-button.mac {
	top: 0;
	bottom: auto;

	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
		    border-bottom-left-radius: 5px;
		    border-bottom-right-radius: 5px;
}
.ilightbox-button.ilightbox-next-button.mac span {
	background: url(/public/175fb05e297b43fc1aae6b983e73214f.png) no-repeat 50% 75%;
}
.ilightbox-button.ilightbox-prev-button.mac span {
	background: url(/public/31b378c9ff5a5c4fcfe19574084bf179.png) no-repeat 50% 25%;
}
.ilightbox-button.ilightbox-next-button.mac.horizontal,
.ilightbox-button.ilightbox-prev-button.mac.horizontal {
	right: 0;
	left: auto;
	top: 0;
	bottom: 0;
	top/*\**/: 41%\9;  /* IE7-8 */
	bottom/*\**/: auto\9;  /* IE7-8 */
	width: 55px;
	height: 95px;

	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
		    border-bottom-left-radius: 5px;
		    border-top-left-radius: 5px;
}
.ilightbox-button.ilightbox-prev-button.mac.horizontal {
	right: auto;
	left: 0;

	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
		    border-bottom-right-radius: 5px;
		    border-top-right-radius: 5px;
}
.ilightbox-button.ilightbox-next-button.mac.horizontal span {
	background: url(/public/c6a300e48594d91e561c08662c8808c5.png) no-repeat 75% 50%;
}
.ilightbox-button.ilightbox-prev-button.mac.horizontal span {
	background: url(/public/40465972502099aef42d34b2ad6aa182.png) no-repeat 25% 50%;
}.ilightbox-overlay.smooth {
	background: #0F0F0F;
}

.ilightbox-loader.smooth {
	-webkit-box-shadow: rgba(0,0,0,1) 0px 0px 55px, rgba(0,0,0,.3) 0px 0px 55px;
	        box-shadow: rgba(0,0,0,1) 0px 0px 55px, rgba(0,0,0,.3) 0px 0px 55px;
}
.ilightbox-loader.smooth div {
	background: #000 url(/public/9d9ac53c4d412cf08de635eb48f36a8f.gif) no-repeat center;
}

.ilightbox-holder.smooth {
	border/*\**/: black 1px solid\9;  /* IE7-8 */

	-webkit-box-shadow: 0 0 45px rgba(0,0,0,.9);
	        box-shadow: 0 0 45px rgba(0,0,0,.9);
}

.ilightbox-holder.smooth .ilightbox-container > * {
	pointer-events: all;
}

.ilightbox-holder.smooth .ilightbox-container:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	
	-webkit-box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,0.11);
	        box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,0.11);
}

.ilightbox-holder.smooth .ilightbox-container .ilightbox-caption {
	background: url(/public/67db284bca562c72078a4240b372a770.png);
	border: 1px solid rgba(0,0,0,0.2);
	left: 1px;
	right: 1px;
	bottom: 1px;
	color: #FFF;
	text-shadow: 0 0 3px rgba(0, 0, 0, .75);
	
	-webkit-border-radius: 0;
	        border-radius: 0;
}

.ilightbox-holder.smooth .ilightbox-container .ilightbox-social {
	background: url(/public/67db284bca562c72078a4240b372a770.png);
	border: 1px solid rgba(0,0,0,0.2);
	left: 1px;
	top: 1px;
	
	-webkit-border-radius: 0;
	        border-radius: 0;
}

.ilightbox-holder.smooth .ilightbox-alert {
	background: url(/public/c84d8acbf4bae5563c6db964e0ed59b8.png) no-repeat center top;
	color: #555;
}

/* Style toolbar */
.ilightbox-toolbar.smooth {
	top: 8px;
	left: 8px;
	height: 25px;
}

.ilightbox-toolbar.smooth a {
	width: 27px;
	height: 25px;
	background: #000 url(/public/d0bec012123d3edf0901c935eb3e3747.png) no-repeat 7px 6px;
}

.ilightbox-toolbar.smooth a:hover {
	background-color: #51b7ff;
}

.ilightbox-toolbar.smooth a.ilightbox-close:hover {
	background-color: #d94947;
}

.ilightbox-toolbar.smooth a.disabled {
	opacity: 0.2;
	filter: alpha(opacity=20);
	cursor: default;
	background-color: #000;
	
	-webkit-box-shadow: 0 0 25px rgba(0,0,0,.8);
	        box-shadow: 0 0 25px rgba(0,0,0,.8);
}

.ilightbox-toolbar.smooth a.ilightbox-fullscreen {
	background-position: 6px -31px;
}

.ilightbox-toolbar.smooth a.ilightbox-play {
	background-position: 8px -55px;
}

.ilightbox-toolbar.smooth a.ilightbox-pause {
	background-position: 8px -81px;
}

.isMobile .ilightbox-toolbar.smooth {
	background: #000;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	text-align: center;
}

.isMobile .ilightbox-toolbar.smooth a {
	display: inline-block;
	float: none;
	width: 50px;
	height: 40px;
	background-size: 50%;
	background-position: 50%;
}

.isMobile .ilightbox-toolbar.smooth a.ilightbox-fullscreen {
	background-image: url(/public/7b0607a2d8c494977a1274609acdc9cd.png);
	background-image/*\**/: url(/public/26413ea1f6d0c001e6f58c1940200c2e.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.smooth a.ilightbox-close {
	background-image: url(/public/0d9c0d040341d9247cc8e5c9e92183a0.png);
	background-image/*\**/: url(/public/7e34f78ca2d8cdf0baa2be81420c645e.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.smooth a.ilightbox-next-button {
	background-image: url(/public/ab02f344a662c1d070d6666a65a9a47b.png);
	background-image/*\**/: url(/public/c97b6cc3454f8671718de72618581e88.png)\9;  /* IE7-8 */
	background-position: 52% 50%;
}

.isMobile .ilightbox-toolbar.smooth a.ilightbox-prev-button {
	background-image: url(/public/20f7acc79ebf678f84062c792c618e44.png);
	background-image/*\**/: url(/public/ae0e8d4bd961e079e28195dc7ee579a6.png)\9;  /* IE7-8 */
	background-position: 48% 50%;
}

.isMobile .ilightbox-toolbar.smooth a.ilightbox-play {
	background-image: url(/public/f4e80ec8a6d26d22f35ba98f781ed1dc.png);
	background-image/*\**/: url(/public/c32ae6a0f0afa5d7f7f907b44eb8e742.png)\9;  /* IE7-8 */
}

.isMobile .ilightbox-toolbar.smooth a.ilightbox-pause {
	background-image: url(/public/70719f12efbea31b05a697d45a02902a.png);
	background-image/*\**/: url(/public/3353d5210fad25c99b80e6cb0953b43c.png)\9;  /* IE7-8 */
}

.ilightbox-holder.smooth .ilightbox-inner-toolbar .ilightbox-title {
	font-size: 18px;
	padding: 10px 12px;
	padding-right: 60px;
	color: #acacad;
}

.ilightbox-holder.smooth .ilightbox-inner-toolbar .ilightbox-toolbar {
	left: auto;
	top: 5px;
	right: 5px;
}

.ilightbox-holder.smooth .ilightbox-inner-toolbar .ilightbox-toolbar a {
	float: right;
}

/* Style thumbnails */
.ilightbox-thumbnails.smooth.ilightbox-horizontal {
	height: 100px;
}

.ilightbox-thumbnails.smooth.ilightbox-horizontal .ilightbox-thumbnails-container {
	height: 100px;
}

.ilightbox-thumbnails.smooth.ilightbox-vertical {
	width: 140px;
}

.ilightbox-thumbnails.smooth.ilightbox-vertical .ilightbox-thumbnails-container {
	width: 140px;
}

.ilightbox-thumbnails.smooth .ilightbox-thumbnails-grid .ilightbox-thumbnail {
	padding: 10px;
}

.ilightbox-thumbnails.smooth .ilightbox-thumbnails-grid .ilightbox-thumbnail img {
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.8);
	        box-shadow: 0 0 10px rgba(0,0,0,.8);
	
	-webkit-border-radius: 0;
	        border-radius: 0;
}

.ilightbox-thumbnails.smooth  .ilightbox-thumbnails-grid .ilightbox-thumbnail:after {
	display: block;
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	margin: auto;
	pointer-events: none;
	
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	
	-webkit-box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,0.11);
	        box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,0.11);
}

.ilightbox-thumbnails.smooth.ilightbox-vertical  .ilightbox-thumbnails-grid .ilightbox-thumbnail {
	margin-bottom: -10px;
}

.ilightbox-thumbnails.smooth.ilightbox-horizontal  .ilightbox-thumbnails-grid .ilightbox-thumbnail {
	margin-right: -10px;
}

.ilightbox-thumbnails.smooth .ilightbox-thumbnails-grid .ilightbox-thumbnail .ilightbox-thumbnail-video {
	background: url(/public/70deaec9f64daeba5fda1b8bf4a98b74.png) no-repeat center;
}

/* Configure arrow buttons */
.ilightbox-button.smooth.disabled {
	opacity: 0.1;
	filter: alpha(opacity=10);
	cursor: default;
}
.ilightbox-button.smooth span {
	display: block;
	width: 100%;
	height: 100%;
}
.ilightbox-button.smooth {
	bottom: 0;
	right: 0;
	left: 0;
	left/*\**/: 45%\9;  /* IE7-8 */
	right/*\**/: auto\9;  /* IE7-8 */
	width: 120px;
	height: 70px;
	margin: auto;
	background: url(/public/a52e4e4dfcf9cae0d5becb6b77046313.png) no-repeat 50% -110px;
	background-color: #000;
	background-color: rgba(0,0,0,0.5);
	border: rgba(255,255,255,.2) 1px solid;
	border/*\**/: rgb(100,100,100) 1px solid\9;  /* IE7-8 */
}
.ilightbox-button.ilightbox-next-button.smooth {
	border-bottom: 0;
}
.ilightbox-button.ilightbox-prev-button.smooth {
	top: 0;
	bottom: auto;
	background-position: 50% -15px;
	border-top: 0;
}
.ilightbox-button.smooth.horizontal {
	right: 0;
	left: auto;
	top: 0;
	bottom: 0;
	top/*\**/: 41%\9;  /* IE7-8 */
	bottom/*\**/: auto\9;  /* IE7-8 */
	width: 70px;
	height: 120px;
	background-image: url(/public/0985ababc5dc0042860f7b482832c567.png);
	background-position: -110px 50%;
	border: rgba(255,255,255,.2) 1px solid;
	border/*\**/: rgb(100,100,100) 1px solid\9;  /* IE7-8 */
}
.ilightbox-button.ilightbox-next-button.smooth.horizontal {
	border-right: 0;
}
.ilightbox-button.ilightbox-prev-button.smooth.horizontal {
	right: auto;
	left: 0;
	background-position: -18px 50%;
	border-left: 0;
}/* Import Skins */
/* Reset Styles */
.ilightbox-overlay, .ilightbox-loader, .ilightbox-loader *, .ilightbox-holder, .ilightbox-holder .ilightbox-container, .ilightbox-holder .ilightbox-container img.ilightbox-image, .ilightbox-holder .ilightbox-container .ilightbox-caption, .ilightbox-toolbar, .ilightbox-toolbar *, .ilightbox-thumbnails, .ilightbox-thumbnails *, .ilightbox-holder .ilightbox-container .ilightbox-social, .ilightbox-holder .ilightbox-container .ilightbox-social * {
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  line-height: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -o-user-select: none;
  user-select: none; }

.ilightbox-overlay, .ilightbox-loader, .ilightbox-loader *, .ilightbox-holder .ilightbox-container .ilightbox-caption, .ilightbox-toolbar, .ilightbox-thumbnails, .ilightbox-thumbnails *, .ilightbox-holder .ilightbox-container .ilightbox-social {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0); }

/* Disable & Hide Scrollbar */
.ilightbox-noscroll {
  overflow: hidden; }

.ilightbox-closedhand * {
  cursor: url(/public/5e32821dbc1a3b06046960ada9c348c7.cur), default !important; }

.ilightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000; }

.ilightbox-loader {
  position: fixed;
  z-index: 100005;
  top: 45%;
  left: -192px;
  padding-left: 30px;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  -webkit-border-radius: 0 100px 100px 0;
  border-radius: 0 100px 100px 0; }

.ilightbox-loader div {
  width: 72px;
  height: 72px;
  -webkit-border-radius: 0 100px 100px 0;
  border-radius: 0 100px 100px 0; }

.ilightbox-loader.horizontal {
  left: 45%;
  top: -192px;
  padding: 0;
  padding-top: 30px;
  -webkit-border-radius: 0 0 100px 100px;
  border-radius: 0 0 100px 100px; }

.ilightbox-loader.horizontal div {
  -webkit-border-radius: 0 0 100px 100px;
  border-radius: 0 0 100px 100px; }

.ilightbox-toolbar {
  display: none;
  position: fixed;
  z-index: 100010; }

.ilightbox-toolbar a {
  float: left;
  cursor: pointer; }

.ilightbox-toolbar .ilightbox-prev-button,
.ilightbox-toolbar .ilightbox-next-button {
  display: none; }

.ilightbox-thumbnails {
  display: block;
  position: fixed;
  z-index: 100009; }

.ilightbox-thumbnails.ilightbox-horizontal {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; }

.ilightbox-thumbnails.ilightbox-vertical {
  top: 0;
  right: 0;
  width: 140px;
  height: 100%;
  overflow: hidden; }

.ilightbox-thumbnails .ilightbox-thumbnails-container {
  display: block;
  position: relative; }

.ilightbox-thumbnails.ilightbox-horizontal .ilightbox-thumbnails-container {
  width: 100%;
  height: 100px; }

.ilightbox-thumbnails.ilightbox-vertical .ilightbox-thumbnails-container {
  width: 140px;
  height: 100%; }

.ilightbox-thumbnails .ilightbox-thumbnails-grid {
  display: block;
  position: absolute;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0); }

.ilightbox-thumbnails .ilightbox-thumbnails-grid .ilightbox-thumbnail {
  display: block;
  cursor: pointer;
  padding: 10px;
  position: relative; }

.ilightbox-thumbnails .ilightbox-thumbnails-grid .ilightbox-thumbnail img {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -ms-interpolation-mode: bicubic; }

.ilightbox-thumbnails .ilightbox-thumbnails-grid .ilightbox-thumbnail .ilightbox-thumbnail-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .7; }

.ilightbox-thumbnails .ilightbox-thumbnails-grid .ilightbox-thumbnail .ilightbox-thumbnail-icon:hover {
  opacity: 1; }

.ilightbox-holder {
  display: none;
  position: fixed;
  z-index: 100003;
  -webkit-transform: none;
  -moz-transform: none; }

.ilightbox-holder.ilightbox-next, .ilightbox-holder.ilightbox-prev {
  cursor: pointer; }

.ilightbox-holder div.ilightbox-container {
  position: relative;
  width: 100%;
  height: 100%; }

.ilightbox-holder.supportTouch div.ilightbox-container {
  overflow: scroll;
  -webkit-overflow-scrolling: touch; }

.ilightbox-holder img.ilightbox-image {
  width: 100%;
  height: 100%; }

.ilightbox-holder .ilightbox-container .ilightbox-caption {
  display: none;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  max-width: 100%;
  padding: 5px 10px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 150%;
  word-wrap: break-word;
  z-index: 20003;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0; }

.ilightbox-holder .ilightbox-container .ilightbox-social {
  display: none;
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px;
  padding-left: 0;
  z-index: 20003;
  height: 16px; }

.ilightbox-holder .ilightbox-container .ilightbox-social ul {
  float: left;
  list-style: none;
  height: 16px; }

.ilightbox-holder .ilightbox-container .ilightbox-social ul li {
  display: inline; }

.ilightbox-holder .ilightbox-container .ilightbox-social ul li a {
  float: left;
  margin-left: 5px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: 50%; }

.ilightbox-holder .ilightbox-container .ilightbox-social ul li.facebook a {
  background-image: url(/public/8221d882015899c7087b8e9a0d90f4a4.png); }

.ilightbox-holder .ilightbox-container .ilightbox-social ul li.digg a {
  background-image: url(/public/88392c6f275433da0f77240da6ba4a2e.png); }

.ilightbox-holder .ilightbox-container .ilightbox-social ul li.twitter a {
  background-image: url(/public/6569499524bf6fcb90ea661570020946.png); }

.ilightbox-holder .ilightbox-container .ilightbox-social ul li.delicious a {
  background-image: url(/public/725e3fa23bbe9d10b461e89cae2f86ab.png); }

.ilightbox-holder .ilightbox-container .ilightbox-social ul li.reddit a {
  background-image: url(/public/9ecc095d233291eeedeb536b32ca5b66.png); }

.ilightbox-holder .ilightbox-container .ilightbox-social ul li.googleplus a {
  background-image: url(/public/0ae569016e1b18b68d6aaa3d375597bb.png); }

.ilightbox-holder .ilightbox-alert {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  padding-top: 100px;
  margin: auto;
  width: 300px;
  height: 50px; }

.ilightbox-holder .ilightbox-wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

.ilightbox-holder .ilightbox-inner-toolbar {
  position: relative;
  z-index: 100; }

.ilightbox-holder .ilightbox-inner-toolbar .ilightbox-toolbar {
  position: absolute; }

/* Style arrow buttons */
.ilightbox-button {
  position: fixed;
  z-index: 100008;
  cursor: pointer; }

/* Style mobile devices */
.isMobile .ilightbox-button,
.isMobile .ilightbox-thumbnails {
  display: none !important; }

.isMobile .ilightbox-toolbar .ilightbox-prev-button,
.isMobile .ilightbox-toolbar .ilightbox-next-button {
  display: block; }
/*********************************
COMPONENTS 
*********************************/
/***
JANGO v2.0.0
General reset
***/
/* Set default body */
body {
  color: #5c6873;
  font-family: "Roboto Condensed", sans-serif;
  padding: 0px !important;
  margin: 0px !important;
  font-weight: 300;
  font-size: 17px; }

a {
  outline: none !important;
  -webkit-transition: back 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out; }

a:focus,
a:hover,
a:active {
  outline: none !important;
  text-decoration: none; }

/*
 Internet Explorer 10 doesn't differentiate device width from viewport width, and thus doesn't 
 properly apply the media queries in Bootstrap's CSS. To address this, 
 you can optionally include the following CSS and JavaScript to work around this problem until Microsoft issues a fix.
*/
@-webkit-viewport {
  width: device-width; }

@-moz-viewport {
  width: device-width; }

@-ms-viewport {
  width: device-width; }

@-o-viewport {
  width: device-width; }

@viewport {
  width: device-width; }

/*
 Internet Explorer 10 doesn't differentiate device width from viewport width, 
 and thus doesn't properly apply the media queries in Bootstrap's CSS. To address this, following CSS code applied 
*/
@-ms-viewport {
  width: auto !important; }

h6 {
  color: #3f444a;
  font-size: 12px;
  margin: 5px 0; }

h5 {
  color: #3f444a;
  font-size: 14px;
  margin: 7px 0; }

h4 {
  color: #3f444a;
  font-size: 16px;
  margin: 8px 0; }

h3 {
  color: #3f444a;
  font-size: 18px;
  margin: 10px 0; }

h2 {
  color: #3f444a;
  font-size: 20px;
  margin: 10px 0; }

h1 {
  color: #3f444a;
  font-size: 22px;
  margin: 10px 0; }

.c-reset {
  padding: 0;
  margin: 0; }

.c-hide {
  display: none; }

.c-overflow-hide {
  overflow: hidden; }

/* linkify buttons */
.c-link {
  background: 0;
  border: 0;
  outline: none; }

.c-border {
  border: 1px solid #eeeeee; }

.c-border-thick {
  border: 2px solid #eeeeee; }

.c-border-top {
  border-top: 1px solid #eeeeee; }

.c-border-right {
  border-right: 1px solid #eeeeee; }

.c-border-bottom {
  border-bottom: 1px solid #eeeeee; }

.c-border-left {
  border-left: 1px solid #eeeeee; }

.c-no-border {
  border: 0 !important; }

.c-shadow {
  box-shadow: 0px 3px 18px -5px rgba(0, 0, 0, 0.3); }

.c-square {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0; }

.c-rounded {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px; }

.c-bs-grid-reset-space .row,
.c-bs-grid-reset-space div[class^="col-"],
.c-bs-grid-reset-space div[class*=" col-"] {
  margin: 0;
  padding: 0; }

.c-bs-grid-small-space .row {
  margin-left: -5px;
  margin-right: -5px; }
  .c-bs-grid-small-space .row div[class^="col-"],
  .c-bs-grid-small-space .row div[class*=" col-"] {
    padding-left: 5px;
    padding-right: 5px; }

.c-margin-t-5 {
  margin-top: 5px; }

.c-margin-t-8 {
  margin-top: 8px; }

.c-margin-t-10 {
  margin-top: 10px !important; }

.c-margin-t-15 {
  margin-top: 15px !important; }

.c-margin-t-20 {
  margin-top: 20px; }

.c-margin-t-25 {
  margin-top: 25px; }

.c-margin-t-30 {
  margin-top: 30px; }

.c-margin-t-40 {
  margin-top: 40px; }

.c-margin-t-50 {
  margin-top: 50px; }

.c-margin-t-60 {
  margin-top: 60px; }

.c-margin-t-80 {
  margin-top: 80px; }

.c-margin-b-5 {
  margin-bottom: 5px !important; }

.c-margin-b-10 {
  margin-bottom: 10px; }

.c-margin-b-15 {
  margin-bottom: 15px !important; }

.c-margin-b-20 {
  margin-bottom: 20px; }

.c-margin-b-25 {
  margin-bottom: 25px; }

.c-margin-b-30 {
  margin-bottom: 30px; }

.c-margin-b-40 {
  margin-bottom: 40px; }

.c-margin-b-50 {
  margin-bottom: 50px; }

.c-margin-b-60 {
  margin-bottom: 60px; }

.c-margin-b-80 {
  margin-bottom: 80px; }

.c-margin-b-100 {
  margin-bottom: 100px; }

.c-margin-r-40 {
  margin-right: 40px; }

.c-padding-10 {
  padding: 10px; }

.c-padding-20 {
  padding: 20px; }

.c-left,
.c-font-left {
  text-align: left; }

.c-center,
.c-font-center {
  text-align: center; }

.c-right,
.c-font-right {
  text-align: right; }

.c-font-thin {
  font-weight: 300 !important; }

.c-font-slim {
  font-weight: 400 !important; }

.c-font-sbold {
  font-weight: 500 !important; }

.c-font-bold {
  font-weight: 600 !important; }

.c-font-uppercase {
  text-transform: uppercase; }

.c-font-lowercase {
  text-transform: initial !important; }

.c-font-title {
  color: #3f444a !important; }

.c-font-subtitle {
  color: #5c6873 !important; }

.c-font-line-through {
  text-decoration: line-through; }

.c-font-10 {
  font-size: 10px; }

.c-font-11 {
  font-size: 11px; }

.c-font-12 {
  font-size: 12px; }

.c-font-13 {
  font-size: 13px; }

.c-font-14 {
  font-size: 14px; }

.c-font-15 {
  font-size: 15px; }

.c-font-16 {
  font-size: 16px; }

.c-font-17 {
  font-size: 17px; }

.c-font-18 {
  font-size: 18px; }

.c-font-19 {
  font-size: 19px; }

.c-font-20 {
  font-size: 20px; }

.c-font-21 {
  font-size: 21px; }

.c-font-22 {
  font-size: 22px; }

.c-font-23 {
  font-size: 23px; }

.c-font-24 {
  font-size: 24px; }

.c-font-25 {
  font-size: 25px; }

.c-font-26 {
  font-size: 26px; }

.c-font-27 {
  font-size: 27px; }

.c-font-28 {
  font-size: 28px; }

.c-font-29 {
  font-size: 29px; }

.c-font-30 {
  font-size: 30px; }

.c-font-31 {
  font-size: 31px; }

.c-font-32 {
  font-size: 32px; }

.c-font-33 {
  font-size: 33px; }

.c-font-34 {
  font-size: 34px; }

.c-font-35 {
  font-size: 35px; }

.c-font-36 {
  font-size: 36px; }

.c-font-37 {
  font-size: 37px; }

.c-font-38 {
  font-size: 38px; }

.c-font-39 {
  font-size: 39px; }

.c-font-40 {
  font-size: 40px; }

.c-font-41 {
  font-size: 41px; }

.c-font-42 {
  font-size: 42px; }

.c-font-43 {
  font-size: 43px; }

.c-font-44 {
  font-size: 44px; }

.c-font-45 {
  font-size: 45px; }

.c-font-46 {
  font-size: 46px; }

.c-font-47 {
  font-size: 47px; }

.c-font-48 {
  font-size: 48px; }

.c-font-49 {
  font-size: 49px; }

.c-font-50 {
  font-size: 50px; }

.c-font-51 {
  font-size: 51px; }

.c-font-52 {
  font-size: 52px; }

.c-font-53 {
  font-size: 53px; }

.c-font-54 {
  font-size: 54px; }

.c-font-55 {
  font-size: 55px; }

.c-font-56 {
  font-size: 56px; }

.c-font-57 {
  font-size: 57px; }

.c-font-58 {
  font-size: 58px; }

.c-font-59 {
  font-size: 59px; }

.c-font-60 {
  font-size: 60px; }

.c-font-61 {
  font-size: 61px; }

.c-font-62 {
  font-size: 62px; }

.c-font-63 {
  font-size: 63px; }

.c-font-64 {
  font-size: 64px; }

.c-font-65 {
  font-size: 65px; }

.c-font-66 {
  font-size: 66px; }

.c-font-67 {
  font-size: 67px; }

.c-font-68 {
  font-size: 68px; }

.c-font-69 {
  font-size: 69px; }

.c-font-70 {
  font-size: 70px; }

.c-font-71 {
  font-size: 71px; }

.c-font-72 {
  font-size: 72px; }

.c-font-73 {
  font-size: 73px; }

.c-font-74 {
  font-size: 74px; }

.c-font-75 {
  font-size: 75px; }

.c-font-76 {
  font-size: 76px; }

.c-font-77 {
  font-size: 77px; }

.c-font-78 {
  font-size: 78px; }

.c-font-79 {
  font-size: 79px; }

.c-font-80 {
  font-size: 80px; }

.c-font-81 {
  font-size: 81px; }

.c-font-82 {
  font-size: 82px; }

.c-font-83 {
  font-size: 83px; }

.c-font-84 {
  font-size: 84px; }

.c-font-85 {
  font-size: 85px; }

.c-font-86 {
  font-size: 86px; }

.c-font-87 {
  font-size: 87px; }

.c-font-88 {
  font-size: 88px; }

.c-font-89 {
  font-size: 89px; }

.c-font-90 {
  font-size: 90px; }

.c-line-height-10 {
  line-height: 10px; }

.c-line-height-11 {
  line-height: 11px; }

.c-line-height-12 {
  line-height: 12px; }

.c-line-height-13 {
  line-height: 13px; }

.c-line-height-14 {
  line-height: 14px; }

.c-line-height-15 {
  line-height: 15px; }

.c-line-height-16 {
  line-height: 16px; }

.c-line-height-17 {
  line-height: 17px; }

.c-line-height-18 {
  line-height: 18px; }

.c-line-height-19 {
  line-height: 19px; }

.c-line-height-20 {
  line-height: 20px; }

.c-line-height-21 {
  line-height: 21px; }

.c-line-height-22 {
  line-height: 22px; }

.c-line-height-23 {
  line-height: 23px; }

.c-line-height-24 {
  line-height: 24px; }

.c-line-height-25 {
  line-height: 25px; }

.c-line-height-26 {
  line-height: 26px; }

.c-line-height-27 {
  line-height: 27px; }

.c-line-height-28 {
  line-height: 28px; }

.c-line-height-29 {
  line-height: 29px; }

.c-line-height-30 {
  line-height: 30px; }

.c-line-height-31 {
  line-height: 31px; }

.c-line-height-32 {
  line-height: 32px; }

.c-line-height-33 {
  line-height: 33px; }

.c-line-height-34 {
  line-height: 34px; }

.c-line-height-35 {
  line-height: 35px; }

.c-line-height-36 {
  line-height: 36px; }

.c-line-height-37 {
  line-height: 37px; }

.c-line-height-38 {
  line-height: 38px; }

.c-line-height-39 {
  line-height: 39px; }

.c-line-height-40 {
  line-height: 40px; }

/* Font Colors */
.c-font-white {
  color: #FFFFFF !important; }
  .c-font-white small {
    color: #FFFFFF !important; }

.c-font-white-hover:hover {
  color: #FFFFFF !important; }

.c-font-black {
  color: #000000 !important; }
  .c-font-black small {
    color: #000000 !important; }

.c-font-black-hover:hover {
  color: #000000 !important; }

.c-font-regular {
  color: #7f8c97 !important; }
  .c-font-regular small {
    color: #7f8c97 !important; }

.c-font-regular-hover:hover {
  color: #7f8c97 !important; }

.c-font-green {
  color: #32c5d2 !important; }
  .c-font-green small {
    color: #32c5d2 !important; }

.c-font-green-hover:hover {
  color: #32c5d2 !important; }

.c-font-green-1 {
  color: #52c9ba !important; }
  .c-font-green-1 small {
    color: #52c9ba !important; }

.c-font-green-1-hover:hover {
  color: #52c9ba !important; }

.c-font-green-2 {
  color: #5dc09c !important; }
  .c-font-green-2 small {
    color: #5dc09c !important; }

.c-font-green-2-hover:hover {
  color: #5dc09c !important; }

.c-font-green-3 {
  color: #84c68f !important; }
  .c-font-green-3 small {
    color: #84c68f !important; }

.c-font-green-3-hover:hover {
  color: #84c68f !important; }

.c-font-green-4 {
  color: #3cb878 !important; }
  .c-font-green-4 small {
    color: #3cb878 !important; }

.c-font-green-4-hover:hover {
  color: #3cb878 !important; }

.c-font-red {
  color: #eb5d68 !important; }
  .c-font-red small {
    color: #eb5d68 !important; }

.c-font-red-hover:hover {
  color: #eb5d68 !important; }

.c-font-red-1 {
  color: #cd6262 !important; }
  .c-font-red-1 small {
    color: #cd6262 !important; }

.c-font-red-1-hover:hover {
  color: #cd6262 !important; }

.c-font-red-2 {
  color: #e7505a !important; }
  .c-font-red-2 small {
    color: #e7505a !important; }

.c-font-red-2-hover:hover {
  color: #e7505a !important; }

.c-font-red-3 {
  color: #d05163 !important; }
  .c-font-red-3 small {
    color: #d05163 !important; }

.c-font-red-3-hover:hover {
  color: #d05163 !important; }

.c-font-yellow {
  color: #FF6B57 !important; }
  .c-font-yellow small {
    color: #FF6B57 !important; }

.c-font-yellow-hover:hover {
  color: #FF6B57 !important; }

.c-font-yellow-1 {
  color: #c8d046 !important; }
  .c-font-yellow-1 small {
    color: #c8d046 !important; }

.c-font-yellow-1-hover:hover {
  color: #c8d046 !important; }

.c-font-yellow-2 {
  color: #c5bf66 !important; }
  .c-font-yellow-2 small {
    color: #c5bf66 !important; }

.c-font-yellow-2-hover:hover {
  color: #c5bf66 !important; }

.c-font-yellow-3 {
  color: #c5b96b !important; }
  .c-font-yellow-3 small {
    color: #c5b96b !important; }

.c-font-yellow-3-hover:hover {
  color: #c5b96b !important; }

.c-font-yellow-4 {
  color: #fff200 !important; }
  .c-font-yellow-4 small {
    color: #fff200 !important; }

.c-font-yellow-4-hover:hover {
  color: #fff200 !important; }

.c-font-blue {
  color: #3498DB !important; }
  .c-font-blue small {
    color: #3498DB !important; }

.c-font-blue-hover:hover {
  color: #3498DB !important; }

.c-font-blue-1 {
  color: #5e9cd1 !important; }
  .c-font-blue-1 small {
    color: #5e9cd1 !important; }

.c-font-blue-1-hover:hover {
  color: #5e9cd1 !important; }

.c-font-blue-2 {
  color: #5893dd !important; }
  .c-font-blue-2 small {
    color: #5893dd !important; }

.c-font-blue-2-hover:hover {
  color: #5893dd !important; }

.c-font-blue-3 {
  color: #57bfe1 !important; }
  .c-font-blue-3 small {
    color: #57bfe1 !important; }

.c-font-blue-3-hover:hover {
  color: #57bfe1 !important; }

.c-font-blue-4 {
  color: #428de4 !important; }
  .c-font-blue-4 small {
    color: #428de4 !important; }

.c-font-blue-4-hover:hover {
  color: #428de4 !important; }

.c-font-purple {
  color: #b771b0 !important; }
  .c-font-purple small {
    color: #b771b0 !important; }

.c-font-purple-hover:hover {
  color: #b771b0 !important; }

.c-font-purple-1 {
  color: #a962bb !important; }
  .c-font-purple-1 small {
    color: #a962bb !important; }

.c-font-purple-1-hover:hover {
  color: #a962bb !important; }

.c-font-purple-2 {
  color: #aa67a3 !important; }
  .c-font-purple-2 small {
    color: #aa67a3 !important; }

.c-font-purple-2-hover:hover {
  color: #aa67a3 !important; }

.c-font-purple-3 {
  color: #ac3773 !important; }
  .c-font-purple-3 small {
    color: #ac3773 !important; }

.c-font-purple-3-hover:hover {
  color: #ac3773 !important; }

.c-font-brown {
  color: #8a7f68 !important; }
  .c-font-brown small {
    color: #8a7f68 !important; }

.c-font-brown-hover:hover {
  color: #8a7f68 !important; }

.c-font-brown-1 {
  color: #685e47 !important; }
  .c-font-brown-1 small {
    color: #685e47 !important; }

.c-font-brown-1-hover:hover {
  color: #685e47 !important; }

.c-font-brown-2 {
  color: #7a6a61 !important; }
  .c-font-brown-2 small {
    color: #7a6a61 !important; }

.c-font-brown-2-hover:hover {
  color: #7a6a61 !important; }

.c-font-brown-3 {
  color: #9d8b81 !important; }
  .c-font-brown-3 small {
    color: #9d8b81 !important; }

.c-font-brown-3-hover:hover {
  color: #9d8b81 !important; }

.c-font-dark {
  color: #2f353b !important; }
  .c-font-dark small {
    color: #2f353b !important; }

.c-font-dark-hover:hover {
  color: #2f353b !important; }

.c-font-dark-1 {
  color: #525e64 !important; }
  .c-font-dark-1 small {
    color: #525e64 !important; }

.c-font-dark-1-hover:hover {
  color: #525e64 !important; }

.c-font-dark-2 {
  color: #31383c !important; }
  .c-font-dark-2 small {
    color: #31383c !important; }

.c-font-dark-2-hover:hover {
  color: #31383c !important; }

.c-font-dark-3 {
  color: #41515b !important; }
  .c-font-dark-3 small {
    color: #41515b !important; }

.c-font-dark-3-hover:hover {
  color: #41515b !important; }

.c-font-dark-4 {
  color: #24272b !important; }
  .c-font-dark-4 small {
    color: #24272b !important; }

.c-font-dark-4-hover:hover {
  color: #24272b !important; }

.c-font-grey {
  color: #eeeeee !important; }
  .c-font-grey small {
    color: #eeeeee !important; }

.c-font-grey-hover:hover {
  color: #eeeeee !important; }

.c-font-grey-1 {
  color: #f7f7f7 !important; }
  .c-font-grey-1 small {
    color: #f7f7f7 !important; }

.c-font-grey-1-hover:hover {
  color: #f7f7f7 !important; }

.c-font-grey-2 {
  color: #677083 !important; }
  .c-font-grey-2 small {
    color: #677083 !important; }

.c-font-grey-2-hover:hover {
  color: #677083 !important; }

.c-font-grey-3 {
  color: #7f8c97 !important; }
  .c-font-grey-3 small {
    color: #7f8c97 !important; }

.c-font-grey-3-hover:hover {
  color: #7f8c97 !important; }

.c-font-grey-4 {
  color: #a0a6ab !important; }
  .c-font-grey-4 small {
    color: #a0a6ab !important; }

.c-font-grey-4-hover:hover {
  color: #a0a6ab !important; }

/* Background Colors */
.c-bg-white {
  background-color: #FFFFFF !important; }
  .c-bg-white.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(255, 255, 255, 0.04) !important; }
  .c-bg-white.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(255, 255, 255, 0.4) !important; }
  .c-bg-white.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(255, 255, 255, 0.6) !important; }
  .c-bg-white.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(255, 255, 255, 0.8) !important; }
  .c-bg-white.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(255, 255, 255, 0.9) !important; }
  .c-bg-white.c-bg-white-font {
    color: #2f353b !important; }

.c-bg-white-hover:hover {
  background-color: #FFFFFF !important; }

.c-border-white-hover:hover {
  border-color: #FFFFFF !important; }

.c-bg-after-white:after {
  background-color: #FFFFFF !important; }

.c-bg-before-white:before {
  background-color: #FFFFFF !important; }

.c-bg-black {
  background-color: #000000 !important; }
  .c-bg-black.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(0, 0, 0, 0.04) !important; }
  .c-bg-black.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(0, 0, 0, 0.4) !important; }
  .c-bg-black.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(0, 0, 0, 0.6) !important; }
  .c-bg-black.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(0, 0, 0, 0.8) !important; }
  .c-bg-black.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(0, 0, 0, 0.9) !important; }
  .c-bg-black.c-bg-black-font {
    color: #ffffff !important; }

.c-bg-black-hover:hover {
  background-color: #000000 !important; }

.c-border-black-hover:hover {
  border-color: #000000 !important; }

.c-bg-after-black:after {
  background-color: #000000 !important; }

.c-bg-before-black:before {
  background-color: #000000 !important; }

.c-bg-regular {
  background-color: #7f8c97 !important; }
  .c-bg-regular.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(127, 140, 151, 0.04) !important; }
  .c-bg-regular.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(127, 140, 151, 0.4) !important; }
  .c-bg-regular.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(127, 140, 151, 0.6) !important; }
  .c-bg-regular.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(127, 140, 151, 0.8) !important; }
  .c-bg-regular.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(127, 140, 151, 0.9) !important; }
  .c-bg-regular.c-bg-regular-font {
    color: #ffffff !important; }

.c-bg-regular-hover:hover {
  background-color: #7f8c97 !important; }

.c-border-regular-hover:hover {
  border-color: #7f8c97 !important; }

.c-bg-after-regular:after {
  background-color: #7f8c97 !important; }

.c-bg-before-regular:before {
  background-color: #7f8c97 !important; }

.c-bg-green {
  background-color: #32c5d2 !important; }
  .c-bg-green.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(50, 197, 210, 0.04) !important; }
  .c-bg-green.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(50, 197, 210, 0.4) !important; }
  .c-bg-green.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(50, 197, 210, 0.6) !important; }
  .c-bg-green.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(50, 197, 210, 0.8) !important; }
  .c-bg-green.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(50, 197, 210, 0.9) !important; }
  .c-bg-green.c-bg-green-font {
    color: #ffffff !important; }

.c-bg-green-hover:hover {
  background-color: #32c5d2 !important; }

.c-border-green-hover:hover {
  border-color: #32c5d2 !important; }

.c-bg-after-green:after {
  background-color: #32c5d2 !important; }

.c-bg-before-green:before {
  background-color: #32c5d2 !important; }

.c-bg-green-1 {
  background-color: #52c9ba !important; }
  .c-bg-green-1.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(82, 201, 186, 0.04) !important; }
  .c-bg-green-1.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(82, 201, 186, 0.4) !important; }
  .c-bg-green-1.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(82, 201, 186, 0.6) !important; }
  .c-bg-green-1.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(82, 201, 186, 0.8) !important; }
  .c-bg-green-1.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(82, 201, 186, 0.9) !important; }
  .c-bg-green-1.c-bg-green-1-font {
    color: #ffffff !important; }

.c-bg-green-1-hover:hover {
  background-color: #52c9ba !important; }

.c-border-green-1-hover:hover {
  border-color: #52c9ba !important; }

.c-bg-after-green-1:after {
  background-color: #52c9ba !important; }

.c-bg-before-green-1:before {
  background-color: #52c9ba !important; }

.c-bg-green-2 {
  background-color: #5dc09c !important; }
  .c-bg-green-2.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(93, 192, 156, 0.04) !important; }
  .c-bg-green-2.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(93, 192, 156, 0.4) !important; }
  .c-bg-green-2.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(93, 192, 156, 0.6) !important; }
  .c-bg-green-2.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(93, 192, 156, 0.8) !important; }
  .c-bg-green-2.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(93, 192, 156, 0.9) !important; }
  .c-bg-green-2.c-bg-green-2-font {
    color: #ffffff !important; }

.c-bg-green-2-hover:hover {
  background-color: #5dc09c !important; }

.c-border-green-2-hover:hover {
  border-color: #5dc09c !important; }

.c-bg-after-green-2:after {
  background-color: #5dc09c !important; }

.c-bg-before-green-2:before {
  background-color: #5dc09c !important; }

.c-bg-green-3 {
  background-color: #84c68f !important; }
  .c-bg-green-3.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(132, 198, 143, 0.04) !important; }
  .c-bg-green-3.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(132, 198, 143, 0.4) !important; }
  .c-bg-green-3.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(132, 198, 143, 0.6) !important; }
  .c-bg-green-3.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(132, 198, 143, 0.8) !important; }
  .c-bg-green-3.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(132, 198, 143, 0.9) !important; }
  .c-bg-green-3.c-bg-green-3-font {
    color: #ffffff !important; }

.c-bg-green-3-hover:hover {
  background-color: #84c68f !important; }

.c-border-green-3-hover:hover {
  border-color: #84c68f !important; }

.c-bg-after-green-3:after {
  background-color: #84c68f !important; }

.c-bg-before-green-3:before {
  background-color: #84c68f !important; }

.c-bg-green-4 {
  background-color: #3cb878 !important; }
  .c-bg-green-4.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(60, 184, 120, 0.04) !important; }
  .c-bg-green-4.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(60, 184, 120, 0.4) !important; }
  .c-bg-green-4.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(60, 184, 120, 0.6) !important; }
  .c-bg-green-4.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(60, 184, 120, 0.8) !important; }
  .c-bg-green-4.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(60, 184, 120, 0.9) !important; }
  .c-bg-green-4.c-bg-green-4-font {
    color: #ffffff !important; }

.c-bg-green-4-hover:hover {
  background-color: #3cb878 !important; }

.c-border-green-4-hover:hover {
  border-color: #3cb878 !important; }

.c-bg-after-green-4:after {
  background-color: #3cb878 !important; }

.c-bg-before-green-4:before {
  background-color: #3cb878 !important; }

.c-bg-red {
  background-color: #eb5d68 !important; }
  .c-bg-red.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(235, 93, 104, 0.04) !important; }
  .c-bg-red.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(235, 93, 104, 0.4) !important; }
  .c-bg-red.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(235, 93, 104, 0.6) !important; }
  .c-bg-red.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(235, 93, 104, 0.8) !important; }
  .c-bg-red.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(235, 93, 104, 0.9) !important; }
  .c-bg-red.c-bg-red-font {
    color: #ffffff !important; }

.c-bg-red-hover:hover {
  background-color: #eb5d68 !important; }

.c-border-red-hover:hover {
  border-color: #eb5d68 !important; }

.c-bg-after-red:after {
  background-color: #eb5d68 !important; }

.c-bg-before-red:before {
  background-color: #eb5d68 !important; }

.c-bg-red-1 {
  background-color: #cd6262 !important; }
  .c-bg-red-1.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(205, 98, 98, 0.04) !important; }
  .c-bg-red-1.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(205, 98, 98, 0.4) !important; }
  .c-bg-red-1.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(205, 98, 98, 0.6) !important; }
  .c-bg-red-1.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(205, 98, 98, 0.8) !important; }
  .c-bg-red-1.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(205, 98, 98, 0.9) !important; }
  .c-bg-red-1.c-bg-red-1-font {
    color: #ffffff !important; }

.c-bg-red-1-hover:hover {
  background-color: #cd6262 !important; }

.c-border-red-1-hover:hover {
  border-color: #cd6262 !important; }

.c-bg-after-red-1:after {
  background-color: #cd6262 !important; }

.c-bg-before-red-1:before {
  background-color: #cd6262 !important; }

.c-bg-red-2 {
  background-color: #e7505a !important; }
  .c-bg-red-2.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(231, 80, 90, 0.04) !important; }
  .c-bg-red-2.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(231, 80, 90, 0.4) !important; }
  .c-bg-red-2.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(231, 80, 90, 0.6) !important; }
  .c-bg-red-2.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(231, 80, 90, 0.8) !important; }
  .c-bg-red-2.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(231, 80, 90, 0.9) !important; }
  .c-bg-red-2.c-bg-red-2-font {
    color: #ffffff !important; }

.c-bg-red-2-hover:hover {
  background-color: #e7505a !important; }

.c-border-red-2-hover:hover {
  border-color: #e7505a !important; }

.c-bg-after-red-2:after {
  background-color: #e7505a !important; }

.c-bg-before-red-2:before {
  background-color: #e7505a !important; }

.c-bg-red-3 {
  background-color: #d05163 !important; }
  .c-bg-red-3.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(208, 81, 99, 0.04) !important; }
  .c-bg-red-3.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(208, 81, 99, 0.4) !important; }
  .c-bg-red-3.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(208, 81, 99, 0.6) !important; }
  .c-bg-red-3.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(208, 81, 99, 0.8) !important; }
  .c-bg-red-3.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(208, 81, 99, 0.9) !important; }
  .c-bg-red-3.c-bg-red-3-font {
    color: #ffffff !important; }

.c-bg-red-3-hover:hover {
  background-color: #d05163 !important; }

.c-border-red-3-hover:hover {
  border-color: #d05163 !important; }

.c-bg-after-red-3:after {
  background-color: #d05163 !important; }

.c-bg-before-red-3:before {
  background-color: #d05163 !important; }

.c-bg-yellow {
  background-color: #FF6B57 !important; }
  .c-bg-yellow.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(255, 107, 87, 0.04) !important; }
  .c-bg-yellow.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(255, 107, 87, 0.4) !important; }
  .c-bg-yellow.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(255, 107, 87, 0.6) !important; }
  .c-bg-yellow.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(255, 107, 87, 0.8) !important; }
  .c-bg-yellow.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(255, 107, 87, 0.9) !important; }
  .c-bg-yellow.c-bg-yellow-font {
    color: #ffffff !important; }

.c-bg-yellow-hover:hover {
  background-color: #FF6B57 !important; }

.c-border-yellow-hover:hover {
  border-color: #FF6B57 !important; }

.c-bg-after-yellow:after {
  background-color: #FF6B57 !important; }

.c-bg-before-yellow:before {
  background-color: #FF6B57 !important; }

.c-bg-yellow-1 {
  background-color: #c8d046 !important; }
  .c-bg-yellow-1.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(200, 208, 70, 0.04) !important; }
  .c-bg-yellow-1.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(200, 208, 70, 0.4) !important; }
  .c-bg-yellow-1.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(200, 208, 70, 0.6) !important; }
  .c-bg-yellow-1.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(200, 208, 70, 0.8) !important; }
  .c-bg-yellow-1.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(200, 208, 70, 0.9) !important; }
  .c-bg-yellow-1.c-bg-yellow-1-font {
    color: #ffffff !important; }

.c-bg-yellow-1-hover:hover {
  background-color: #c8d046 !important; }

.c-border-yellow-1-hover:hover {
  border-color: #c8d046 !important; }

.c-bg-after-yellow-1:after {
  background-color: #c8d046 !important; }

.c-bg-before-yellow-1:before {
  background-color: #c8d046 !important; }

.c-bg-yellow-2 {
  background-color: #c5bf66 !important; }
  .c-bg-yellow-2.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(197, 191, 102, 0.04) !important; }
  .c-bg-yellow-2.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(197, 191, 102, 0.4) !important; }
  .c-bg-yellow-2.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(197, 191, 102, 0.6) !important; }
  .c-bg-yellow-2.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(197, 191, 102, 0.8) !important; }
  .c-bg-yellow-2.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(197, 191, 102, 0.9) !important; }
  .c-bg-yellow-2.c-bg-yellow-2-font {
    color: #ffffff !important; }

.c-bg-yellow-2-hover:hover {
  background-color: #c5bf66 !important; }

.c-border-yellow-2-hover:hover {
  border-color: #c5bf66 !important; }

.c-bg-after-yellow-2:after {
  background-color: #c5bf66 !important; }

.c-bg-before-yellow-2:before {
  background-color: #c5bf66 !important; }

.c-bg-yellow-3 {
  background-color: #c5b96b !important; }
  .c-bg-yellow-3.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(197, 185, 107, 0.04) !important; }
  .c-bg-yellow-3.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(197, 185, 107, 0.4) !important; }
  .c-bg-yellow-3.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(197, 185, 107, 0.6) !important; }
  .c-bg-yellow-3.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(197, 185, 107, 0.8) !important; }
  .c-bg-yellow-3.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(197, 185, 107, 0.9) !important; }
  .c-bg-yellow-3.c-bg-yellow-3-font {
    color: #ffffff !important; }

.c-bg-yellow-3-hover:hover {
  background-color: #c5b96b !important; }

.c-border-yellow-3-hover:hover {
  border-color: #c5b96b !important; }

.c-bg-after-yellow-3:after {
  background-color: #c5b96b !important; }

.c-bg-before-yellow-3:before {
  background-color: #c5b96b !important; }

.c-bg-yellow-4 {
  background-color: #fff200 !important; }
  .c-bg-yellow-4.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(255, 242, 0, 0.04) !important; }
  .c-bg-yellow-4.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(255, 242, 0, 0.4) !important; }
  .c-bg-yellow-4.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(255, 242, 0, 0.6) !important; }
  .c-bg-yellow-4.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(255, 242, 0, 0.8) !important; }
  .c-bg-yellow-4.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(255, 242, 0, 0.9) !important; }
  .c-bg-yellow-4.c-bg-yellow-4-font {
    color: #ffffff !important; }

.c-bg-yellow-4-hover:hover {
  background-color: #fff200 !important; }

.c-border-yellow-4-hover:hover {
  border-color: #fff200 !important; }

.c-bg-after-yellow-4:after {
  background-color: #fff200 !important; }

.c-bg-before-yellow-4:before {
  background-color: #fff200 !important; }

.c-bg-blue {
  background-color: #3498DB !important; }
  .c-bg-blue.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(52, 152, 219, 0.04) !important; }
  .c-bg-blue.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(52, 152, 219, 0.4) !important; }
  .c-bg-blue.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(52, 152, 219, 0.6) !important; }
  .c-bg-blue.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(52, 152, 219, 0.8) !important; }
  .c-bg-blue.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(52, 152, 219, 0.9) !important; }
  .c-bg-blue.c-bg-blue-font {
    color: #ffffff !important; }

.c-bg-blue-hover:hover {
  background-color: #3498DB !important; }

.c-border-blue-hover:hover {
  border-color: #3498DB !important; }

.c-bg-after-blue:after {
  background-color: #3498DB !important; }

.c-bg-before-blue:before {
  background-color: #3498DB !important; }

.c-bg-blue-1 {
  background-color: #5e9cd1 !important; }
  .c-bg-blue-1.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(94, 156, 209, 0.04) !important; }
  .c-bg-blue-1.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(94, 156, 209, 0.4) !important; }
  .c-bg-blue-1.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(94, 156, 209, 0.6) !important; }
  .c-bg-blue-1.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(94, 156, 209, 0.8) !important; }
  .c-bg-blue-1.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(94, 156, 209, 0.9) !important; }
  .c-bg-blue-1.c-bg-blue-1-font {
    color: #ffffff !important; }

.c-bg-blue-1-hover:hover {
  background-color: #5e9cd1 !important; }

.c-border-blue-1-hover:hover {
  border-color: #5e9cd1 !important; }

.c-bg-after-blue-1:after {
  background-color: #5e9cd1 !important; }

.c-bg-before-blue-1:before {
  background-color: #5e9cd1 !important; }

.c-bg-blue-2 {
  background-color: #5893dd !important; }
  .c-bg-blue-2.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(88, 147, 221, 0.04) !important; }
  .c-bg-blue-2.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(88, 147, 221, 0.4) !important; }
  .c-bg-blue-2.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(88, 147, 221, 0.6) !important; }
  .c-bg-blue-2.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(88, 147, 221, 0.8) !important; }
  .c-bg-blue-2.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(88, 147, 221, 0.9) !important; }
  .c-bg-blue-2.c-bg-blue-2-font {
    color: #ffffff !important; }

.c-bg-blue-2-hover:hover {
  background-color: #5893dd !important; }

.c-border-blue-2-hover:hover {
  border-color: #5893dd !important; }

.c-bg-after-blue-2:after {
  background-color: #5893dd !important; }

.c-bg-before-blue-2:before {
  background-color: #5893dd !important; }

.c-bg-blue-3 {
  background-color: #57bfe1 !important; }
  .c-bg-blue-3.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(87, 191, 225, 0.04) !important; }
  .c-bg-blue-3.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(87, 191, 225, 0.4) !important; }
  .c-bg-blue-3.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(87, 191, 225, 0.6) !important; }
  .c-bg-blue-3.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(87, 191, 225, 0.8) !important; }
  .c-bg-blue-3.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(87, 191, 225, 0.9) !important; }
  .c-bg-blue-3.c-bg-blue-3-font {
    color: #ffffff !important; }

.c-bg-blue-3-hover:hover {
  background-color: #57bfe1 !important; }

.c-border-blue-3-hover:hover {
  border-color: #57bfe1 !important; }

.c-bg-after-blue-3:after {
  background-color: #57bfe1 !important; }

.c-bg-before-blue-3:before {
  background-color: #57bfe1 !important; }

.c-bg-blue-4 {
  background-color: #428de4 !important; }
  .c-bg-blue-4.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(66, 141, 228, 0.04) !important; }
  .c-bg-blue-4.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(66, 141, 228, 0.4) !important; }
  .c-bg-blue-4.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(66, 141, 228, 0.6) !important; }
  .c-bg-blue-4.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(66, 141, 228, 0.8) !important; }
  .c-bg-blue-4.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(66, 141, 228, 0.9) !important; }
  .c-bg-blue-4.c-bg-blue-4-font {
    color: #ffffff !important; }

.c-bg-blue-4-hover:hover {
  background-color: #428de4 !important; }

.c-border-blue-4-hover:hover {
  border-color: #428de4 !important; }

.c-bg-after-blue-4:after {
  background-color: #428de4 !important; }

.c-bg-before-blue-4:before {
  background-color: #428de4 !important; }

.c-bg-purple {
  background-color: #b771b0 !important; }
  .c-bg-purple.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(183, 113, 176, 0.04) !important; }
  .c-bg-purple.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(183, 113, 176, 0.4) !important; }
  .c-bg-purple.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(183, 113, 176, 0.6) !important; }
  .c-bg-purple.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(183, 113, 176, 0.8) !important; }
  .c-bg-purple.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(183, 113, 176, 0.9) !important; }
  .c-bg-purple.c-bg-purple-font {
    color: #ffffff !important; }

.c-bg-purple-hover:hover {
  background-color: #b771b0 !important; }

.c-border-purple-hover:hover {
  border-color: #b771b0 !important; }

.c-bg-after-purple:after {
  background-color: #b771b0 !important; }

.c-bg-before-purple:before {
  background-color: #b771b0 !important; }

.c-bg-purple-1 {
  background-color: #a962bb !important; }
  .c-bg-purple-1.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(169, 98, 187, 0.04) !important; }
  .c-bg-purple-1.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(169, 98, 187, 0.4) !important; }
  .c-bg-purple-1.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(169, 98, 187, 0.6) !important; }
  .c-bg-purple-1.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(169, 98, 187, 0.8) !important; }
  .c-bg-purple-1.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(169, 98, 187, 0.9) !important; }
  .c-bg-purple-1.c-bg-purple-1-font {
    color: #ffffff !important; }

.c-bg-purple-1-hover:hover {
  background-color: #a962bb !important; }

.c-border-purple-1-hover:hover {
  border-color: #a962bb !important; }

.c-bg-after-purple-1:after {
  background-color: #a962bb !important; }

.c-bg-before-purple-1:before {
  background-color: #a962bb !important; }

.c-bg-purple-2 {
  background-color: #aa67a3 !important; }
  .c-bg-purple-2.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(170, 103, 163, 0.04) !important; }
  .c-bg-purple-2.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(170, 103, 163, 0.4) !important; }
  .c-bg-purple-2.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(170, 103, 163, 0.6) !important; }
  .c-bg-purple-2.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(170, 103, 163, 0.8) !important; }
  .c-bg-purple-2.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(170, 103, 163, 0.9) !important; }
  .c-bg-purple-2.c-bg-purple-2-font {
    color: #ffffff !important; }

.c-bg-purple-2-hover:hover {
  background-color: #aa67a3 !important; }

.c-border-purple-2-hover:hover {
  border-color: #aa67a3 !important; }

.c-bg-after-purple-2:after {
  background-color: #aa67a3 !important; }

.c-bg-before-purple-2:before {
  background-color: #aa67a3 !important; }

.c-bg-purple-3 {
  background-color: #ac3773 !important; }
  .c-bg-purple-3.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(172, 55, 115, 0.04) !important; }
  .c-bg-purple-3.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(172, 55, 115, 0.4) !important; }
  .c-bg-purple-3.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(172, 55, 115, 0.6) !important; }
  .c-bg-purple-3.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(172, 55, 115, 0.8) !important; }
  .c-bg-purple-3.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(172, 55, 115, 0.9) !important; }
  .c-bg-purple-3.c-bg-purple-3-font {
    color: #ffffff !important; }

.c-bg-purple-3-hover:hover {
  background-color: #ac3773 !important; }

.c-border-purple-3-hover:hover {
  border-color: #ac3773 !important; }

.c-bg-after-purple-3:after {
  background-color: #ac3773 !important; }

.c-bg-before-purple-3:before {
  background-color: #ac3773 !important; }

.c-bg-brown {
  background-color: #8a7f68 !important; }
  .c-bg-brown.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(138, 127, 104, 0.04) !important; }
  .c-bg-brown.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(138, 127, 104, 0.4) !important; }
  .c-bg-brown.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(138, 127, 104, 0.6) !important; }
  .c-bg-brown.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(138, 127, 104, 0.8) !important; }
  .c-bg-brown.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(138, 127, 104, 0.9) !important; }
  .c-bg-brown.c-bg-brown-font {
    color: #ffffff !important; }

.c-bg-brown-hover:hover {
  background-color: #8a7f68 !important; }

.c-border-brown-hover:hover {
  border-color: #8a7f68 !important; }

.c-bg-after-brown:after {
  background-color: #8a7f68 !important; }

.c-bg-before-brown:before {
  background-color: #8a7f68 !important; }

.c-bg-brown-1 {
  background-color: #685e47 !important; }
  .c-bg-brown-1.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(104, 94, 71, 0.04) !important; }
  .c-bg-brown-1.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(104, 94, 71, 0.4) !important; }
  .c-bg-brown-1.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(104, 94, 71, 0.6) !important; }
  .c-bg-brown-1.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(104, 94, 71, 0.8) !important; }
  .c-bg-brown-1.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(104, 94, 71, 0.9) !important; }
  .c-bg-brown-1.c-bg-brown-1-font {
    color: #ffffff !important; }

.c-bg-brown-1-hover:hover {
  background-color: #685e47 !important; }

.c-border-brown-1-hover:hover {
  border-color: #685e47 !important; }

.c-bg-after-brown-1:after {
  background-color: #685e47 !important; }

.c-bg-before-brown-1:before {
  background-color: #685e47 !important; }

.c-bg-brown-2 {
  background-color: #7a6a61 !important; }
  .c-bg-brown-2.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(122, 106, 97, 0.04) !important; }
  .c-bg-brown-2.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(122, 106, 97, 0.4) !important; }
  .c-bg-brown-2.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(122, 106, 97, 0.6) !important; }
  .c-bg-brown-2.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(122, 106, 97, 0.8) !important; }
  .c-bg-brown-2.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(122, 106, 97, 0.9) !important; }
  .c-bg-brown-2.c-bg-brown-2-font {
    color: #ffffff !important; }

.c-bg-brown-2-hover:hover {
  background-color: #7a6a61 !important; }

.c-border-brown-2-hover:hover {
  border-color: #7a6a61 !important; }

.c-bg-after-brown-2:after {
  background-color: #7a6a61 !important; }

.c-bg-before-brown-2:before {
  background-color: #7a6a61 !important; }

.c-bg-brown-3 {
  background-color: #9d8b81 !important; }
  .c-bg-brown-3.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(157, 139, 129, 0.04) !important; }
  .c-bg-brown-3.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(157, 139, 129, 0.4) !important; }
  .c-bg-brown-3.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(157, 139, 129, 0.6) !important; }
  .c-bg-brown-3.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(157, 139, 129, 0.8) !important; }
  .c-bg-brown-3.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(157, 139, 129, 0.9) !important; }
  .c-bg-brown-3.c-bg-brown-3-font {
    color: #ffffff !important; }

.c-bg-brown-3-hover:hover {
  background-color: #9d8b81 !important; }

.c-border-brown-3-hover:hover {
  border-color: #9d8b81 !important; }

.c-bg-after-brown-3:after {
  background-color: #9d8b81 !important; }

.c-bg-before-brown-3:before {
  background-color: #9d8b81 !important; }

.c-bg-dark {
  background-color: #2f353b !important; }
  .c-bg-dark.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(47, 53, 59, 0.04) !important; }
  .c-bg-dark.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(47, 53, 59, 0.4) !important; }
  .c-bg-dark.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(47, 53, 59, 0.6) !important; }
  .c-bg-dark.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(47, 53, 59, 0.8) !important; }
  .c-bg-dark.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(47, 53, 59, 0.9) !important; }
  .c-bg-dark.c-bg-dark-font {
    color: #ffffff !important; }

.c-bg-dark-hover:hover {
  background-color: #2f353b !important; }

.c-border-dark-hover:hover {
  border-color: #2f353b !important; }

.c-bg-after-dark:after {
  background-color: #2f353b !important; }

.c-bg-before-dark:before {
  background-color: #2f353b !important; }

.c-bg-dark-1 {
  background-color: #525e64 !important; }
  .c-bg-dark-1.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(82, 94, 100, 0.04) !important; }
  .c-bg-dark-1.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(82, 94, 100, 0.4) !important; }
  .c-bg-dark-1.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(82, 94, 100, 0.6) !important; }
  .c-bg-dark-1.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(82, 94, 100, 0.8) !important; }
  .c-bg-dark-1.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(82, 94, 100, 0.9) !important; }
  .c-bg-dark-1.c-bg-dark-1-font {
    color: #ffffff !important; }

.c-bg-dark-1-hover:hover {
  background-color: #525e64 !important; }

.c-border-dark-1-hover:hover {
  border-color: #525e64 !important; }

.c-bg-after-dark-1:after {
  background-color: #525e64 !important; }

.c-bg-before-dark-1:before {
  background-color: #525e64 !important; }

.c-bg-dark-2 {
  background-color: #31383c !important; }
  .c-bg-dark-2.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(49, 56, 60, 0.04) !important; }
  .c-bg-dark-2.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(49, 56, 60, 0.4) !important; }
  .c-bg-dark-2.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(49, 56, 60, 0.6) !important; }
  .c-bg-dark-2.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(49, 56, 60, 0.8) !important; }
  .c-bg-dark-2.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(49, 56, 60, 0.9) !important; }
  .c-bg-dark-2.c-bg-dark-2-font {
    color: #ffffff !important; }

.c-bg-dark-2-hover:hover {
  background-color: #31383c !important; }

.c-border-dark-2-hover:hover {
  border-color: #31383c !important; }

.c-bg-after-dark-2:after {
  background-color: #31383c !important; }

.c-bg-before-dark-2:before {
  background-color: #31383c !important; }

.c-bg-dark-3 {
  background-color: #41515b !important; }
  .c-bg-dark-3.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(65, 81, 91, 0.04) !important; }
  .c-bg-dark-3.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(65, 81, 91, 0.4) !important; }
  .c-bg-dark-3.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(65, 81, 91, 0.6) !important; }
  .c-bg-dark-3.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(65, 81, 91, 0.8) !important; }
  .c-bg-dark-3.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(65, 81, 91, 0.9) !important; }
  .c-bg-dark-3.c-bg-dark-3-font {
    color: #ffffff !important; }

.c-bg-dark-3-hover:hover {
  background-color: #41515b !important; }

.c-border-dark-3-hover:hover {
  border-color: #41515b !important; }

.c-bg-after-dark-3:after {
  background-color: #41515b !important; }

.c-bg-before-dark-3:before {
  background-color: #41515b !important; }

.c-bg-dark-4 {
  background-color: #24272b !important; }
  .c-bg-dark-4.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(36, 39, 43, 0.04) !important; }
  .c-bg-dark-4.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(36, 39, 43, 0.4) !important; }
  .c-bg-dark-4.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(36, 39, 43, 0.6) !important; }
  .c-bg-dark-4.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(36, 39, 43, 0.8) !important; }
  .c-bg-dark-4.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(36, 39, 43, 0.9) !important; }
  .c-bg-dark-4.c-bg-dark-4-font {
    color: #ffffff !important; }

.c-bg-dark-4-hover:hover {
  background-color: #24272b !important; }

.c-border-dark-4-hover:hover {
  border-color: #24272b !important; }

.c-bg-after-dark-4:after {
  background-color: #24272b !important; }

.c-bg-before-dark-4:before {
  background-color: #24272b !important; }

.c-bg-grey {
  background-color: #eeeeee !important; }
  .c-bg-grey.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(238, 238, 238, 0.04) !important; }
  .c-bg-grey.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(238, 238, 238, 0.4) !important; }
  .c-bg-grey.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(238, 238, 238, 0.6) !important; }
  .c-bg-grey.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(238, 238, 238, 0.8) !important; }
  .c-bg-grey.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(238, 238, 238, 0.9) !important; }
  .c-bg-grey.c-bg-grey-font {
    color: #6f6f6f !important; }

.c-bg-grey-hover:hover {
  background-color: #eeeeee !important; }

.c-border-grey-hover:hover {
  border-color: #eeeeee !important; }

.c-bg-after-grey:after {
  background-color: #eeeeee !important; }

.c-bg-before-grey:before {
  background-color: #eeeeee !important; }

.c-bg-grey-1 {
  background-color: #f7f7f7 !important; }
  .c-bg-grey-1.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(247, 247, 247, 0.04) !important; }
  .c-bg-grey-1.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(247, 247, 247, 0.4) !important; }
  .c-bg-grey-1.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(247, 247, 247, 0.6) !important; }
  .c-bg-grey-1.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(247, 247, 247, 0.8) !important; }
  .c-bg-grey-1.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(247, 247, 247, 0.9) !important; }
  .c-bg-grey-1.c-bg-grey-1-font {
    color: #787878 !important; }

.c-bg-grey-1-hover:hover {
  background-color: #f7f7f7 !important; }

.c-border-grey-1-hover:hover {
  border-color: #f7f7f7 !important; }

.c-bg-after-grey-1:after {
  background-color: #f7f7f7 !important; }

.c-bg-before-grey-1:before {
  background-color: #f7f7f7 !important; }

.c-bg-grey-2 {
  background-color: #677083 !important; }
  .c-bg-grey-2.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(103, 112, 131, 0.04) !important; }
  .c-bg-grey-2.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(103, 112, 131, 0.4) !important; }
  .c-bg-grey-2.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(103, 112, 131, 0.6) !important; }
  .c-bg-grey-2.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(103, 112, 131, 0.8) !important; }
  .c-bg-grey-2.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(103, 112, 131, 0.9) !important; }
  .c-bg-grey-2.c-bg-grey-2-font {
    color: #ffffff !important; }

.c-bg-grey-2-hover:hover {
  background-color: #677083 !important; }

.c-border-grey-2-hover:hover {
  border-color: #677083 !important; }

.c-bg-after-grey-2:after {
  background-color: #677083 !important; }

.c-bg-before-grey-2:before {
  background-color: #677083 !important; }

.c-bg-grey-3 {
  background-color: #7f8c97 !important; }
  .c-bg-grey-3.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(127, 140, 151, 0.04) !important; }
  .c-bg-grey-3.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(127, 140, 151, 0.4) !important; }
  .c-bg-grey-3.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(127, 140, 151, 0.6) !important; }
  .c-bg-grey-3.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(127, 140, 151, 0.8) !important; }
  .c-bg-grey-3.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(127, 140, 151, 0.9) !important; }
  .c-bg-grey-3.c-bg-grey-3-font {
    color: #ffffff !important; }

.c-bg-grey-3-hover:hover {
  background-color: #7f8c97 !important; }

.c-border-grey-3-hover:hover {
  border-color: #7f8c97 !important; }

.c-bg-after-grey-3:after {
  background-color: #7f8c97 !important; }

.c-bg-before-grey-3:before {
  background-color: #7f8c97 !important; }

.c-bg-grey-4 {
  background-color: #a0a6ab !important; }
  .c-bg-grey-4.c-bg-opacity {
    /* RGBa with 0.04 opacity */
    background-color: rgba(160, 166, 171, 0.04) !important; }
  .c-bg-grey-4.c-bg-opacity-2 {
    /* RGBa with 0.4 opacity */
    background-color: rgba(160, 166, 171, 0.4) !important; }
  .c-bg-grey-4.c-bg-opacity-3 {
    /* RGBa with 0.6 opacity */
    background-color: rgba(160, 166, 171, 0.6) !important; }
  .c-bg-grey-4.c-bg-opacity-4 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(160, 166, 171, 0.8) !important; }
  .c-bg-grey-4.c-bg-opacity-5 {
    /* RGBa with 0.8 opacity */
    background-color: rgba(160, 166, 171, 0.9) !important; }
  .c-bg-grey-4.c-bg-grey-4-font {
    color: #ffffff !important; }

.c-bg-grey-4-hover:hover {
  background-color: #a0a6ab !important; }

.c-border-grey-4-hover:hover {
  border-color: #a0a6ab !important; }

.c-bg-after-grey-4:after {
  background-color: #a0a6ab !important; }

.c-bg-before-grey-4:before {
  background-color: #a0a6ab !important; }

/* Border Colors */
.c-border-white {
  border-color: #FFFFFF !important; }

.c-border-left-white {
  border-left-color: #FFFFFF !important; }

.c-border-right-white {
  border-right-color: #FFFFFF !important; }

.c-border-top-white {
  border-top-color: #FFFFFF !important; }

.c-border-bottom-white {
  border-bottom-color: #FFFFFF !important; }

.c-border-after-white:after,
.c-border-before-white:before {
  border-color: #FFFFFF !important; }

.c-border-black {
  border-color: #000000 !important; }

.c-border-left-black {
  border-left-color: #000000 !important; }

.c-border-right-black {
  border-right-color: #000000 !important; }

.c-border-top-black {
  border-top-color: #000000 !important; }

.c-border-bottom-black {
  border-bottom-color: #000000 !important; }

.c-border-after-black:after,
.c-border-before-black:before {
  border-color: #000000 !important; }

.c-border-regular {
  border-color: #7f8c97 !important; }

.c-border-left-regular {
  border-left-color: #7f8c97 !important; }

.c-border-right-regular {
  border-right-color: #7f8c97 !important; }

.c-border-top-regular {
  border-top-color: #7f8c97 !important; }

.c-border-bottom-regular {
  border-bottom-color: #7f8c97 !important; }

.c-border-after-regular:after,
.c-border-before-regular:before {
  border-color: #7f8c97 !important; }

.c-border-green {
  border-color: #32c5d2 !important; }

.c-border-left-green {
  border-left-color: #32c5d2 !important; }

.c-border-right-green {
  border-right-color: #32c5d2 !important; }

.c-border-top-green {
  border-top-color: #32c5d2 !important; }

.c-border-bottom-green {
  border-bottom-color: #32c5d2 !important; }

.c-border-after-green:after,
.c-border-before-green:before {
  border-color: #32c5d2 !important; }

.c-border-green-1 {
  border-color: #52c9ba !important; }

.c-border-left-green-1 {
  border-left-color: #52c9ba !important; }

.c-border-right-green-1 {
  border-right-color: #52c9ba !important; }

.c-border-top-green-1 {
  border-top-color: #52c9ba !important; }

.c-border-bottom-green-1 {
  border-bottom-color: #52c9ba !important; }

.c-border-after-green-1:after,
.c-border-before-green-1:before {
  border-color: #52c9ba !important; }

.c-border-green-2 {
  border-color: #5dc09c !important; }

.c-border-left-green-2 {
  border-left-color: #5dc09c !important; }

.c-border-right-green-2 {
  border-right-color: #5dc09c !important; }

.c-border-top-green-2 {
  border-top-color: #5dc09c !important; }

.c-border-bottom-green-2 {
  border-bottom-color: #5dc09c !important; }

.c-border-after-green-2:after,
.c-border-before-green-2:before {
  border-color: #5dc09c !important; }

.c-border-green-3 {
  border-color: #84c68f !important; }

.c-border-left-green-3 {
  border-left-color: #84c68f !important; }

.c-border-right-green-3 {
  border-right-color: #84c68f !important; }

.c-border-top-green-3 {
  border-top-color: #84c68f !important; }

.c-border-bottom-green-3 {
  border-bottom-color: #84c68f !important; }

.c-border-after-green-3:after,
.c-border-before-green-3:before {
  border-color: #84c68f !important; }

.c-border-green-4 {
  border-color: #3cb878 !important; }

.c-border-left-green-4 {
  border-left-color: #3cb878 !important; }

.c-border-right-green-4 {
  border-right-color: #3cb878 !important; }

.c-border-top-green-4 {
  border-top-color: #3cb878 !important; }

.c-border-bottom-green-4 {
  border-bottom-color: #3cb878 !important; }

.c-border-after-green-4:after,
.c-border-before-green-4:before {
  border-color: #3cb878 !important; }

.c-border-red {
  border-color: #eb5d68 !important; }

.c-border-left-red {
  border-left-color: #eb5d68 !important; }

.c-border-right-red {
  border-right-color: #eb5d68 !important; }

.c-border-top-red {
  border-top-color: #eb5d68 !important; }

.c-border-bottom-red {
  border-bottom-color: #eb5d68 !important; }

.c-border-after-red:after,
.c-border-before-red:before {
  border-color: #eb5d68 !important; }

.c-border-red-1 {
  border-color: #cd6262 !important; }

.c-border-left-red-1 {
  border-left-color: #cd6262 !important; }

.c-border-right-red-1 {
  border-right-color: #cd6262 !important; }

.c-border-top-red-1 {
  border-top-color: #cd6262 !important; }

.c-border-bottom-red-1 {
  border-bottom-color: #cd6262 !important; }

.c-border-after-red-1:after,
.c-border-before-red-1:before {
  border-color: #cd6262 !important; }

.c-border-red-2 {
  border-color: #e7505a !important; }

.c-border-left-red-2 {
  border-left-color: #e7505a !important; }

.c-border-right-red-2 {
  border-right-color: #e7505a !important; }

.c-border-top-red-2 {
  border-top-color: #e7505a !important; }

.c-border-bottom-red-2 {
  border-bottom-color: #e7505a !important; }

.c-border-after-red-2:after,
.c-border-before-red-2:before {
  border-color: #e7505a !important; }

.c-border-red-3 {
  border-color: #d05163 !important; }

.c-border-left-red-3 {
  border-left-color: #d05163 !important; }

.c-border-right-red-3 {
  border-right-color: #d05163 !important; }

.c-border-top-red-3 {
  border-top-color: #d05163 !important; }

.c-border-bottom-red-3 {
  border-bottom-color: #d05163 !important; }

.c-border-after-red-3:after,
.c-border-before-red-3:before {
  border-color: #d05163 !important; }

.c-border-yellow {
  border-color: #FF6B57 !important; }

.c-border-left-yellow {
  border-left-color: #FF6B57 !important; }

.c-border-right-yellow {
  border-right-color: #FF6B57 !important; }

.c-border-top-yellow {
  border-top-color: #FF6B57 !important; }

.c-border-bottom-yellow {
  border-bottom-color: #FF6B57 !important; }

.c-border-after-yellow:after,
.c-border-before-yellow:before {
  border-color: #FF6B57 !important; }

.c-border-yellow-1 {
  border-color: #c8d046 !important; }

.c-border-left-yellow-1 {
  border-left-color: #c8d046 !important; }

.c-border-right-yellow-1 {
  border-right-color: #c8d046 !important; }

.c-border-top-yellow-1 {
  border-top-color: #c8d046 !important; }

.c-border-bottom-yellow-1 {
  border-bottom-color: #c8d046 !important; }

.c-border-after-yellow-1:after,
.c-border-before-yellow-1:before {
  border-color: #c8d046 !important; }

.c-border-yellow-2 {
  border-color: #c5bf66 !important; }

.c-border-left-yellow-2 {
  border-left-color: #c5bf66 !important; }

.c-border-right-yellow-2 {
  border-right-color: #c5bf66 !important; }

.c-border-top-yellow-2 {
  border-top-color: #c5bf66 !important; }

.c-border-bottom-yellow-2 {
  border-bottom-color: #c5bf66 !important; }

.c-border-after-yellow-2:after,
.c-border-before-yellow-2:before {
  border-color: #c5bf66 !important; }

.c-border-yellow-3 {
  border-color: #c5b96b !important; }

.c-border-left-yellow-3 {
  border-left-color: #c5b96b !important; }

.c-border-right-yellow-3 {
  border-right-color: #c5b96b !important; }

.c-border-top-yellow-3 {
  border-top-color: #c5b96b !important; }

.c-border-bottom-yellow-3 {
  border-bottom-color: #c5b96b !important; }

.c-border-after-yellow-3:after,
.c-border-before-yellow-3:before {
  border-color: #c5b96b !important; }

.c-border-yellow-4 {
  border-color: #fff200 !important; }

.c-border-left-yellow-4 {
  border-left-color: #fff200 !important; }

.c-border-right-yellow-4 {
  border-right-color: #fff200 !important; }

.c-border-top-yellow-4 {
  border-top-color: #fff200 !important; }

.c-border-bottom-yellow-4 {
  border-bottom-color: #fff200 !important; }

.c-border-after-yellow-4:after,
.c-border-before-yellow-4:before {
  border-color: #fff200 !important; }

.c-border-blue {
  border-color: #3498DB !important; }

.c-border-left-blue {
  border-left-color: #3498DB !important; }

.c-border-right-blue {
  border-right-color: #3498DB !important; }

.c-border-top-blue {
  border-top-color: #3498DB !important; }

.c-border-bottom-blue {
  border-bottom-color: #3498DB !important; }

.c-border-after-blue:after,
.c-border-before-blue:before {
  border-color: #3498DB !important; }

.c-border-blue-1 {
  border-color: #5e9cd1 !important; }

.c-border-left-blue-1 {
  border-left-color: #5e9cd1 !important; }

.c-border-right-blue-1 {
  border-right-color: #5e9cd1 !important; }

.c-border-top-blue-1 {
  border-top-color: #5e9cd1 !important; }

.c-border-bottom-blue-1 {
  border-bottom-color: #5e9cd1 !important; }

.c-border-after-blue-1:after,
.c-border-before-blue-1:before {
  border-color: #5e9cd1 !important; }

.c-border-blue-2 {
  border-color: #5893dd !important; }

.c-border-left-blue-2 {
  border-left-color: #5893dd !important; }

.c-border-right-blue-2 {
  border-right-color: #5893dd !important; }

.c-border-top-blue-2 {
  border-top-color: #5893dd !important; }

.c-border-bottom-blue-2 {
  border-bottom-color: #5893dd !important; }

.c-border-after-blue-2:after,
.c-border-before-blue-2:before {
  border-color: #5893dd !important; }

.c-border-blue-3 {
  border-color: #57bfe1 !important; }

.c-border-left-blue-3 {
  border-left-color: #57bfe1 !important; }

.c-border-right-blue-3 {
  border-right-color: #57bfe1 !important; }

.c-border-top-blue-3 {
  border-top-color: #57bfe1 !important; }

.c-border-bottom-blue-3 {
  border-bottom-color: #57bfe1 !important; }

.c-border-after-blue-3:after,
.c-border-before-blue-3:before {
  border-color: #57bfe1 !important; }

.c-border-blue-4 {
  border-color: #428de4 !important; }

.c-border-left-blue-4 {
  border-left-color: #428de4 !important; }

.c-border-right-blue-4 {
  border-right-color: #428de4 !important; }

.c-border-top-blue-4 {
  border-top-color: #428de4 !important; }

.c-border-bottom-blue-4 {
  border-bottom-color: #428de4 !important; }

.c-border-after-blue-4:after,
.c-border-before-blue-4:before {
  border-color: #428de4 !important; }

.c-border-purple {
  border-color: #b771b0 !important; }

.c-border-left-purple {
  border-left-color: #b771b0 !important; }

.c-border-right-purple {
  border-right-color: #b771b0 !important; }

.c-border-top-purple {
  border-top-color: #b771b0 !important; }

.c-border-bottom-purple {
  border-bottom-color: #b771b0 !important; }

.c-border-after-purple:after,
.c-border-before-purple:before {
  border-color: #b771b0 !important; }

.c-border-purple-1 {
  border-color: #a962bb !important; }

.c-border-left-purple-1 {
  border-left-color: #a962bb !important; }

.c-border-right-purple-1 {
  border-right-color: #a962bb !important; }

.c-border-top-purple-1 {
  border-top-color: #a962bb !important; }

.c-border-bottom-purple-1 {
  border-bottom-color: #a962bb !important; }

.c-border-after-purple-1:after,
.c-border-before-purple-1:before {
  border-color: #a962bb !important; }

.c-border-purple-2 {
  border-color: #aa67a3 !important; }

.c-border-left-purple-2 {
  border-left-color: #aa67a3 !important; }

.c-border-right-purple-2 {
  border-right-color: #aa67a3 !important; }

.c-border-top-purple-2 {
  border-top-color: #aa67a3 !important; }

.c-border-bottom-purple-2 {
  border-bottom-color: #aa67a3 !important; }

.c-border-after-purple-2:after,
.c-border-before-purple-2:before {
  border-color: #aa67a3 !important; }

.c-border-purple-3 {
  border-color: #ac3773 !important; }

.c-border-left-purple-3 {
  border-left-color: #ac3773 !important; }

.c-border-right-purple-3 {
  border-right-color: #ac3773 !important; }

.c-border-top-purple-3 {
  border-top-color: #ac3773 !important; }

.c-border-bottom-purple-3 {
  border-bottom-color: #ac3773 !important; }

.c-border-after-purple-3:after,
.c-border-before-purple-3:before {
  border-color: #ac3773 !important; }

.c-border-brown {
  border-color: #8a7f68 !important; }

.c-border-left-brown {
  border-left-color: #8a7f68 !important; }

.c-border-right-brown {
  border-right-color: #8a7f68 !important; }

.c-border-top-brown {
  border-top-color: #8a7f68 !important; }

.c-border-bottom-brown {
  border-bottom-color: #8a7f68 !important; }

.c-border-after-brown:after,
.c-border-before-brown:before {
  border-color: #8a7f68 !important; }

.c-border-brown-1 {
  border-color: #685e47 !important; }

.c-border-left-brown-1 {
  border-left-color: #685e47 !important; }

.c-border-right-brown-1 {
  border-right-color: #685e47 !important; }

.c-border-top-brown-1 {
  border-top-color: #685e47 !important; }

.c-border-bottom-brown-1 {
  border-bottom-color: #685e47 !important; }

.c-border-after-brown-1:after,
.c-border-before-brown-1:before {
  border-color: #685e47 !important; }

.c-border-brown-2 {
  border-color: #7a6a61 !important; }

.c-border-left-brown-2 {
  border-left-color: #7a6a61 !important; }

.c-border-right-brown-2 {
  border-right-color: #7a6a61 !important; }

.c-border-top-brown-2 {
  border-top-color: #7a6a61 !important; }

.c-border-bottom-brown-2 {
  border-bottom-color: #7a6a61 !important; }

.c-border-after-brown-2:after,
.c-border-before-brown-2:before {
  border-color: #7a6a61 !important; }

.c-border-brown-3 {
  border-color: #9d8b81 !important; }

.c-border-left-brown-3 {
  border-left-color: #9d8b81 !important; }

.c-border-right-brown-3 {
  border-right-color: #9d8b81 !important; }

.c-border-top-brown-3 {
  border-top-color: #9d8b81 !important; }

.c-border-bottom-brown-3 {
  border-bottom-color: #9d8b81 !important; }

.c-border-after-brown-3:after,
.c-border-before-brown-3:before {
  border-color: #9d8b81 !important; }

.c-border-dark {
  border-color: #2f353b !important; }

.c-border-left-dark {
  border-left-color: #2f353b !important; }

.c-border-right-dark {
  border-right-color: #2f353b !important; }

.c-border-top-dark {
  border-top-color: #2f353b !important; }

.c-border-bottom-dark {
  border-bottom-color: #2f353b !important; }

.c-border-after-dark:after,
.c-border-before-dark:before {
  border-color: #2f353b !important; }

.c-border-dark-1 {
  border-color: #525e64 !important; }

.c-border-left-dark-1 {
  border-left-color: #525e64 !important; }

.c-border-right-dark-1 {
  border-right-color: #525e64 !important; }

.c-border-top-dark-1 {
  border-top-color: #525e64 !important; }

.c-border-bottom-dark-1 {
  border-bottom-color: #525e64 !important; }

.c-border-after-dark-1:after,
.c-border-before-dark-1:before {
  border-color: #525e64 !important; }

.c-border-dark-2 {
  border-color: #31383c !important; }

.c-border-left-dark-2 {
  border-left-color: #31383c !important; }

.c-border-right-dark-2 {
  border-right-color: #31383c !important; }

.c-border-top-dark-2 {
  border-top-color: #31383c !important; }

.c-border-bottom-dark-2 {
  border-bottom-color: #31383c !important; }

.c-border-after-dark-2:after,
.c-border-before-dark-2:before {
  border-color: #31383c !important; }

.c-border-dark-3 {
  border-color: #41515b !important; }

.c-border-left-dark-3 {
  border-left-color: #41515b !important; }

.c-border-right-dark-3 {
  border-right-color: #41515b !important; }

.c-border-top-dark-3 {
  border-top-color: #41515b !important; }

.c-border-bottom-dark-3 {
  border-bottom-color: #41515b !important; }

.c-border-after-dark-3:after,
.c-border-before-dark-3:before {
  border-color: #41515b !important; }

.c-border-dark-4 {
  border-color: #24272b !important; }

.c-border-left-dark-4 {
  border-left-color: #24272b !important; }

.c-border-right-dark-4 {
  border-right-color: #24272b !important; }

.c-border-top-dark-4 {
  border-top-color: #24272b !important; }

.c-border-bottom-dark-4 {
  border-bottom-color: #24272b !important; }

.c-border-after-dark-4:after,
.c-border-before-dark-4:before {
  border-color: #24272b !important; }

.c-border-grey {
  border-color: #eeeeee !important; }

.c-border-left-grey {
  border-left-color: #eeeeee !important; }

.c-border-right-grey {
  border-right-color: #eeeeee !important; }

.c-border-top-grey {
  border-top-color: #eeeeee !important; }

.c-border-bottom-grey {
  border-bottom-color: #eeeeee !important; }

.c-border-after-grey:after,
.c-border-before-grey:before {
  border-color: #eeeeee !important; }

.c-border-grey-1 {
  border-color: #f7f7f7 !important; }

.c-border-left-grey-1 {
  border-left-color: #f7f7f7 !important; }

.c-border-right-grey-1 {
  border-right-color: #f7f7f7 !important; }

.c-border-top-grey-1 {
  border-top-color: #f7f7f7 !important; }

.c-border-bottom-grey-1 {
  border-bottom-color: #f7f7f7 !important; }

.c-border-after-grey-1:after,
.c-border-before-grey-1:before {
  border-color: #f7f7f7 !important; }

.c-border-grey-2 {
  border-color: #677083 !important; }

.c-border-left-grey-2 {
  border-left-color: #677083 !important; }

.c-border-right-grey-2 {
  border-right-color: #677083 !important; }

.c-border-top-grey-2 {
  border-top-color: #677083 !important; }

.c-border-bottom-grey-2 {
  border-bottom-color: #677083 !important; }

.c-border-after-grey-2:after,
.c-border-before-grey-2:before {
  border-color: #677083 !important; }

.c-border-grey-3 {
  border-color: #7f8c97 !important; }

.c-border-left-grey-3 {
  border-left-color: #7f8c97 !important; }

.c-border-right-grey-3 {
  border-right-color: #7f8c97 !important; }

.c-border-top-grey-3 {
  border-top-color: #7f8c97 !important; }

.c-border-bottom-grey-3 {
  border-bottom-color: #7f8c97 !important; }

.c-border-after-grey-3:after,
.c-border-before-grey-3:before {
  border-color: #7f8c97 !important; }

.c-border-grey-4 {
  border-color: #a0a6ab !important; }

.c-border-left-grey-4 {
  border-left-color: #a0a6ab !important; }

.c-border-right-grey-4 {
  border-right-color: #a0a6ab !important; }

.c-border-top-grey-4 {
  border-top-color: #a0a6ab !important; }

.c-border-bottom-grey-4 {
  border-bottom-color: #a0a6ab !important; }

.c-border-after-grey-4:after,
.c-border-before-grey-4:before {
  border-color: #a0a6ab !important; }

.c-bg-img-center-contain {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; }

.c-bg-img-center {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

.c-bg-img-top {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover; }

.c-bg-img-bottom-right {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover; }

.c-bg-img-top-center {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover; }

.c-bg-none,
.c-bg-transparent {
  background: none; }

.c-pos-relative {
  position: relative; }

.c-bg-parallax {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-color: transparent;
  min-height: 100%; }

@media only screen and (max-width: 1024px) {
  .c-bg-parallax {
    background-attachment: scroll !important;
    background-size: initial;
    background-position: top center; } }

@media only screen and (max-width: 991px) {
  .c-bg-parallax {
    background-position: center center;
    background-size: cover; } }

.c-opacity-0 {
  opacity: 0;
  filter: alpha(opacity=0); }

.c-opacity-01 {
  opacity: 0.1;
  filter: alpha(opacity=10); }

.c-opacity-02 {
  opacity: 0.2;
  filter: alpha(opacity=20); }

.c-opacity-03 {
  opacity: 0.3;
  filter: alpha(opacity=30); }

.c-opacity-04 {
  opacity: 0.4;
  filter: alpha(opacity=40); }

.c-opacity-05 {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.c-opacity-06 {
  opacity: 0.6;
  filter: alpha(opacity=60); }

.c-opacity-07 {
  opacity: 0.7;
  filter: alpha(opacity=70); }

.c-opacity-08 {
  opacity: 0.8;
  filter: alpha(opacity=80); }

.c-opacity-1 {
  opacity: 1;
  filter: alpha(opacity=100); }

.c-layout-page:before, .c-layout-page:after {
  content: " ";
  display: table; }

.c-layout-page:after {
  clear: both; }

.c-layout-page-loading * {
  visibility: hidden; }

.c-layout-page-loading .c-content-loader {
  visibility: visible;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%; }

@media (min-width: 992px) {
  .container-fluid {
    padding: 0 100px; } }

.c-layout-header:before, .c-layout-header:after {
  content: " ";
  display: table; }

.c-layout-header:after {
  clear: both; }

.c-layout-header .c-navbar:before, .c-layout-header .c-navbar:after {
  content: " ";
  display: table; }

.c-layout-header .c-navbar:after {
  clear: both; }

.c-layout-header .c-brand {
  transition: all 0.2s;
  display: inline-block; }
  .c-layout-header .c-brand.c-pull-left {
    float: left; }
  .c-layout-header .c-brand.c-pull-right {
    float: right; }
  .c-layout-header .c-brand > .c-hor-nav-toggler {
    display: none; }
  .c-layout-header .c-brand > .c-topbar-toggler,
  .c-layout-header .c-brand > .c-search-toggler,
  .c-layout-header .c-brand > .c-cart-toggler {
    display: none; }
  .c-layout-quick-search-shown .c-layout-header .c-brand {
    display: none; }
  .c-layout-header .c-brand .c-desktop-logo {
    display: block; }
  .c-layout-header .c-brand .c-desktop-logo-inverse {
    display: none; }
  .c-layout-header .c-brand > .c-btn-login {
    display: none; }

.c-layout-header .c-quick-search {
  display: none;
  padding: 0;
  margin: 0;
  transition: all 0.2s;
  position: relative; }
  .c-layout-header .c-quick-search:before, .c-layout-header .c-quick-search:after {
    content: " ";
    display: table; }
  .c-layout-header .c-quick-search:after {
    clear: both; }
  .c-layout-quick-search-shown .c-layout-header .c-quick-search {
    display: block;
    transition: all 0.2s; }
  .c-layout-header .c-quick-search > .form-control {
    display: block;
    font-size: 22px;
    font-weight: 400;
    border: 0;
    background: transparent;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; }
    .c-layout-header .c-quick-search > .form-control::-ms-clear {
      display: none; }
    .c-layout-header .c-quick-search > .form-control:focus, .c-layout-header .c-quick-search > .form-control:active {
      box-shadow: none; }
  .c-layout-header .c-quick-search > span {
    display: inline-block;
    position: absolute;
    font-size: 36px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
    .c-layout-header .c-quick-search > span:hover {
      cursor: pointer; }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-no-border {
    border-bottom: 0 !important; }
  .c-layout-header .c-navbar {
    line-height: 0px; }
    .c-layout-header .c-navbar > .container {
      position: relative; }
    .c-layout-header .c-navbar > .container-fluid {
      position: relative;
      padding: 0 100px; }
  .c-layout-header .c-brand {
    margin: 40px 0 37px 0; }
    .c-layout-header .c-brand .c-desktop-logo-inverse {
      display: none; }
    .c-layout-header .c-brand .c-desktop-logo {
      display: inline-block; }
    .c-layout-header .c-brand .c-mobile-logo {
      display: none; }
  .c-layout-header .c-quick-search > .form-control {
    padding: 10px 0;
    height: 100px; }
  .c-layout-header .c-quick-search > span {
    top: 50px;
    right: -2px; }
  .c-layout-header-fullscreen.c-layout-header-static .c-layout-header,
  .c-layout-header-fixed .c-layout-header {
    top: 0;
    position: fixed;
    z-index: 9995;
    width: 100%; }
  .c-layout-header-fixed .c-layout-page {
    margin-top: 100px; }
  .c-layout-header-fixed.c-layout-header-topbar .c-layout-page {
    margin-top: 145px; }
  .c-layout-header-fullscreen .c-layout-page,
  .c-layout-header-fullscreen.c-layout-header-fixed.c-layout-header-topbar .c-layout-page {
    margin-top: 0; }
  .c-page-on-scroll.c-layout-header-static .c-layout-header {
    display: none; }
  .c-page-on-scroll.c-layout-header-fixed .c-layout-header {
    height: 65px;
    line-height: 0px; }
    .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-brand {
      transition: margin 0.2s;
      margin: 22px 0 19px 0; }
      .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-brand .c-desktop-logo {
        display: none; }
      .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-brand .c-desktop-logo-inverse {
        display: block; }
    .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-mega-menu {
      line-height: 0px; }
      .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-mega-menu .nav.navbar-nav > li > .c-link {
        transition: all 0.2s;
        padding: 23px 15px 21px 15px;
        min-height: 65px; }
      .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-mega-menu .nav.navbar-nav > li > .c-quick-sidebar-toggler {
        transition: all 0.2s;
        padding: 26px 0 24px 15px; }
      .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-mega-menu .nav.navbar-nav > li > .c-btn {
        transition: all 0.2s;
        margin: 15px 15px 16px 15px; }
      .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-mega-menu .nav.navbar-nav > li > .c-btn-icon {
        transition: all 0.2s;
        margin: 6px 5px 7px 5px; }
    .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-quick-search > .form-control {
      font-size: 22px;
      padding: 10px 0;
      height: 65px; }
    .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-quick-search > span {
      font-size: 36px;
      top: 33px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header {
    margin: 0;
    transition: all 0.2s; }
    .c-layout-header .container-fluid {
      padding-left: 0;
      padding-right: 0; }
    .c-layout-header .c-navbar {
      height: 65px; }
      .c-layout-header .c-navbar > .container {
        position: relative;
        padding: 0; }
    .c-layout-header .c-brand {
      float: none !important;
      display: block;
      margin: 20px 15px 21px 15px; }
      .c-layout-header .c-brand .c-desktop-logo-inverse {
        display: none; }
      .c-layout-header .c-brand > .c-hor-nav-toggler {
        display: inline-block;
        background: none;
        border: 0;
        margin: -1px 0 0 0;
        padding: 0;
        float: right;
        outline: none; }
        .c-layout-header .c-brand > .c-hor-nav-toggler > .c-line {
          width: 15px;
          display: block;
          height: 2px;
          padding: 0px;
          margin: 3px 0; }
          .c-layout-header .c-brand > .c-hor-nav-toggler > .c-line:first-child {
            margin-top: 4px; }
      .c-layout-header .c-brand > .c-topbar-toggler,
      .c-layout-header .c-brand > .c-search-toggler,
      .c-layout-header .c-brand > .c-cart-toggler {
        background: none;
        border: 0;
        margin: 0px 25px 0 0;
        padding: 0;
        float: right;
        outline: none;
        height: 20px;
        width: 20px; }
        .c-layout-header .c-brand > .c-topbar-toggler > i,
        .c-layout-header .c-brand > .c-search-toggler > i,
        .c-layout-header .c-brand > .c-cart-toggler > i {
          font-size: 14px; }
      .c-layout-header .c-brand > .c-search-toggler,
      .c-layout-header .c-brand > .c-cart-toggler {
        display: inline-block; }
      .c-layout-header .c-brand > .c-btn-login {
        float: right;
        display: inline-block;
        margin-right: 20px;
        margin-top: -3px; }
      .c-layout-header .c-brand .c-desktop-logo {
        display: none; }
    .c-layout-header .c-mega-menu {
      line-height: 0px; }
    .c-layout-header .c-quick-search {
      position: relative; }
      .c-layout-header .c-quick-search > .form-control {
        font-size: 20px;
        padding: 10px 15px;
        height: 65px; }
      .c-layout-header .c-quick-search > span {
        font-size: 36px;
        right: 20px;
        top: 9px; }
  .c-layout-header-fullscreen.c-layout-header-mobile-fixed.c-layout-header-static .c-layout-header,
  .c-layout-header-fixed.c-layout-header-mobile-fixed .c-layout-header {
    top: 0;
    position: fixed;
    z-index: 9995;
    width: 100%;
    transition: none; }
    .c-layout-header-fullscreen.c-layout-header-mobile-fixed.c-layout-header-static .c-layout-header.c-mega-menu-shown .c-mega-menu,
    .c-layout-header-fixed.c-layout-header-mobile-fixed .c-layout-header.c-mega-menu-shown .c-mega-menu {
      position: absolute;
      overflow-y: auto; }
  .c-layout-header-topbar-collapse .c-layout-header .c-brand > .c-topbar-toggler {
    display: inline-block; }
  .c-layout-header-fixed.c-layout-header-mobile-fixed .c-layout-page {
    margin-top: 65px; }
  .c-layout-header-fixed.c-layout-header-mobile-fixed .c-layout-header-topbar .c-layout-page {
    margin-top: 110px; }
  .c-layout-header-fullscreen.c-layout-header-mobile-fixed .c-layout-page,
  .c-layout-header-fullscreen.c-layout-header-mobile-fixed.c-layout-header-fixed.c-layout-header-topbar .c-layout-page {
    margin-top: 0; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header .c-navbar .c-mega-menu {
    line-height: 0px;
    display: inline-block;
    padding: 0;
    margin: 0;
    position: static; }
    .c-layout-header .c-navbar .c-mega-menu.c-pull-left {
      float: left; }
    .c-layout-header .c-navbar .c-mega-menu.c-pull-right {
      float: right; }
    .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav {
      line-height: 0px;
      background: none;
      position: static;
      margin: 0;
      padding: 0; }
      .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li {
        padding: 0;
        margin: 0;
        float: left;
        position: static; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-menu-type-classic {
          position: relative; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
          letter-spacing: 1px;
          font-style: normal;
          transition: all 0.2s;
          padding: 41px 15px 39px 15px;
          min-height: 100px;
          font-size: 17px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover, .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
            background: none; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler {
          transition: all 0.2s;
          display: inline-block;
          background: none !important;
          padding: 44px 0 40px 15px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
            width: 15px;
            display: block;
            height: 2px;
            padding: 0px;
            margin: 3px 0; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line:first-child {
              margin-top: 0px; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn {
          transition: margin 0.2s;
          margin: 34px 15px 33px 15px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn > i {
            position: relative;
            top: 1px; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon {
          background: none;
          outline: none;
          transition: margin 0.2s;
          margin: 24px 5px 20px 5px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover {
            background: none; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon > i {
            position: relative;
            top: 0px;
            font-size: 14px;
            height: 14px; }
            .ie .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon > i {
              top: 2px; }
            .ie9 .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon > i {
              top: 0px; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > .c-quick-sidebar-toggler,
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > .c-btn-link,
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > .c-link, .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > .c-quick-sidebar-toggler,
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > .c-btn-link,
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > .c-link {
          background: none; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu {
          width: auto;
          -webkit-border-radius: 0;
          -moz-border-radius: 0;
          -ms-border-radius: 0;
          -o-border-radius: 0;
          border-radius: 0; }
          .container-fluid .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu {
            width: 1170px !important; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu, .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-pull-right {
            right: 0;
            left: auto; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-pull-left {
            left: 0;
            right: auto; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-menu {
          box-shadow: none; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-menu > li > h3 {
            margin: 0;
            letter-spacing: 1px;
            padding: 10px 25px 10px 25px;
            font-size: 16px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-menu > li > a {
            padding: 8px 25px;
            white-space: normal;
            letter-spacing: 1px;
            font-size: 14px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-menu > li.dropdown-submenu > .dropdown-menu {
            margin-top: -10px;
            margin-left: 0; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-fullwidth {
          width: 100%;
          left: 0;
          right: 0; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic {
          left: auto;
          right: auto;
          min-width: 235px;
          width: 235px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic.c-pull-right {
            right: 0;
            left: auto; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic .dropdown-menu {
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            -o-border-radius: 0;
            border-radius: 0;
            min-width: 235px;
            width: 235px; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega {
          padding: 0; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .dropdown-menu {
            float: none;
            box-shadow: none !important;
            background: none;
            position: static;
            display: block; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .dropdown-menu:before, .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .dropdown-menu:after {
              content: " ";
              display: table; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .dropdown-menu:after {
              clear: both; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > .row {
            margin: 0 0; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > .row > div {
              padding: 0; }
              .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > .row > div:last-child {
                border-right: 0; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .c-menu-type-inline {
            margin: 10px 0; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs {
            padding: 20px 40px; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li {
              margin: 0 15px; }
              .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li:first-child {
                margin-left: 0; }
              .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li > a {
                margin: 0;
                padding: 7px 0;
                border: 0;
                background: none;
                font-size: 16px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .tab-content {
            padding: 0;
            margin: 0 15px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > li {
            display: table-cell;
            width: 1%; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > li .dropdown-menu.c-menu-type-inline {
              -webkit-border-radius: 0;
              -moz-border-radius: 0;
              -ms-border-radius: 0;
              -o-border-radius: 0;
              border-radius: 0;
              margin: 0;
              padding: 15px 0; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > li > .dropdown-menu {
              float: none; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > .dropdown-menu {
          display: block; }
      .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav .c-visible-mobile {
        display: none !important; }
    .c-layout-quick-search-shown .c-layout-header .c-navbar .c-mega-menu {
      display: none; }
  .c-layout-header .c-navbar .container-fluid > .c-navbar-wrapper > .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega {
    max-width: 1170px; }
  .c-layout-header .c-navbar .c-mega-menu {
    line-height: 0px; }
    .c-layout-header .c-navbar .c-mega-menu.c-fonts-uppercase > .nav.navbar-nav > li > .c-link {
      font-size: 15px;
      text-transform: uppercase; }
    .c-layout-header .c-navbar .c-mega-menu.c-fonts-uppercase > .nav.navbar-nav > li .dropdown-menu > li > h3 {
      font-size: 14px;
      text-transform: uppercase; }
    .c-layout-header .c-navbar .c-mega-menu.c-fonts-uppercase > .nav.navbar-nav > li .dropdown-menu > li > a {
      font-size: 12px;
      text-transform: uppercase; }
    .c-layout-header .c-navbar .c-mega-menu.c-fonts-uppercase > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li > a {
      font-size: 14px;
      text-transform: uppercase; }
    .c-layout-header .c-navbar .c-mega-menu.c-fonts-bold > .nav.navbar-nav > li > .c-link {
      font-weight: 600; }
    .c-layout-header .c-navbar .c-mega-menu.c-fonts-bold > .nav.navbar-nav > li .dropdown-menu > li > h3 {
      font-weight: 500; }
    .c-layout-header .c-navbar .c-mega-menu.c-fonts-bold > .nav.navbar-nav > li .dropdown-menu > li > a {
      font-weight: 500; }
    .c-layout-header .c-navbar .c-mega-menu.c-fonts-bold > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li > a {
      font-weight: 600; } }

@media (min-width: 1170px) {
  .c-layout-header .c-navbar .container-fluid > .c-navbar-wrapper > .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega {
    left: auto;
    right: 20px; }
    .c-layout-header .c-navbar .container-fluid > .c-navbar-wrapper > .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega.c-pull-left {
      left: 20px;
      right: auto; } }

.c-mega-menu-onepage-dots {
  width: 12px;
  position: fixed;
  list-style: none;
  top: 50%;
  right: 20px; }
  .c-mega-menu-onepage-dots .c-onepage-dots-nav {
    position: relative;
    padding: 0;
    margin: 0; }
    .c-mega-menu-onepage-dots .c-onepage-dots-nav > li.c-onepage-link {
      margin: 7px 0;
      display: block;
      float: none;
      padding: 0; }
      .c-mega-menu-onepage-dots .c-onepage-dots-nav > li.c-onepage-link > a {
        padding: 0;
        margin: 0;
        display: block;
        line-height: 0px;
        height: 12px;
        width: 12px;
        background: #e3e7ec;
        border-radius: 12px; }
      .c-mega-menu-onepage-dots .c-onepage-dots-nav > li.c-onepage-link.c-active > a, .c-mega-menu-onepage-dots .c-onepage-dots-nav > li.c-onepage-link.active > a {
        background: #b5bfce; }
      .c-mega-menu-onepage-dots .c-onepage-dots-nav > li.c-onepage-link .tooltip .tooltip-inner {
        border-radius: 0;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 20px; }

@media (max-width: 991px) {
  /* 991px */
  .c-mega-menu-onepage-dots {
    right: 20px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header .c-navbar .c-mega-menu {
    display: inline-block;
    padding: 0;
    margin: 0;
    padding: 5px 10px;
    display: none;
    width: 100%;
    float: none !important;
    overflow-x: hidden;
    transition: all 0.2s; }
    .c-layout-header .c-navbar .c-mega-menu.c-pull-left {
      float: left; }
    .c-layout-header .c-navbar .c-mega-menu.c-pull-right {
      float: right; }
    .c-layout-header .c-navbar .c-mega-menu.c-shown {
      display: block;
      position: absolute;
      z-index: 9996; }
    .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav {
      margin: 0 -15px !important;
      float: none; }
      .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li {
        display: block;
        float: none; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
          padding: 10px 20px 10px 20px;
          font-size: 15px;
          letter-spacing: 1px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus, .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover {
            background: none; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn {
          margin: 15px 15px 5px 15px; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-search-toggler {
          display: none; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler {
          padding: 10px 20px 10px 20px;
          background: 0;
          border: 0;
          outline: none;
          padding-right: 0; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
            width: 15px;
            display: block;
            height: 2px;
            padding: 0px;
            margin: 3px 0; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line:first-child {
              margin-top: 3px; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-open > .dropdown-menu {
          display: block; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-open > .dropdown-menu .dropdown-submenu.c-open > .dropdown-menu {
            display: block; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-submenu > a > .c-arrow,
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li a.dropdown-toggle > .c-arrow {
          position: absolute;
          right: 15px;
          padding: 3px 0;
          display: inline-block;
          font-size: 13px;
          font-family: FontAwesome;
          height: auto;
          margin-top: -3px;
          text-align: center;
          width: 30px;
          font-weight: 300; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-submenu > a > .c-arrow:before,
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li a.dropdown-toggle > .c-arrow:before {
            content: "\F104"; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-open.dropdown-submenu > a > .c-arrow:before,
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-open > a.dropdown-toggle > .c-arrow:before,
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .c-open.dropdown-submenu > a > .c-arrow:before,
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .c-open > a.dropdown-toggle > .c-arrow:before {
          content: "\F107"; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-menu {
          padding-bottom: 0;
          float: none;
          display: none;
          position: static;
          background: none;
          box-shadow: none;
          min-width: none; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-menu > li > h3 {
            margin: 0;
            font-size: 15px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-menu > li > a {
            font-size: 14px;
            white-space: normal; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-menu > li > a:focus, .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li .dropdown-menu > li > a:hover {
              background: none; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic {
          padding: 0; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic > li > a,
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic > .dropdown-submenu > a {
            padding: 10px 20px 10px 40px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic > .dropdown-submenu > .dropdown-menu > li > a {
            padding: 10px 20px 10px 60px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic > .dropdown-submenu > .dropdown-menu > li > .dropdown-menu > li > a {
            padding: 10px 20px 10px 80px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic > .dropdown-submenu > .dropdown-menu > li > .dropdown-menu > li > .dropdown-menu > li > a {
            padding: 10px 20px 10px 100px; }
        .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega {
          padding-top: 0;
          min-width: 0 !important; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .dropdown-menu {
            display: block; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .dropdown-menu.c-menu-type-inline {
              margin-left: 0; }
              .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .dropdown-menu.c-menu-type-inline > li > h3 {
                padding: 10px 20px 10px 40px; }
              .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .dropdown-menu.c-menu-type-inline > li > a {
                padding: 10px 20px 10px 60px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > .dropdown-submenu > a {
            padding: 10px 20px 10px 40px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > .dropdown-submenu > .dropdown-menu {
            display: none; }
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > .dropdown-submenu > .dropdown-menu .dropdown-menu > li > h3,
            .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > .dropdown-submenu > .dropdown-menu .dropdown-menu > li > a {
              padding: 10px 20px 10px 60px; }
          .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > .dropdown-submenu.c-open > .dropdown-menu {
            display: block; }
      .c-layout-header .c-navbar .c-mega-menu > .nav.navbar-nav .c-visible-desktop {
        display: none !important; }
  .c-layout-header .c-navbar .c-mega-menu.c-fonts-uppercase > .nav.navbar-nav > li > .c-link {
    font-size: 13px;
    text-transform: uppercase; }
  .c-layout-header .c-navbar .c-mega-menu.c-fonts-uppercase > .nav.navbar-nav > li .dropdown-menu > li > h3 {
    font-size: 13px;
    text-transform: uppercase; }
  .c-layout-header .c-navbar .c-mega-menu.c-fonts-uppercase > .nav.navbar-nav > li .dropdown-menu > li > a {
    font-size: 13px;
    text-transform: uppercase; }
  .c-layout-header .c-navbar .c-mega-menu.c-fonts-bold > .nav.navbar-nav > li > .c-link {
    font-weight: 400; }
  .c-layout-header .c-navbar .c-mega-menu.c-fonts-bold > .nav.navbar-nav > li .dropdown-menu > li > h3 {
    font-weight: 400; }
  .c-layout-header .c-navbar .c-mega-menu.c-fonts-bold > .nav.navbar-nav > li .dropdown-menu > li > a {
    font-weight: 400; } }

.c-layout-header:before, .c-layout-header:after {
  content: " ";
  display: table; }

.c-layout-header:after {
  clear: both; }

.c-layout-header .c-topbar:before, .c-layout-header .c-topbar:after {
  content: " ";
  display: table; }

.c-layout-header .c-topbar:after {
  clear: both; }

.c-layout-header .c-topbar .c-top-menu {
  display: inline-block;
  padding: 0;
  margin: 0; }
  .c-layout-header .c-topbar .c-top-menu.c-pull-left {
    float: left; }
  .c-layout-header .c-topbar .c-top-menu.c-pull-right {
    float: right; }
  .c-layout-header .c-topbar .c-top-menu > .c-icons,
  .c-layout-header .c-topbar .c-top-menu > .c-links,
  .c-layout-header .c-topbar .c-top-menu > .c-ext {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style-type: none; }
    .c-layout-header .c-topbar .c-top-menu > .c-icons > li,
    .c-layout-header .c-topbar .c-top-menu > .c-links > li,
    .c-layout-header .c-topbar .c-top-menu > .c-ext > li {
      display: inline-block; }
  .c-layout-header .c-topbar .c-top-menu > .c-icons > li {
    padding: 12px 5px 8px 5px; }
    .c-layout-header .c-topbar .c-top-menu > .c-icons > li > a {
      font-size: 14px; }
      .c-layout-header .c-topbar .c-top-menu > .c-icons > li > a > i {
        font-size: 15px; }
    .c-layout-header .c-topbar .c-top-menu > .c-icons > li > span {
      font-size: 15px; }
    .c-layout-header .c-topbar .c-top-menu > .c-icons > li > a:active, .c-layout-header .c-topbar .c-top-menu > .c-icons > li > a:hover, .c-layout-header .c-topbar .c-top-menu > .c-icons > li > a:focus {
      cursor: pointer;
      text-decoration: none; }
  .c-layout-header .c-topbar .c-top-menu > .c-links > li {
    padding: 0 3px 5px 3px; }
    .c-layout-header .c-topbar .c-top-menu > .c-links > li > a:not(.btn),
    .c-layout-header .c-topbar .c-top-menu > .c-links > li > span {
      font-size: 15px; }
      .c-layout-header .c-topbar .c-top-menu > .c-links > li > a:not(.btn) > i,
      .c-layout-header .c-topbar .c-top-menu > .c-links > li > span > i {
        font-size: 16px; }
    .c-layout-header .c-topbar .c-top-menu > .c-links > li > a:not(.btn):active, .c-layout-header .c-topbar .c-top-menu > .c-links > li > a:not(.btn):hover, .c-layout-header .c-topbar .c-top-menu > .c-links > li > a:not(.btn):focus {
      cursor: pointer;
      text-decoration: none; }
    .c-layout-header .c-topbar .c-top-menu > .c-links > li.c-divider {
      position: relative;
      font-size: 13px;
      top: -1px; }
  .c-layout-header .c-topbar .c-top-menu > .c-ext > li {
    margin: 0;
    padding: 0; }
    .c-layout-header .c-topbar .c-top-menu > .c-ext > li > a > i {
      font-size: 15px;
      position: relative;
      top: 3px; }
    .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-lang {
      position: relative;
      top: 8px;
      margin: 0 10px 0 15px; }
      .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-lang.c-last {
        margin-right: 0; }
      .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-lang > a {
        display: inline-block;
        float: left;
        padding: 7px 7px 5px 7px;
        height: 28px;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px; }
      .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-lang > .dropdown-menu {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        min-width: 155px;
        padding: 0;
        margin: 0; }
        .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-lang > .dropdown-menu > li {
          padding: 0; }
          .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-lang > .dropdown-menu > li > a {
            letter-spacing: 1px;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            padding: 8px 12px; }
      .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-lang:hover > .dropdown-menu {
        display: block; }
    .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-search {
      margin-top: 8px; }
      .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-search > form {
        float: left;
        padding: 0;
        margin: 0;
        position: relative; }
        .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-search > form > .form-control {
          font-weight: 400;
          border: 0;
          border-radius: 0;
          padding: 4px 14px 2px 6px;
          height: 28px;
          font-size: 12px;
          text-transform: uppercase; }
        .c-layout-header .c-topbar .c-top-menu > .c-ext > li.c-search > form > i {
          cursor: pointer;
          font-size: 13px;
          position: absolute;
          top: 8px;
          right: 8px; }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header .c-topbar {
    height: 45px; }
    .c-layout-header .c-topbar > .container-fluid {
      padding: 0 100px; }
  .c-page-on-scroll.c-layout-header-fixed .c-layout-header .c-topbar {
    transition: all 0.2s;
    display: none; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header .c-topbar {
    margin: 0;
    min-height: 45px; }
    .c-layout-header .c-topbar .container-fluid {
      padding-left: 15px;
      padding-right: 15px; }
  .c-layout-header-topbar-collapse .c-layout-header .c-topbar {
    display: none; }
  .c-layout-header-topbar-collapse.c-topbar-expanded .c-layout-header .c-topbar {
    display: block; }
  .c-layout-header-topbar-collapse.c-topbar-expanded.c-layout-header-fixed.c-layout-header-mobile-fixed:not(.c-layout-header-fullscreen) .c-layout-page {
    margin-top: 110px; } }

.c-page-on-scroll .c-layout-header .c-cart-toggler-wrapper .c-btn-icon {
  margin-bottom: 3px !important; }

.c-layout-header .c-cart-toggler-wrapper .c-btn-icon i {
  font-size: 20px !important; }

.c-layout-header .c-cart-toggler-wrapper .c-cart-number {
  margin-left: 5px;
  position: relative;
  top: -3px;
  display: inline-block;
  border-radius: 20px;
  text-align: center;
  padding: 3px 0;
  height: 25px;
  font-size: 15px;
  width: 25px;
  color: #ffffff; }

.c-layout-header .c-cart-menu {
  border: 1px solid #f3f3f3;
  display: none;
  width: 390px;
  background: #ffffff;
  position: absolute;
  top: 100%;
  right: 0; }
  .c-header-cart-shown .c-layout-header .c-cart-menu {
    display: block; }
  .c-layout-header .c-cart-menu .c-cart-menu-title {
    padding: 20px; }
    .c-layout-header .c-cart-menu .c-cart-menu-title > .c-cart-menu-float-l {
      float: left;
      display: inline-block; }
    .c-layout-header .c-cart-menu .c-cart-menu-title > .c-cart-menu-float-r {
      float: right;
      display: inline-block; }
  .c-layout-header .c-cart-menu .c-cart-menu-items {
    padding: 0;
    max-height: 500px;
    overflow-y: auto;
    width: 100%; }
    .c-layout-header .c-cart-menu .c-cart-menu-items > li {
      border-top: 1px solid #f3f3f3;
      padding: 20px;
      width: 100%;
      list-style: none;
      overflow: auto; }
      .c-layout-header .c-cart-menu .c-cart-menu-items > li > img {
        width: 80px;
        height: 80px;
        float: left;
        margin-right: 20px; }
      .c-layout-header .c-cart-menu .c-cart-menu-items > li > .c-cart-menu-content {
        padding-left: 100px; }
        .c-layout-header .c-cart-menu .c-cart-menu-items > li > .c-cart-menu-content .c-item-name,
        .c-layout-header .c-cart-menu .c-cart-menu-items > li > .c-cart-menu-content .c-item-price {
          line-height: 1em; }
      .c-layout-header .c-cart-menu .c-cart-menu-items > li > .c-cart-menu-close {
        float: right;
        margin-top: 10px; }
        .c-layout-header .c-cart-menu .c-cart-menu-items > li > .c-cart-menu-close > a {
          font-size: 28px;
          font-family: arial;
          font-weight: 100;
          color: #ddd; }
  .c-layout-header .c-cart-menu .c-cart-menu-footer {
    border-top: 1px solid #f3f3f3;
    padding: 20px;
    text-align: center; }

.c-layout-header .container-fluid .c-cart-menu {
  right: 20px; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header .c-cart-toggler-wrapper {
    display: none !important; }
  .c-layout-header .c-brand > .c-cart-toggler {
    width: auto;
    height: auto; }
    .c-layout-header .c-brand > .c-cart-toggler i {
      display: inline-block;
      font-size: 18px !important;
      position: relative;
      top: 3px; }
    .c-layout-header .c-brand > .c-cart-toggler .c-cart-number {
      margin-left: 3px;
      position: relative;
      top: 0px;
      display: inline-block;
      border-radius: 20px;
      text-align: center;
      padding: 2px 0;
      height: 22px;
      font-size: 13px;
      width: 22px;
      color: #ffffff; } }

@media (max-width: 767px) {
  .c-layout-header .c-cart-menu {
    width: 100%;
    right: 0; }
    .c-layout-header .c-cart-menu .c-cart-menu-items {
      max-height: 150px; }
  .c-layout-header .container-fluid .c-cart-menu {
    right: 0; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-default {
    background: none;
    border-bottom: 0; }
    .c-layout-header.c-layout-header-default .c-navbar {
      background: none; }
      .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
      .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
        color: #ffffff; }
        .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
        .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
        .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
          color: #ffffff; }
      .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
        background-color: white; }
      .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn), .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn), .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn) {
        color: #ffffff; }
      .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > button > .c-line, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > button > .c-line, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > button > .c-line {
        background: #ffffff; }
      .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active {
        color: #ffffff; }
        .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn) {
          color: #ffffff; }
        .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > button > .c-line {
          background: #ffffff; }
    .c-layout-header.c-layout-header-default .c-quick-search > .form-control {
      color: #ffffff; }
      .c-layout-header.c-layout-header-default .c-quick-search > .form-control::-moz-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-default .c-quick-search > .form-control:-moz-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-default .c-quick-search > .form-control:-ms-input-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-default .c-quick-search > .form-control::-webkit-input-placeholder {
        color: white; }
    .c-layout-header.c-layout-header-default .c-quick-search > span {
      color: white; }
  .c-page-on-scroll .c-layout-header.c-layout-header-default {
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 0;
    box-shadow: none; }
    .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
    .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
      color: #ffffff; }
      .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
      .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
      .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
        color: #ffffff; }
    .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
      background-color: white; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler), .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler), .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler), .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler) {
    position: relative;
    color: #ffffff !important; }
    .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before {
      transition: 0.2s;
      position: absolute;
      top: 32px;
      content: '';
      width: 15px;
      height: 2px;
      display: block;
      background: #ffffff; }
      .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-page-on-scroll .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before {
        top: 14px;
        transition: 0.2s; }
    .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler) > i, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler) > i, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler) > i, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler) > i {
      color: #ffffff !important; }
  .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a.c-btn-icon, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a.c-btn-icon, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a.c-btn-icon, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a.c-btn-icon {
    color: #ffffff; }
  .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > .c-search-toggler > i, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > .c-search-toggler > i, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > .c-search-toggler > i, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > .c-search-toggler > i {
    color: #ffffff !important; }
  .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > .c-quick-sidebar-toggler > .c-line, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > .c-quick-sidebar-toggler > .c-line, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > .c-quick-sidebar-toggler > .c-line, .c-layout-header.c-layout-header-default .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > .c-quick-sidebar-toggler > .c-line {
    background: #ffffff !important; }
  .c-layout-header.c-layout-header-default.c-bordered {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header.c-layout-header-default-mobile {
    background: #ffffff;
    border-bottom: 0; }
    .c-layout-header.c-layout-header-default-mobile .c-brand > .c-hor-nav-toggler {
      position: relative;
      top: -1px;
      display: inline-block;
      background: #f5f6f8;
      padding: 5px 8px 6px 8px; }
      .c-layout-header.c-layout-header-default-mobile .c-brand > .c-hor-nav-toggler > .c-line {
        background: #bac3cd; }
      .c-layout-header.c-layout-header-default-mobile .c-brand > .c-hor-nav-toggler:hover {
        background: #e6eaed; }
        .c-layout-header.c-layout-header-default-mobile .c-brand > .c-hor-nav-toggler:hover > .c-line {
          background: #abb7c3; }
    .c-layout-header.c-layout-header-default-mobile .c-brand > .c-topbar-toggler > i,
    .c-layout-header.c-layout-header-default-mobile .c-brand > .c-search-toggler > i,
    .c-layout-header.c-layout-header-default-mobile .c-brand > .c-cart-toggler > i {
      color: #9fadba; }
    .c-layout-header.c-layout-header-default-mobile .c-brand > .c-topbar-toggler:hover > i,
    .c-layout-header.c-layout-header-default-mobile .c-brand > .c-search-toggler:hover > i,
    .c-layout-header.c-layout-header-default-mobile .c-brand > .c-cart-toggler:hover > i {
      color: #bdc6d0; }
    .c-layout-header.c-layout-header-default-mobile .c-quick-search > .form-control {
      color: #677581; }
      .c-layout-header.c-layout-header-default-mobile .c-quick-search > .form-control::-moz-placeholder {
        color: #818e9a; }
      .c-layout-header.c-layout-header-default-mobile .c-quick-search > .form-control:-moz-placeholder {
        color: #818e9a; }
      .c-layout-header.c-layout-header-default-mobile .c-quick-search > .form-control:-ms-input-placeholder {
        color: #818e9a; }
      .c-layout-header.c-layout-header-default-mobile .c-quick-search > .form-control::-webkit-input-placeholder {
        color: #818e9a; }
    .c-layout-header.c-layout-header-default-mobile .c-quick-search > span {
      color: #818e9a; }
  .c-layout-header-fullscreen.c-layout-header-mobile-fixed.c-layout-header-static .c-layout-header,
  .c-layout-header-fixed.c-layout-header-mobile-fixed .c-layout-header {
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0px 3px 9px -4px rgba(0, 0, 0, 0.25); } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header.c-layout-header-default-mobile.c-header-transparent-dark {
    background: #ffffff; }
    .c-layout-header.c-layout-header-default-mobile.c-header-transparent-dark.c-mega-menu-shown {
      background: #ffffff; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header.c-layout-header-dark-mobile {
    background: #394048;
    border-bottom: 0; }
    .c-layout-header.c-layout-header-dark-mobile .c-brand > .c-hor-nav-toggler {
      position: relative;
      top: -1px;
      display: inline-block;
      background: #2e333a;
      padding: 5px 8px 6px 8px; }
      .c-layout-header.c-layout-header-dark-mobile .c-brand > .c-hor-nav-toggler > .c-line {
        background: #8e99a6; }
      .c-layout-header.c-layout-header-dark-mobile .c-brand > .c-hor-nav-toggler:hover {
        background: #22272c; }
        .c-layout-header.c-layout-header-dark-mobile .c-brand > .c-hor-nav-toggler:hover > .c-line {
          background: #808c9a; }
    .c-layout-header.c-layout-header-dark-mobile .c-brand > .c-topbar-toggler > i,
    .c-layout-header.c-layout-header-dark-mobile .c-brand > .c-search-toggler > i,
    .c-layout-header.c-layout-header-dark-mobile .c-brand > .c-cart-toggler > i {
      color: #e6e6e6; }
    .c-layout-header.c-layout-header-dark-mobile .c-brand > .c-topbar-toggler:hover > i,
    .c-layout-header.c-layout-header-dark-mobile .c-brand > .c-search-toggler:hover > i,
    .c-layout-header.c-layout-header-dark-mobile .c-brand > .c-cart-toggler:hover > i {
      color: white; }
    .c-layout-header.c-layout-header-dark-mobile .c-quick-search > .form-control {
      color: #fff; }
      .c-layout-header.c-layout-header-dark-mobile .c-quick-search > .form-control::-moz-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-dark-mobile .c-quick-search > .form-control:-moz-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-dark-mobile .c-quick-search > .form-control:-ms-input-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-dark-mobile .c-quick-search > .form-control::-webkit-input-placeholder {
        color: white; }
    .c-layout-header.c-layout-header-dark-mobile .c-quick-search > span {
      color: white; }
  .c-layout-header-fullscreen.c-layout-header-mobile-fixed.c-layout-header-static .c-layout-header,
  .c-layout-header-fixed.c-layout-header-mobile-fixed .c-layout-header {
    border-bottom: 0;
    box-shadow: 0; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header.c-layout-header-dark-mobile.c-header-transparent-dark {
    background: rgba(30, 36, 42, 0.9); }
    .c-layout-header.c-layout-header-dark-mobile.c-header-transparent-dark.c-mega-menu-shown {
      background: #394048; }
    .c-layout-header.c-layout-header-dark-mobile.c-header-transparent-dark .c-topbar {
      background: none; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-2 {
    background: rgba(30, 36, 42, 0.25);
    border-bottom: 0; }
    .c-layout-header.c-layout-header-2 .c-navbar {
      background: none; }
      .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
      .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
        color: #ffffff; }
        .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
        .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
        .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
          color: #ffffff; }
      .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
        background-color: white; }
      .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn), .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn), .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn) {
        color: #ffffff; }
      .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > button > .c-line, .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > button > .c-line, .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > button > .c-line {
        background: #ffffff; }
      .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active {
        color: #ffffff; }
        .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn) {
          color: #ffffff; }
        .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > button > .c-line {
          background: #ffffff; }
    .c-layout-header.c-layout-header-2 .c-quick-search > .form-control {
      color: #ffffff; }
      .c-layout-header.c-layout-header-2 .c-quick-search > .form-control::-moz-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-2 .c-quick-search > .form-control:-moz-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-2 .c-quick-search > .form-control:-ms-input-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-2 .c-quick-search > .form-control::-webkit-input-placeholder {
        color: white; }
    .c-layout-header.c-layout-header-2 .c-quick-search > span {
      color: white; }
  .c-page-on-scroll .c-layout-header.c-layout-header-2 {
    background: rgba(30, 36, 42, 0.82);
    border-bottom: 0;
    box-shadow: none; }
    .c-page-on-scroll .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
    .c-page-on-scroll .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
      color: #ffffff; }
      .c-page-on-scroll .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-page-on-scroll .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
      .c-page-on-scroll .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
      .c-page-on-scroll .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
        color: #ffffff; }
    .c-page-on-scroll .c-layout-header.c-layout-header-2 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
      background-color: white; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-3 {
    background: #2f353b;
    border-bottom: 0; }
    .c-layout-header.c-layout-header-3 .c-navbar {
      background: none; }
      .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
      .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
        color: #ffffff; }
        .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
        .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
        .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
          color: #ffffff; }
      .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
        background-color: white; }
      .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn), .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn), .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn) {
        color: #ffffff; }
      .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > button > .c-line, .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > button > .c-line, .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > button > .c-line {
        background: #ffffff; }
      .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active {
        color: #ffffff; }
        .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn) {
          color: #ffffff; }
        .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > button > .c-line {
          background: #ffffff; }
    .c-layout-header.c-layout-header-3 .c-quick-search > .form-control {
      color: #ffffff; }
      .c-layout-header.c-layout-header-3 .c-quick-search > .form-control::-moz-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-3 .c-quick-search > .form-control:-moz-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-3 .c-quick-search > .form-control:-ms-input-placeholder {
        color: white; }
      .c-layout-header.c-layout-header-3 .c-quick-search > .form-control::-webkit-input-placeholder {
        color: white; }
    .c-layout-header.c-layout-header-3 .c-quick-search > span {
      color: white; }
  .c-page-on-scroll .c-layout-header.c-layout-header-3 {
    background: #2f353b;
    border-bottom: 0;
    box-shadow: none; }
    .c-page-on-scroll .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
    .c-page-on-scroll .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
      color: #ffffff; }
      .c-page-on-scroll .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-page-on-scroll .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
      .c-page-on-scroll .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
      .c-page-on-scroll .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
        color: #ffffff; }
    .c-page-on-scroll .c-layout-header.c-layout-header-3 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
      background-color: white; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler), .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler), .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler), .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler) {
    position: relative;
    color: #ffffff !important; }
    .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before {
      transition: 0.2s;
      position: absolute;
      top: 32px;
      content: '';
      width: 15px;
      height: 2px;
      display: block;
      background: #ffffff; }
      .c-page-on-scroll .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-page-on-scroll .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-page-on-scroll .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before, .c-page-on-scroll .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler):before {
        top: 14px;
        transition: 0.2s; }
    .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler) > i, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler) > i, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler) > i, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn):not(.c-btn-icon):not(.c-quick-sidebar-toggler) > i {
      color: #ffffff !important; }
  .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a.c-btn-icon, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a.c-btn-icon, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a.c-btn-icon, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a.c-btn-icon {
    color: #ffffff !important; }
  .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > .c-search-toggler > i, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > .c-search-toggler > i, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > .c-search-toggler > i, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > .c-search-toggler > i {
    color: #ffffff !important; }
  .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > .c-quick-sidebar-toggler > .c-line, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > .c-quick-sidebar-toggler > .c-line, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > .c-quick-sidebar-toggler > .c-line, .c-layout-header.c-layout-header-3.c-layout-header-3-custom-menu .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > .c-quick-sidebar-toggler > .c-line {
    background: #ffffff !important; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-4 {
    background: none;
    border-bottom: 0; }
    .c-layout-header.c-layout-header-4 .c-navbar {
      background: none; }
      .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
      .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
        color: #3a3f45; }
        .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
        .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
        .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
          color: #3a3f45; }
      .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
        background-color: #464c53; }
      .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn), .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn), .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn) {
        color: #3a3f45; }
      .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > button > .c-line, .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > button > .c-line, .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > button > .c-line {
        background: #3a3f45; }
      .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active {
        color: #3a3f45; }
        .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn) {
          color: #3a3f45; }
        .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > button > .c-line {
          background: #3a3f45; }
    .c-layout-header.c-layout-header-4 .c-quick-search > .form-control {
      color: #69727c; }
      .c-layout-header.c-layout-header-4 .c-quick-search > .form-control::-moz-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-4 .c-quick-search > .form-control:-moz-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-4 .c-quick-search > .form-control:-ms-input-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-4 .c-quick-search > .form-control::-webkit-input-placeholder {
        color: #828b96; }
    .c-layout-header.c-layout-header-4 .c-quick-search > span {
      color: #828b96; }
  .c-page-on-scroll .c-layout-header.c-layout-header-4 {
    background: #ffffff;
    border-bottom: 1px solid #e6eff3;
    box-shadow: none; }
    .c-page-on-scroll .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
    .c-page-on-scroll .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
      color: #69727c; }
      .c-page-on-scroll .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-page-on-scroll .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
      .c-page-on-scroll .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
      .c-page-on-scroll .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
        color: #69727c; }
    .c-page-on-scroll .c-layout-header.c-layout-header-4 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
      background-color: #757f8a; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-4.c-bordered {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-5 {
    background: #2f353b;
    border-bottom: 0; }
    .c-layout-header.c-layout-header-5 .c-navbar {
      background: none; }
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
        color: #ffffff; }
        .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
        .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
        .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
          color: #ffffff; }
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
        background-color: white; }
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn), .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn), .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn) {
        color: #ffffff; }
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > button > .c-line, .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > button > .c-line, .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > button > .c-line {
        background: #ffffff; }
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active {
        color: #ffffff; }
        .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn) {
          color: #ffffff; }
        .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > button > .c-line {
          background: #ffffff; }
    .c-layout-header.c-layout-header-5 .c-quick-search > .form-control {
      color: #69727c; }
      .c-layout-header.c-layout-header-5 .c-quick-search > .form-control::-moz-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-5 .c-quick-search > .form-control:-moz-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-5 .c-quick-search > .form-control:-ms-input-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-5 .c-quick-search > .form-control::-webkit-input-placeholder {
        color: #828b96; }
    .c-layout-header.c-layout-header-5 .c-quick-search > span {
      color: #828b96; }
  .c-page-on-scroll .c-layout-header.c-layout-header-5 {
    background: #2f353b;
    border-bottom: 0;
    box-shadow: none; }
    .c-page-on-scroll .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
    .c-page-on-scroll .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
      color: #ffffff; }
      .c-page-on-scroll .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-page-on-scroll .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
      .c-page-on-scroll .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
      .c-page-on-scroll .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
        color: #ffffff; }
    .c-page-on-scroll .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
      background-color: white; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-5 {
    background: none !important;
    margin: 20px 0; }
    .c-layout-header.c-layout-header-5 .c-navbar .container-fluid {
      padding: 0 20px; }
    .c-layout-header.c-layout-header-5 .c-navbar .c-brand {
      margin: 0; }
    .c-layout-header.c-layout-header-5 .c-navbar .c-navbar-wrapper {
      background: #2f353b; }
    .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li {
      border-right: 1px solid #363d44; }
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
        padding: 19px 25px 16px 25px;
        min-height: 57px; }
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler {
        padding: 22px 25px 14px 25px; }
        .ie9 .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler {
          margin-bottom: -6px; }
        .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
          width: 15px;
          display: block;
          height: 2px;
          padding: 0px;
          margin: 3px 0; }
          .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line:first-child {
            margin-top: 0px; }
          .ie .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line:first-child {
            margin-top: 2px; }
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn {
        margin: 12px 25px 7px 25px; }
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon {
        margin: 1px 10px 0px 10px; }
      .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu > .nav.navbar-nav > li:last-child {
        border-right: 0; }
    .c-layout-header.c-layout-header-5 .c-quick-search > .form-control {
      padding: 10px 20px;
      height: 57px; }
    .c-layout-header.c-layout-header-5 .c-quick-search > span {
      top: 28px;
      right: 22px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header.c-layout-header-5 .container-fluid {
    padding: 0; }
  .c-layout-header.c-layout-header-5 .c-navbar .c-brand {
    margin: 0 0 0 0; }
    .c-layout-header.c-layout-header-5 .c-navbar .c-brand > .c-hor-nav-toggler {
      margin-top: 14px;
      margin-right: 15px; }
    .c-layout-header.c-layout-header-5 .c-navbar .c-brand > .c-cart-toggler {
      margin-top: 14px;
      margin-right: 15px; }
    .c-layout-header.c-layout-header-5 .c-navbar .c-brand > .c-search-toggler {
      margin-top: 15px;
      margin-right: 15px; }
  .c-layout-header.c-layout-header-5 .c-navbar .c-mega-menu {
    padding: 30px 0 0 0; }
  .c-layout-header.c-layout-header-5 {
    box-shadow: none;
    height: 57px; }
    .c-layout-header.c-layout-header-5 .c-quick-search .form-control {
      height: 57px; }
    .c-layout-header.c-layout-header-5 .c-quick-search > span {
      top: 29px; }
    .c-layout-header.c-layout-header-5.c-mega-menu-shown .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li {
      padding-left: 15px;
      padding-right: 15px; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-6 {
    background: #2f353b;
    border-bottom: 0; }
    .c-layout-header.c-layout-header-6 .c-navbar {
      background: none; }
      .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
      .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
        color: #ffffff; }
        .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
        .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
        .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
          color: #ffffff; }
      .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
        background-color: white; }
      .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn), .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn), .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn) {
        color: #ffffff; }
      .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > button > .c-line, .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > button > .c-line, .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > button > .c-line {
        background: #ffffff; }
      .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active {
        color: #ffffff; }
        .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn) {
          color: #ffffff; }
        .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > button > .c-line {
          background: #ffffff; }
    .c-layout-header.c-layout-header-6 .c-quick-search > .form-control {
      color: #69727c; }
      .c-layout-header.c-layout-header-6 .c-quick-search > .form-control::-moz-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-6 .c-quick-search > .form-control:-moz-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-6 .c-quick-search > .form-control:-ms-input-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-6 .c-quick-search > .form-control::-webkit-input-placeholder {
        color: #828b96; }
    .c-layout-header.c-layout-header-6 .c-quick-search > span {
      color: #828b96; }
  .c-page-on-scroll .c-layout-header.c-layout-header-6 {
    background: #2f353b;
    border-bottom: 0;
    box-shadow: none; }
    .c-page-on-scroll .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
    .c-page-on-scroll .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
      color: #ffffff; }
      .c-page-on-scroll .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-page-on-scroll .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
      .c-page-on-scroll .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
      .c-page-on-scroll .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
        color: #ffffff; }
    .c-page-on-scroll .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
      background-color: white; } }

.c-layout-header.c-layout-header-6 .c-topbar {
  padding: 24px 0;
  background: #fff;
  height: auto; }
  .c-layout-header.c-layout-header-6 .c-topbar .c-brand {
    float: left;
    margin: 0px;
    padding: 8px 0 0 0; }
    .c-layout-quick-search-shown .c-layout-header.c-layout-header-6 .c-topbar .c-brand {
      display: block; }
    .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-logo {
      display: inline-block;
      position: relative; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-logo:after {
        top: -2px;
        position: absolute;
        right: -22px;
        content: "";
        width: 1px;
        background: #dfe4e8;
        height: 32px;
        display: inline-block; }
    .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-icons {
      position: relative;
      display: inline-block;
      padding: 0;
      top: 1px;
      margin: 0 0 0 35px;
      list-style: none; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-icons > li {
        display: inline-block;
        padding: 3px 3px 5px 3px; }
        .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-icons > li > a {
          font-size: 16px; }
          .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-icons > li > a > i {
            color: #aeb8c2;
            font-size: 16px;
            padding: 4px; }
  .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu {
    margin: 12px 0 10px 0;
    float: right; }
    .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu > .c-links > li {
      padding: 0 7px; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu > .c-links > li > a:not(.btn) {
        color: #aeb8c2;
        font-weight: 500; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu > .c-links > li > .btn {
        margin-top: -4px; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu > .c-links > li.c-divider {
        width: 1px;
        display: inline-block; }
        .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu > .c-links > li.c-divider:after {
          top: -20px;
          position: absolute;
          right: 7px;
          content: "";
          width: 1px;
          background: #dfe4e8;
          height: 32px;
          display: inline-block; }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-6 .c-navbar {
    line-height: 0px; }
    .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu {
      float: none;
      display: block;
      text-align: center;
      line-height: 0px; }
      .c-layout-quick-search-shown .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu {
        display: none; }
      .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav {
        line-height: 0px;
        float: none;
        display: inline-block; }
        .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li {
          margin: 0 !important;
          padding: 0 !important;
          /*
						.c-menu-type-mega {
							margin-top: -6px;
						}
						*/ }
          .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
            padding: 25px 25px 22px 25px;
            min-height: 67px; }
          .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li:first-child > .c-link {
            padding-left: 5px; }
          .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler {
            padding: 28px 25px 15px 25px; }
          .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn {
            margin: 18px 25px 7px 25px; }
          .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon {
            margin: 8px 10px 0px 10px; }
  .c-layout-header.c-layout-header-6 .c-quick-search > .form-control {
    padding: 20px 20px 20px 5px;
    height: 67px; }
  .c-layout-header.c-layout-header-6 .c-quick-search > span {
    top: 35px;
    right: 8px; }
  .c-layout-header.c-layout-header-6.c-navbar-fluid .c-navbar {
    width: 100%;
    float: none;
    display: block; }
    .c-layout-header.c-layout-header-6.c-navbar-fluid .c-navbar .c-mega-menu {
      float: none;
      width: 100%;
      display: block; }
      .c-layout-quick-search-shown .c-layout-header.c-layout-header-6.c-navbar-fluid .c-navbar .c-mega-menu {
        display: none; }
      .c-layout-header.c-layout-header-6.c-navbar-fluid .c-navbar .c-mega-menu > .nav.navbar-nav {
        width: 100%;
        display: inline-block; }
        .c-layout-header.c-layout-header-6.c-navbar-fluid .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler {
          padding-right: 10px; }
        .c-layout-header.c-layout-header-6.c-navbar-fluid .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-search-toggler {
          padding-right: 5px; }
        .c-layout-header.c-layout-header-6.c-navbar-fluid .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-search-toggler-wrapper, .c-layout-header.c-layout-header-6.c-navbar-fluid .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-quick-sidebar-toggler-wrapper {
          float: right; }
  .c-layout-header-fixed.c-layout-header-6-topbar .c-layout-page {
    margin-top: 167px; }
  .c-page-on-scroll.c-layout-header-fixed .c-layout-header.c-layout-header-6 {
    height: 67px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header.c-layout-header-6 .c-topbar {
    padding: 0; }
    .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu {
      float: none;
      display: block;
      padding: 0;
      margin: 10px 0;
      text-align: right; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu:before, .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu:after {
        content: " ";
        display: table; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu:after {
        clear: both; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu .c-links {
        float: right; }
        .c-layout-header.c-layout-header-6 .c-topbar .c-top-menu .c-links > li:last-child {
          padding-right: 0; }
    .c-layout-header.c-layout-header-6 .c-topbar .c-brand {
      width: 100%;
      display: block;
      float: none;
      margin: 10px 0 20px 0; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-brand:before, .c-layout-header.c-layout-header-6 .c-topbar .c-brand:after {
        content: " ";
        display: table; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-brand:after {
        clear: both; }
      .c-layout-quick-search-shown .c-layout-header.c-layout-header-6 .c-topbar .c-brand {
        display: none; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-logo {
        float: left; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-icons {
        float: left; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-hor-nav-toggler {
        float: right;
        background: #f8f9fa;
        padding: 5px 7px;
        position: relative;
        top: 2px; }
        .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-hor-nav-toggler > .c-line {
          background-color: #9fadba; }
        .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-hor-nav-toggler:active, .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-hor-nav-toggler:focus, .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-hor-nav-toggler:hover {
          background: #e9ecef; }
          .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-hor-nav-toggler:active > .c-line, .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-hor-nav-toggler:focus > .c-line, .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-hor-nav-toggler:hover > .c-line {
            background-color: #90a0b0; }
      .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-search-toggler {
        float: right;
        position: relative;
        top: 2px; }
        .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-search-toggler > i {
          color: #aeb8c2; }
        .c-layout-header.c-layout-header-6 .c-topbar .c-brand > .c-search-toggler:hover > i {
          color: #748596; }
  .c-layout-header.c-layout-header-6 .c-navbar {
    height: auto; }
    .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu {
      margin-bottom: 0px; }
      .c-layout-quick-search-shown .c-layout-header.c-layout-header-6 .c-navbar .c-mega-menu {
        display: none; }
  .c-layout-header.c-layout-header-6 .c-quick-search {
    margin-top: 0; }
    .c-layout-header.c-layout-header-6 .c-quick-search > .form-control {
      background: none;
      color: #101113;
      padding: 25px 10px 35px 10px;
      height: 55px; }
      .c-layout-header.c-layout-header-6 .c-quick-search > .form-control::-moz-placeholder {
        color: #040505; }
      .c-layout-header.c-layout-header-6 .c-quick-search > .form-control:-moz-placeholder {
        color: #040505; }
      .c-layout-header.c-layout-header-6 .c-quick-search > .form-control:-ms-input-placeholder {
        color: #040505; }
      .c-layout-header.c-layout-header-6 .c-quick-search > .form-control::-webkit-input-placeholder {
        color: #040505; }
    .c-layout-header.c-layout-header-6 .c-quick-search > span {
      top: 0px;
      color: #101113; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-7 {
    background: transparent;
    border-bottom: 0; }
    .c-layout-header.c-layout-header-7 .c-navbar {
      background: transparent; }
      .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
      .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
        color: #ffffff; }
        .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
        .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
        .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
          color: #ffffff; }
      .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
        background-color: white; }
      .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > a:not(.btn), .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > a:not(.btn), .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > a:not(.btn) {
        color: #ffffff; }
      .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li:focus > button > .c-line, .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li:active > button > .c-line, .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li:hover > button > .c-line {
        background: #ffffff; }
      .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active {
        color: #ffffff; }
        .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > a:not(.btn) {
          color: #ffffff; }
        .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li.c-active > button > .c-line {
          background: #ffffff; }
    .c-layout-header.c-layout-header-7 .c-quick-search > .form-control {
      color: #69727c; }
      .c-layout-header.c-layout-header-7 .c-quick-search > .form-control::-moz-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-7 .c-quick-search > .form-control:-moz-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-7 .c-quick-search > .form-control:-ms-input-placeholder {
        color: #828b96; }
      .c-layout-header.c-layout-header-7 .c-quick-search > .form-control::-webkit-input-placeholder {
        color: #828b96; }
    .c-layout-header.c-layout-header-7 .c-quick-search > span {
      color: #828b96; }
  .c-page-on-scroll .c-layout-header.c-layout-header-7 {
    background: rgba(30, 36, 42, 0.82);
    border-bottom: 0;
    box-shadow: none; }
    .c-page-on-scroll .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon,
    .c-page-on-scroll .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link {
      color: #ffffff; }
      .c-page-on-scroll .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:hover, .c-page-on-scroll .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-btn-icon:focus,
      .c-page-on-scroll .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:hover,
      .c-page-on-scroll .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-link:focus {
        color: #ffffff; }
    .c-page-on-scroll .c-layout-header.c-layout-header-7 .c-navbar .c-mega-menu > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
      background-color: white; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header-7 .c-quick-search > .form-control {
    color: #fff !important; }
    .c-layout-header-7 .c-quick-search > .form-control::-webkit-input-placeholder {
      color: #fff !important; }
    .c-layout-header-7 .c-quick-search > .form-control::-moz-placeholder {
      color: #fff !important; }
    .c-layout-header-7 .c-quick-search > .form-control::-ms-placeholder {
      color: #fff !important; }
    .c-layout-header-7 .c-quick-search > .form-control::placeholder {
      color: #fff !important; }
  .c-layout-header-7 .c-quick-search > span {
    color: #fff !important; }
  .c-layout-header-7 .c-navbar .c-mega-menu {
    display: block;
    text-align: center; }
    .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav {
      display: inline-block;
      float: none; }
      .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav li > .c-link {
        position: relative;
        padding-left: 0;
        padding-right: 0;
        margin: 0 15px;
        font-weight: 400; }
      .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav li.c-active > .c-link {
        color: #ffffff !important; }
        .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav li.c-active > .c-link:after {
          position: absolute;
          bottom: 25px;
          left: 0;
          right: 0;
          margin: auto;
          content: ' ';
          height: 2px;
          width: 100%;
          background-color: rgba(234, 241, 242, 0.2); }
      .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav li:hover > .c-link, .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav li:active > .c-link {
        color: #ffffff !important; }
      .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav li:hover > .c-link:after {
        position: absolute;
        bottom: 25px;
        left: 0;
        right: 0;
        margin: auto;
        content: ' ';
        height: 2px;
        width: 100%;
        background-color: rgba(234, 241, 242, 0.2); }
      .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav-right {
        float: right; }
      .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav .dropdown-menu {
        top: auto; }
  .c-page-on-scroll .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav li > .c-link {
    padding-left: 0;
    padding-right: 0; }
  .c-page-on-scroll .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav li.c-active > .c-link {
    color: #ffffff !important; }
    .c-page-on-scroll .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav li.c-active > .c-link:after {
      bottom: 0; }
  .c-page-on-scroll .c-layout-header-7 .c-navbar .c-mega-menu .navbar-nav.c-theme-nav li:hover > .c-link:after {
    bottom: 0; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header-7 .c-mega-menu {
    background-color: #fff; }
    .c-layout-header-7 .c-mega-menu .c-line {
      background-color: #3f444a; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li > .dropdown-menu {
    background: #2c3137;
    box-shadow: none;
    border: 0; }
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li .dropdown-menu {
    border-radius: 0; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li .dropdown-menu > li > h3 {
      color: #cbd2d9; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li .dropdown-menu > li > a {
      color: #7d8691; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li .dropdown-menu > li > a:hover, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li .dropdown-menu > li > a:focus {
        background: none;
        color: #7d8691; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li .dropdown-menu > li.c-active > a,
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li .dropdown-menu > li:hover > a {
      background: #292e33;
      color: #ff6b57; }
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic .dropdown-menu {
    background: #2c3137; }
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > .row > div {
    border-right: 1px solid #32373d; }
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs {
    border-bottom: 1px solid #434b53; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li > a {
      color: #cbd2d9; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li:hover > a {
      color: #ffffff; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li.active {
      border-bottom: 1px solid #ffffff; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li.active > a {
        color: #ffffff; }
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > li .dropdown-menu.c-menu-type-inline {
    border-right: 1px solid #32373d; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li > .dropdown-menu {
    background: #f7f8f9;
    box-shadow: 0px 3px 9px -5px rgba(0, 0, 0, 0.25);
    border: 0; }
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li .dropdown-menu {
    border-radius: 0; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li .dropdown-menu > li > h3 {
      color: #000000; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li .dropdown-menu > li > a {
      color: #383e45; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li .dropdown-menu > li > a:hover, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li .dropdown-menu > li > a:focus {
        background: none;
        color: #383e45; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li .dropdown-menu > li.c-active > a,
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li .dropdown-menu > li:hover > a {
      background: #f2f2f2;
      color: #000000; }
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-classic .dropdown-menu {
    background: #f7f8f9; }
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > .row > div {
    border-right: 1px solid #f2f2f2; }
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs {
    border-bottom: 1px solid #f2f2f2; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li > a {
      color: #434b53; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li:hover > a {
      color: #000000; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li.active {
      border-bottom: 1px solid #000000; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega .nav.nav-tabs > li.active > a {
        color: #000000; }
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega > li .dropdown-menu.c-menu-type-inline {
    border-right: 1px solid #f2f2f2; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile {
    background: #394048; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-link {
      border-bottom: 1px solid #404851;
      color: #ebedf2; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-link:focus, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-link:hover {
        background: none;
        color: #ebedf2; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-quick-sidebar-toggler {
      background: none; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
        background-color: white; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-quick-sidebar-toggler:hover > .c-line {
        background-color: #ff6b57; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li.c-active > .c-link, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li:hover > .c-link {
      color: #ff6b57;
      background: none; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li .dropdown-menu > li > h3 {
      color: #ccd1de; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li .dropdown-menu > li > a {
      border-bottom: 1px solid #404851;
      color: #bdc3d4; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li .dropdown-menu > li > a:focus, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li .dropdown-menu > li > a:hover {
        color: #bdc3d4; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li .dropdown-menu > li.c-active > a,
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li .dropdown-menu > li:hover > a {
      background: none;
      color: #ff6b57; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-btn {
    border-color: #ccd1de;
    color: #ccd1de; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-btn:focus, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-btn:active, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-btn.active, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-dark-mobile > .nav.navbar-nav > li > .c-btn:hover {
      color: #394048;
      background: #ffffff; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile {
    background: #ffffff; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li > .c-link {
      border-bottom: 1px solid #f7f7f7;
      color: #3f444a; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li > .c-link:focus, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li > .c-link:hover {
        background: none;
        color: #3f444a; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li > .c-quick-sidebar-toggler {
      background: none; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li > .c-quick-sidebar-toggler > .c-line {
        background-color: #626a73; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li > .c-quick-sidebar-toggler:hover > .c-line {
        background-color: #ff6b57; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li.c-active > .c-link, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li:hover > .c-link {
      color: #ff6b57;
      background: none; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li .dropdown-menu > li > h3 {
      color: #3f444a; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li .dropdown-menu > li > a {
      border-bottom: 1px solid #f7f7f7;
      color: #4b5158; }
      .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li .dropdown-menu > li > a:focus, .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li .dropdown-menu > li > a:hover {
        color: #4b5158; }
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li .dropdown-menu > li.c-active > a,
    .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile > .nav.navbar-nav > li .dropdown-menu > li:hover > a {
      background: none;
      color: #ff6b57; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header .c-navbar .c-mega-menu.c-mega-menu-light-mobile {
    box-shadow: 0px 3px 9px -4px rgba(0, 0, 0, 0.25); } }

.c-layout-header:before, .c-layout-header:after {
  content: " ";
  display: table; }

.c-layout-header:after {
  clear: both; }

.c-layout-header .c-topbar-dark {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: none; }
  .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li > a:not(.btn),
  .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li > span,
  .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li > a:not(.btn),
  .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li > span,
  .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li > a:not(.btn),
  .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li > span {
    color: #ffffff;
    font-weight: 500; }
    .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li > a:not(.btn) > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li > span > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li > a:not(.btn) > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li > span > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li > a:not(.btn) > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li > span > i {
      color: #f7f7f7; }
  .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li > a:not(.btn):active, .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li > a:not(.btn):hover, .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li > a:not(.btn):focus,
  .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li > a:not(.btn):active,
  .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li > a:not(.btn):hover,
  .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li > a:not(.btn):focus,
  .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li > a:not(.btn):active,
  .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li > a:not(.btn):hover,
  .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li > a:not(.btn):focus {
    color: #cccccc; }
    .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li > a:not(.btn):active > i, .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li > a:not(.btn):hover > i, .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li > a:not(.btn):focus > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li > a:not(.btn):active > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li > a:not(.btn):hover > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li > a:not(.btn):focus > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li > a:not(.btn):active > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li > a:not(.btn):hover > i,
    .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li > a:not(.btn):focus > i {
      color: #c4c4c4; }
  .c-layout-header .c-topbar-dark .c-top-menu > .c-icons > li.c-divider,
  .c-layout-header .c-topbar-dark .c-top-menu > .c-links > li.c-divider,
  .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li.c-divider {
    color: #ffffff; }
  .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li.c-lang > a {
    background: rgba(255, 255, 255, 0.2);
    color: #f2f2f2; }
    .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li.c-lang > a:active, .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li.c-lang > a:hover, .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li.c-lang > a:focus {
      color: #d9d9d9;
      background: rgba(255, 255, 255, 0.2); }
  .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li.c-lang > .dropdown-menu {
    background: #f6f8fa; }
    .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li.c-lang > .dropdown-menu > li.active > a {
      background: #e9eef3; }
    .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li.c-lang > .dropdown-menu > li > a {
      color: #324659; }
      .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li.c-lang > .dropdown-menu > li > a:hover {
        background: #e9eef3; }
  .c-layout-header .c-topbar-dark .c-top-menu > .c-ext > li.c-lang:hover > .dropdown-menu {
    display: block; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header-topbar-collapse .c-layout-header .c-topbar-dark {
    background: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); } }

.c-layout-header:before, .c-layout-header:after {
  content: " ";
  display: table; }

.c-layout-header:after {
  clear: both; }

.c-layout-header .c-topbar-light {
  border-bottom: 1px solid rgba(135, 151, 174, 0.15);
  background: none; }
  .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li > a:not(.btn),
  .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li > span,
  .c-layout-header .c-topbar-light .c-top-menu > .c-links > li > a:not(.btn),
  .c-layout-header .c-topbar-light .c-top-menu > .c-links > li > span,
  .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li > a:not(.btn),
  .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li > span {
    color: #8797ae;
    font-weight: 500; }
    .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li > a:not(.btn) > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li > span > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-links > li > a:not(.btn) > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-links > li > span > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li > a:not(.btn) > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li > span > i {
      color: #8797ae; }
  .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li > a:not(.btn):active, .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li > a:not(.btn):hover, .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li > a:not(.btn):focus,
  .c-layout-header .c-topbar-light .c-top-menu > .c-links > li > a:not(.btn):active,
  .c-layout-header .c-topbar-light .c-top-menu > .c-links > li > a:not(.btn):hover,
  .c-layout-header .c-topbar-light .c-top-menu > .c-links > li > a:not(.btn):focus,
  .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li > a:not(.btn):active,
  .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li > a:not(.btn):hover,
  .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li > a:not(.btn):focus {
    color: #53647c; }
    .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li > a:not(.btn):active > i, .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li > a:not(.btn):hover > i, .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li > a:not(.btn):focus > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-links > li > a:not(.btn):active > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-links > li > a:not(.btn):hover > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-links > li > a:not(.btn):focus > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li > a:not(.btn):active > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li > a:not(.btn):hover > i,
    .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li > a:not(.btn):focus > i {
      color: #53647c; }
  .c-layout-header .c-topbar-light .c-top-menu > .c-icons > li.c-divider,
  .c-layout-header .c-topbar-light .c-top-menu > .c-links > li.c-divider,
  .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li.c-divider {
    color: #8797ae; }
  .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li.c-lang > a {
    background: #f6f8fa;
    color: #697d99; }
    .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li.c-lang > a:active, .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li.c-lang > a:hover, .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li.c-lang > a:focus {
      color: #49586c;
      background: #f6f8fa; }
  .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li.c-lang > .dropdown-menu {
    background: #f6f8fa; }
    .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li.c-lang > .dropdown-menu > li.active > a {
      background: #e9eef3; }
    .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li.c-lang > .dropdown-menu > li > a {
      color: #6285a8; }
      .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li.c-lang > .dropdown-menu > li > a:hover {
        background: #e9eef3; }
  .c-layout-header .c-topbar-light .c-top-menu > .c-ext > li.c-lang:hover > .dropdown-menu {
    display: block; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header-topbar-collapse .c-layout-header .c-topbar-light {
    background: #ffffff;
    border-bottom: 1px solid rgba(135, 151, 174, 0.15); } }

.c-layout-header .c-topbar-light.c-solid-bg {
  background: #ffffff; }

.c-layout-revo-slider {
  overflow-x: hidden; }
  .c-layout-revo-slider:before, .c-layout-revo-slider:after {
    content: " ";
    display: table; }
  .c-layout-revo-slider:after {
    clear: both; }
  .c-layout-revo-slider .c-video-hint > i {
    position: relative;
    top: 2px;
    font-size: 14px; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-1 .c-main-title {
    font-size: 22px;
    line-height: 28px; }
  .c-layout-revo-slider-1 .c-action-btn.btn,
  .c-layout-revo-slider-1 .c-action-btn.btn.c-btn-border-2x.c-btn-uppercase.btn-lg {
    margin-top: 20px;
    padding: 7px 22px 5px 22px;
    font-size: 14px; } }

.c-layout-revo-slider-3 .c-main-title-1 {
  line-height: 34px;
  display: inline-block;
  padding: 40px; }

.c-layout-revo-slider-3 .c-main-title-2 {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 50px;
  letter-spacing: 1px;
  line-height: 68px; }

.c-layout-revo-slider-3 .c-action-btn.c-btn-border-2x {
  padding: 9px 24px 7px 24px;
  font-size: 16px; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-3 .c-main-title-1 {
    padding: 20px;
    font-size: 18px;
    line-height: 25px; }
  .c-layout-revo-slider-3 .c-main-title-2 {
    padding: 20px 30px;
    line-height: 25px;
    font-size: 22px; }
  .c-layout-revo-slider-3 .c-action-btn {
    padding: 7px 22px 5px 22px;
    font-size: 14px; } }

@media (max-width: 767px) {
  /* 767px */
  .c-layout-revo-slider-3 .c-main-title-1 {
    padding: 10px;
    font-size: 14px;
    line-height: 18px;
    margin-left: 70px; }
  .c-layout-revo-slider-3 .c-action-btn {
    margin-top: 50px; } }

.c-layout-revo-slider-4 {
  min-height: 500px; }
  .c-layout-revo-slider-4 .c-action-btn.c-btn-border-2x {
    padding: 9px 24px 7px 24px;
    font-size: 16px; }
  .c-layout-revo-slider-4 .c-block-text {
    display: inline-block;
    padding: 40px; }
  .c-layout-revo-slider-4 .c-main-title-circle {
    background: rgba(0, 0, 0, 0.05);
    padding: 380px 260px 380px 260px;
    letter-spacing: 1px;
    line-height: 68px;
    border-radius: 600px; }
    .c-layout-revo-slider-4 .c-main-title-circle.c-light-bg {
      background: rgba(255, 255, 255, 0.3); }
  .c-layout-revo-slider-4 .c-main-title-square {
    background: rgba(0, 0, 0, 0.11);
    padding: 300px 300px;
    letter-spacing: 1px;
    line-height: 68px; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-4 {
    min-height: 380px; }
    .c-layout-revo-slider-4 .c-main-title-circle {
      padding: 180px 160px 180px 160px;
      line-height: 25px;
      font-size: 22px;
      border-radius: 300px; }
    .c-layout-revo-slider-4 .c-main-title-square {
      background: rgba(0, 0, 0, 0.11);
      padding: 300px 300px;
      line-height: 25px;
      font-size: 22px; }
    .c-layout-revo-slider-4 .c-action-btn {
      margin-top: 20px;
      padding: 8px 22px 7px 22px;
      font-size: 14px; } }

@media (max-width: 480px) {
  /* 480px */
  .c-layout-revo-slider-4 {
    min-height: 215px; } }

@media (max-width: 360px) {
  /* 480px */
  .c-layout-revo-slider-4 {
    min-height: 165px; } }

.c-layout-revo-slider-5 {
  min-height: 500px; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-5 {
    min-height: 380px; } }

@media (max-width: 480px) {
  /* 480px */
  .c-layout-revo-slider-5 {
    min-height: 215px; } }

@media (max-width: 360px) {
  /* 480px */
  .c-layout-revo-slider-5 {
    min-height: 165px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-6 .c-main-title {
    margin-top: -80px;
    padding: 20px;
    font-size: 20px;
    line-height: 24px; }
  .c-layout-revo-slider-6 .c-sub-title {
    padding: 15px 20px;
    line-height: 22px;
    font-size: 13px; }
  .c-layout-revo-slider-6 .c-action-btn.btn,
  .c-layout-revo-slider-6 .c-action-btn.btn.c-btn-border-2x.c-btn-uppercase.btn-lg {
    padding: 7px 22px 5px 22px;
    font-size: 14px;
    margin-bottom: -60px; } }

.c-layout-revo-slider-7 .c-singup-form {
  display: none;
  text-align: center;
  width: 100%;
  position: absolute;
  z-index: 100;
  top: 50%;
  margin-top: -100px; }
  .c-layout-revo-slider-7 .c-singup-form .c-subtitle {
    display: inline-block;
    padding: 12px 0 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
  .c-layout-revo-slider-7 .c-singup-form .form-inline {
    margin-top: 20px; }
    .c-layout-revo-slider-7 .c-singup-form .form-inline .form-group {
      margin-right: 5px; }
      .c-layout-revo-slider-7 .c-singup-form .form-inline .form-group .form-control {
        border-color: #fff;
        color: #fff; }
        .c-layout-revo-slider-7 .c-singup-form .form-inline .form-group .form-control::-moz-placeholder {
          color: #f2f2f2; }
        .c-layout-revo-slider-7 .c-singup-form .form-inline .form-group .form-control:-moz-placeholder {
          color: #f2f2f2; }
        .c-layout-revo-slider-7 .c-singup-form .form-inline .form-group .form-control:-ms-input-placeholder {
          color: #f2f2f2; }
        .c-layout-revo-slider-7 .c-singup-form .form-inline .form-group .form-control::-webkit-input-placeholder {
          color: #f2f2f2; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-7 .c-singup-form {
    top: auto;
    margin-top: 200px; }
    .c-layout-header-mobile-fixed .c-layout-revo-slider-7 .c-singup-form {
      margin-top: 300px; }
    .c-layout-revo-slider-7 .c-singup-form h3 {
      font-size: 26px;
      font-weight: bold; }
    .c-layout-revo-slider-7 .c-singup-form h5 {
      font-size: 16px;
      font-weight: bold; } }

@media (max-width: 767px) {
  /* 768px */
  .c-layout-revo-slider-7 .c-singup-form {
    margin-top: 50px; }
    .c-layout-revo-slider-7 .c-singup-form h3 {
      font-size: 17px;
      font-weight: bold; }
    .c-layout-revo-slider-7 .c-singup-form h5 {
      font-size: 14px;
      font-weight: bold; }
    .c-layout-header-mobile-fixed .c-layout-revo-slider-7 .c-singup-form {
      margin-top: 150px; }
    .c-layout-revo-slider-7 .c-singup-form .form-inline .form-group {
      margin: 10px 10px; } }

.c-layout-revo-slider-8 .c-main-title {
  padding: 40px 50px 40px 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
  line-height: 76px; }

.c-layout-revo-slider-8 .c-action-bar {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: rgba(0, 0, 0, 0.2); }
  .c-layout-revo-slider-8 .c-action-bar .c-content {
    display: inline-block;
    float: left;
    margin-right: 150px; }
  .c-layout-revo-slider-8 .c-action-bar .c-btn-container {
    padding-top: 25px;
    display: inline-block;
    float: right; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-8 .c-main-title {
    padding: 20px 20px 20px 20px;
    line-height: 32px;
    font-size: 26px;
    margin-top: -40px; }
  .c-layout-revo-slider-8 .c-action-bar {
    padding: 5px; }
    .c-layout-revo-slider-8 .c-action-bar .c-content {
      display: block;
      float: none;
      margin: 0 0 10px 0;
      text-align: center; }
      .c-layout-revo-slider-8 .c-action-bar .c-content > h3 {
        font-size: 16px; }
      .c-layout-revo-slider-8 .c-action-bar .c-content > p {
        font-size: 12px; }
    .c-layout-revo-slider-8 .c-action-bar .c-btn-container {
      padding-top: 15px;
      display: block;
      float: none;
      text-align: center; } }

@media (max-width: 767px) {
  /* 767px */
  .c-layout-revo-slider-8 .c-main-title {
    padding: 15px 15px 15px 15px;
    line-height: 26px;
    font-size: 22px;
    margin-top: -30px; }
  .c-layout-revo-slider-8 .c-action-bar {
    padding: 5px; }
    .c-layout-revo-slider-8 .c-action-bar .c-content {
      margin: 0 0 10px 0; }
      .c-layout-revo-slider-8 .c-action-bar .c-content > h3 {
        font-size: 14px;
        white-space: normal;
        line-height: 18px; }
      .c-layout-revo-slider-8 .c-action-bar .c-content > p {
        font-size: 12px;
        white-space: normal;
        line-height: 16px; }
    .c-layout-revo-slider-8 .c-action-bar .c-btn-container {
      padding-top: 10px; }
    .c-layout-revo-slider-8 .c-action-bar .c-action-btn-2.btn,
    .c-layout-revo-slider-8 .c-action-bar .c-action-btn.btn {
      padding: 6px 12px; } }

.c-layout-revo-slider-11 .c-main-title {
  background: rgba(255, 255, 255, 0.5);
  padding: 30px 50px;
  letter-spacing: 1px;
  line-height: 68px;
  display: inline-block; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-11 .c-main-title {
    font-size: 22px;
    line-height: 28px; }
  .c-layout-revo-slider-11 .c-action-btn.btn,
  .c-layout-revo-slider-11 .c-action-btn.btn.c-btn-border-2x.c-btn-uppercase.btn-lg {
    margin-top: 20px;
    padding: 7px 22px 5px 22px;
    font-size: 14px; } }

.c-layout-revo-slider-12 .c-main-title {
  background: rgba(255, 255, 255, 0.5);
  padding: 30px 50px;
  letter-spacing: 1px;
  line-height: 68px;
  display: inline-block; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-12 .c-main-title {
    font-size: 22px;
    line-height: 28px; }
  .c-layout-revo-slider-12 .c-action-btn.btn,
  .c-layout-revo-slider-12 .c-action-btn.btn.c-btn-border-2x.c-btn-uppercase.btn-lg {
    margin-top: 20px;
    padding: 7px 22px 5px 22px;
    font-size: 14px; } }

.c-layout-revo-slider-13 .c-main-title {
  font-size: 20px;
  line-height: 28px;
  padding: 15px;
  border: 1px solid #ffffff; }

.c-layout-revo-slider-13 .c-highlight-title {
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 20px !important; }

.c-layout-revo-slider-13 .c-slider-line {
  height: 1px;
  width: 80%;
  display: block;
  margin: 0 auto 30px auto !important; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-13 .c-main-title {
    line-height: 28px; }
  .c-layout-revo-slider-13 .c-highlight-title {
    margin-bottom: 15px !important; }
    .c-layout-revo-slider-13 .c-highlight-title > span {
      font-size: 80px; }
  .c-layout-revo-slider-13 .c-action-btn.btn,
  .c-layout-revo-slider-13 .c-action-btn.btn.c-btn-border-2x.c-btn-uppercase.btn-lg {
    margin-top: 20px;
    padding: 7px 22px 5px 22px;
    font-size: 14px; } }

.c-layout-revo-slider-14 .c-slider-14-title {
  border: 1px solid;
  padding: 40px 45px;
  border-color: rgba(255, 255, 255, 0.12); }
  .c-layout-revo-slider-14 .c-slider-14-title h3 {
    font-size: 71px; }
  .c-layout-revo-slider-14 .c-slider-14-title p {
    margin-bottom: 25px; }

.c-layout-revo-slider-14 .c-main-title {
  line-height: 28px; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-14 .c-slider-14-title {
    border: 1px solid;
    padding: 40px 45px;
    border-color: rgba(255, 255, 255, 0.12); }
    .c-layout-revo-slider-14 .c-slider-14-title span {
      font-size: 71px; }
  .c-layout-revo-slider-14 .c-main-title {
    line-height: 28px; }
  .c-layout-revo-slider-14 .c-action-btn.btn,
  .c-layout-revo-slider-14 .c-action-btn.btn.c-btn-border-2x.c-btn-uppercase.btn-lg {
    margin-top: 20px;
    padding: 7px 22px 5px 22px;
    font-size: 14px; } }

.c-layout-revo-slider-15 {
  overflow: hidden;
  min-height: 950px; }
  .c-layout-revo-slider-15 .c-main-title {
    font-size: 20px;
    line-height: 28px;
    padding: 15px;
    border: 1px solid #ffffff; }
  .c-layout-revo-slider-15 .c-highlight-title {
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 20px !important; }
  .c-layout-revo-slider-15 .c-slider-line {
    height: 1px;
    width: 80%;
    display: block;
    margin: 0 auto 30px auto !important; }

@media (max-width: 1366px) {
  .c-layout-revo-slider-15 {
    min-height: 650px; } }

@media (max-width: 1024px) {
  .c-layout-revo-slider-15 {
    min-height: 768px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-15 .c-main-title {
    line-height: 28px; }
  .c-layout-revo-slider-15 .c-highlight-title {
    margin-bottom: 15px !important; }
    .c-layout-revo-slider-15 .c-highlight-title > span {
      font-size: 80px; }
  .c-layout-revo-slider-15 .c-action-btn.btn,
  .c-layout-revo-slider-15 .c-action-btn.btn.c-btn-border-2x.c-btn-uppercase.btn-lg {
    margin-top: 20px;
    padding: 7px 22px 5px 22px;
    font-size: 14px; }
  .c-layout-revo-slider-15 .c-slider-15-skyline,
  .c-layout-revo-slider-15 .c-slider-15-title {
    width: 100% !important;
    height: auto !important; } }

@media (max-width: 480px) {
  .c-layout-revo-slider-15 {
    min-height: 568px; } }

.c-layout-revo-slider-16 {
  min-height: 600px; }
  .c-layout-revo-slider-16 .c-slider-16-title {
    letter-spacing: 0.5px !important;
    line-height: 1.2em !important; }
  .c-layout-revo-slider-16 .c-action-btn {
    padding: 15px 40px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    transition: all 0.2s !important; }
  .c-layout-revo-slider-16 .tp-fullwidth-forcer {
    height: 0 !important; }

.c-layout-revo-slider-16 .tp-banner-container {
  height: 600px;
  position: relative !important;
  overflow: hidden !important; }

@media (max-width: 1024px) {
  .c-layout-revo-slider-16,
  .c-layout-revo-slider-16 .tp-banner-container {
    min-height: 495px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-revo-slider-16,
  .c-layout-revo-slider-16 .tp-banner-container {
    min-height: 500px; }
  .c-layout-revo-slider-16 .c-slider-16-title {
    font-size: 40px; } }

@media (max-width: 480px) {
  /* 480px */
  .c-layout-revo-slider-16,
  .c-layout-revo-slider-16 .tp-banner-container,
  .c-layout-revo-slider-16 .tp-banner-container .tp-banner {
    min-height: 300px !important; }
  .c-layout-revo-slider-16 .c-slider-16-title {
    font-size: 20px; } }

.c-layout-quick-sidebar {
  display: block;
  width: 350px;
  background: #2f353b;
  z-index: 9996;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -350px;
  transition: right 0.2s;
  overflow-x: auto; }
  .c-layout-quick-sidebar-shown .c-layout-quick-sidebar {
    right: 0;
    transition: right 0.2s; }
  .c-layout-quick-sidebar > .c-header {
    padding: 15px;
    text-align: right; }
    .c-layout-quick-sidebar > .c-header > .c-close > i {
      color: #acb5bd; }
    .c-layout-quick-sidebar > .c-header > .c-close:hover > i {
      color: #bac1c8; }
  .c-layout-quick-sidebar > .c-content > .c-section {
    margin: 30px; }
    .c-layout-quick-sidebar > .c-content > .c-section:first-child {
      margin-top: 10px; }
    .c-layout-quick-sidebar > .c-content > .c-section > h3 {
      font-size: 13px;
      color: #acb5bd;
      margin: 5px 0;
      font-weight: 600;
      text-transform: uppercase; }
    .c-layout-quick-sidebar > .c-content > .c-section > .c-settings {
      margin: 10px 0; }
      .c-layout-quick-sidebar > .c-content > .c-section > .c-settings:before, .c-layout-quick-sidebar > .c-content > .c-section > .c-settings:after {
        content: " ";
        display: table; }
      .c-layout-quick-sidebar > .c-content > .c-section > .c-settings:after {
        clear: both; }
      .c-layout-quick-sidebar > .c-content > .c-section > .c-settings.c-demos {
        position: relative; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings.c-demos .c-demo-container {
          vertical-align: top;
          text-align: center; }
          .c-layout-quick-sidebar > .c-content > .c-section > .c-settings.c-demos .c-demo-container > .c-demo-thumb {
            display: block;
            overflow: hidden;
            transition: all 0.2s;
            margin-bottom: 10px;
            position: relative; }
            .c-layout-quick-sidebar > .c-content > .c-section > .c-settings.c-demos .c-demo-container > .c-demo-thumb:before {
              content: ' ';
              width: 10px;
              height: 10px;
              border-radius: 5px;
              background-color: transparent;
              border: 1px solid #fff;
              position: absolute;
              top: 5px;
              left: 5px;
              transition: all 0.2s; }
            .c-layout-quick-sidebar > .c-content > .c-section > .c-settings.c-demos .c-demo-container > .c-demo-thumb.active:before, .c-layout-quick-sidebar > .c-content > .c-section > .c-settings.c-demos .c-demo-container > .c-demo-thumb:hover:before {
              background-color: #fff; }
            .c-layout-quick-sidebar > .c-content > .c-section > .c-settings.c-demos .c-demo-container > .c-demo-thumb.c-thumb-left {
              padding-right: 5px; }
            .c-layout-quick-sidebar > .c-content > .c-section > .c-settings.c-demos .c-demo-container > .c-demo-thumb.c-thumb-right {
              padding-left: 5px; }
              .c-layout-quick-sidebar > .c-content > .c-section > .c-settings.c-demos .c-demo-container > .c-demo-thumb.c-thumb-right:before {
                left: 10px; }
            .c-layout-quick-sidebar > .c-content > .c-section > .c-settings.c-demos .c-demo-container > .c-demo-thumb > .c-demo-thumb-img {
              width: 100%;
              height: auto;
              border: 1px solid rgba(255, 255, 255, 0.3); }
      .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .btn {
        padding-left: 9px;
        padding-right: 9px;
        min-width: 91px;
        text-align: center; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .btn:first-child {
          margin-right: 8px; }
      .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color {
        display: inline-block;
        height: 29px;
        width: 29px;
        margin: 0 0px 0px 0;
        border: 3px solid #2f353b;
        border-radius: 20px !important; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-active {
          border: 3px solid #515b66; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color:hover {
          cursor: pointer; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-default {
          background: #32c5d2; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-green1 {
          background: #52c9ba; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-green2 {
          background: #5dc09c; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-green3 {
          background: #84c68f; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-green4 {
          background: #3cb878; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-yellow1 {
          background: #c8d046; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-yellow2 {
          background: #c5bf66; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-yellow3 {
          background: #c5b96b; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-yellow4 {
          background: #fff200; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-red1 {
          background: #cd6262; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-red2 {
          background: #e7505a; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-red3 {
          background: #d05163; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-purple1 {
          background: #b771b0; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-purple2 {
          background: #e7505a; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-purple3 {
          background: #d05163; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-blue1 {
          background: #6e8cd7; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-blue2 {
          background: #5893dd; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-blue3 {
          background: #57bfe1; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-blue4 {
          background: #428de4; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-brown1 {
          background: #8a7f68; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-brown2 {
          background: #685e47; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-brown3 {
          background: #7a6a61; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-dark1 {
          background: #525e64; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-dark2 {
          background: #31383c; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-dark3 {
          background: #41515b; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-dark4 {
          background: #24272b; }
        .c-layout-quick-sidebar > .c-content > .c-section > .c-settings > .c-color.c-orange1 {
          background: #FF6A00; }

.c-layout-sidebar-menu {
  float: left;
  width: 270px;
  border-top: 0;
  margin: 30px 0 40px 0; }
  .c-layout-sidebar-menu .c-sidebar-menu-toggler {
    display: none; }
  .c-layout-sidebar-menu .c-sidebar-menu {
    height: auto;
    border: 1px solid #eaeef1;
    list-style: none;
    padding: 0 0; }
    .c-layout-sidebar-menu .c-sidebar-menu.collapse {
      display: block; }
    .c-layout-sidebar-menu .c-sidebar-menu > li {
      position: relative;
      padding: 0;
      margin: 0; }
      .c-layout-sidebar-menu .c-sidebar-menu > li > a {
        display: block;
        color: #626a73;
        padding: 12px 30px 12px 25px;
        font-weight: 500; }
      .c-layout-sidebar-menu .c-sidebar-menu > li.c-active > a {
        transition: all 0.2s;
        background-color: #f9fbfc; }
      .c-layout-sidebar-menu .c-sidebar-menu > li:hover > a, .c-layout-sidebar-menu .c-sidebar-menu > li.c-open > a {
        transition: all 0.2s;
        background-color: #f9fbfc; }
    .c-layout-sidebar-menu .c-sidebar-menu li .c-dropdown-menu {
      list-style: none;
      padding: 0;
      display: none;
      transition: all 0.3s; }
      .c-layout-sidebar-menu .c-sidebar-menu li .c-dropdown-menu li {
        padding: 0;
        margin: 0; }
        .c-layout-sidebar-menu .c-sidebar-menu li .c-dropdown-menu li > a {
          display: block;
          padding: 5px 20px 5px 40px;
          color: #3f444a; }
          .c-layout-sidebar-menu .c-sidebar-menu li .c-dropdown-menu li > a > i {
            font-size: 14px;
            margin-right: 5px;
            margin-top: 1px;
            opacity: 0.6;
            filter: alpha(opacity=60); }
        .c-layout-sidebar-menu .c-sidebar-menu li .c-dropdown-menu li:last-child > a {
          border-top: 0; }
        .c-layout-sidebar-menu .c-sidebar-menu li .c-dropdown-menu li > .c-dropdown-menu > li > a {
          padding-left: 60px; }
        .c-layout-sidebar-menu .c-sidebar-menu li .c-dropdown-menu li > .c-dropdown-menu > li > .c-dropdown-menu > li > a {
          padding-left: 80px; }
        .c-layout-sidebar-menu .c-sidebar-menu li .c-dropdown-menu li > .c-dropdown-menu > li > .c-dropdown-menu > li > .c-dropdown-menu > li > a {
          padding-left: 100px; }
    .c-layout-sidebar-menu .c-sidebar-menu li.c-dropdown {
      position: relative; }
      .c-layout-sidebar-menu .c-sidebar-menu li.c-dropdown > a .c-arrow {
        transition: all 0.2s;
        font-family: fontawesome;
        position: absolute;
        right: 10px;
        display: inline-block;
        font-weight: 300;
        margin-top: -1px;
        color: #a7adb3;
        width: 30px;
        text-align: center; }
        .c-layout-sidebar-menu .c-sidebar-menu li.c-dropdown > a .c-arrow:before {
          content: "\F105"; }
      .c-layout-sidebar-menu .c-sidebar-menu li.c-dropdown.c-expanded > a .c-arrow:before, .c-layout-sidebar-menu .c-sidebar-menu li.c-dropdown.c-open > a .c-arrow:before {
        content: "\F107"; }
      .c-layout-sidebar-menu .c-sidebar-menu li.c-dropdown.c-expanded > .c-dropdown-menu, .c-layout-sidebar-menu .c-sidebar-menu li.c-dropdown.c-open > .c-dropdown-menu {
        display: block;
        transition: all 0.3s; }
    .c-layout-sidebar-menu .c-sidebar-menu li:last-child > a {
      border-top: 0; }
  .c-layout-sidebar-menu .c-sidebar-menu.c-option-2 {
    background-color: #f8f9fa;
    border: 0; }
    .c-layout-sidebar-menu .c-sidebar-menu.c-option-2 > li:hover > a, .c-layout-sidebar-menu .c-sidebar-menu.c-option-2 > li.c-open > a {
      transition: all 0.2s;
      background-color: #eff1f4; }

.c-layout-sidebar-content {
  overflow: hidden;
  padding: 30px 0 30px 30px; }

.c-layout-sidebar-menu.c-align-right {
  float: right; }

.c-layout-sidebar-content.c-align-left {
  padding: 30px 40px 30px 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-sidebar-menu {
    width: 100%;
    float: none;
    display: block;
    margin: 0; }
    .c-layout-sidebar-menu .c-sidebar-menu-toggler {
      display: block;
      margin: 30px 0 20px 0; }
      .c-layout-sidebar-menu .c-sidebar-menu-toggler .c-title {
        display: inline-block;
        font-size: 18px;
        margin: 8px 0 5px 0;
        color: #3f444a; }
      .c-layout-sidebar-menu .c-sidebar-menu-toggler .c-content-toggler {
        float: right;
        clear: both; }
    .c-layout-sidebar-menu .c-sidebar-menu {
      margin-top: 10px; }
      .c-layout-sidebar-menu .c-sidebar-menu.collapse {
        display: none; }
      .c-layout-sidebar-menu .c-sidebar-menu.collapse.in {
        display: block; }
  .c-layout-sidebar-content {
    overflow: visible;
    padding: 10px 0 30px 0; } }

.c-layout-breadcrumbs-1 {
  padding: 25px 0;
  background: #f7fafb; }
  .c-layout-breadcrumbs-1:before, .c-layout-breadcrumbs-1:after {
    content: " ";
    display: table; }
  .c-layout-breadcrumbs-1:after {
    clear: both; }
  .c-layout-breadcrumbs-1 .c-page-title {
    display: inline-block; }
    .c-layout-breadcrumbs-1 .c-page-title.c-pull-left {
      float: left; }
    .c-layout-breadcrumbs-1 .c-page-title.c-pull-right {
      float: right; }
    .c-layout-breadcrumbs-1 .c-page-title h3 {
      color: #000000;
      margin: 10px 0 6px 0;
      font-weight: 500;
      font-size: 18px;
      letter-spacing: 1px; }
    .c-layout-breadcrumbs-1 .c-page-title h4 {
      color: #7f8c97;
      margin: 5px 0 5px 0;
      font-weight: 500;
      font-size: 15px;
      letter-spacing: 1px; }
  .c-layout-breadcrumbs-1 .c-page-breadcrumbs {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style-type: none; }
    .c-layout-breadcrumbs-1 .c-page-breadcrumbs.c-pull-left {
      float: left; }
    .c-layout-breadcrumbs-1 .c-page-breadcrumbs.c-pull-right {
      float: right; }
    .c-layout-breadcrumbs-1 .c-page-breadcrumbs > li {
      display: inline-block;
      margin: 0;
      padding: 8px 4px 8px 4px; }
      .c-layout-breadcrumbs-1 .c-page-breadcrumbs > li,
      .c-layout-breadcrumbs-1 .c-page-breadcrumbs > li > a {
        color: #7f8c97;
        font-size: 16px;
        font-weight: 400; }
    .c-layout-breadcrumbs-1 .c-page-breadcrumbs.c-pull-right > li:last-child {
      padding-right: 0; }
    .c-layout-breadcrumbs-1 .c-page-breadcrumbs.c-pull-left > li:first-child {
      padding-left: 0; }
  .c-layout-breadcrumbs-1.c-bordered {
    border-bottom: 1px solid #f4f8f9; }
  .c-layout-breadcrumbs-1.c-bordered-both {
    border-top: 1px solid #f4f8f9;
    border-bottom: 1px solid #f4f8f9; }
  .c-layout-breadcrumbs-1.c-subtitle {
    padding: 30px 0; }
    .c-layout-breadcrumbs-1.c-subtitle .c-page-breadcrumbs {
      margin-top: 10px; }
  .c-layout-breadcrumbs-1.c-bgimage {
    padding: 80px 0; }
    .c-layout-breadcrumbs-1.c-bgimage .c-page-breadcrumbs {
      margin-top: 10px; }
  .c-layout-breadcrumbs-1.c-bgimage-full {
    padding: 200px 0 100px; }
    .c-layout-breadcrumbs-1.c-bgimage-full .c-breadcrumbs-wrapper {
      background: rgba(0, 0, 0, 0.2);
      padding: 10px 0;
      margin-bottom: 30px; }
    .c-layout-breadcrumbs-1.c-bgimage-full .c-page-breadcrumbs {
      margin-top: 10px; }
    .c-layout-breadcrumbs-1.c-bgimage-full.c-centered {
      text-align: center; }
      .c-layout-breadcrumbs-1.c-bgimage-full.c-centered .c-breadcrumbs-wrapper {
        background: rgba(0, 0, 0, 0.2);
        padding: 20px 0; }
      .c-layout-breadcrumbs-1.c-bgimage-full.c-centered .c-page-breadcrumbs {
        display: block;
        float: none; }
        .c-layout-breadcrumbs-1.c-bgimage-full.c-centered .c-page-breadcrumbs:before, .c-layout-breadcrumbs-1.c-bgimage-full.c-centered .c-page-breadcrumbs:after {
          content: " ";
          display: table; }
        .c-layout-breadcrumbs-1.c-bgimage-full.c-centered .c-page-breadcrumbs:after {
          clear: both; }
        .c-layout-breadcrumbs-1.c-bgimage-full.c-centered .c-page-breadcrumbs > li:first-child {
          padding-left: 0; }
      .c-layout-breadcrumbs-1.c-bgimage-full.c-centered .c-page-title {
        display: block;
        float: none;
        margin-bottom: 10px; }
        .c-layout-breadcrumbs-1.c-bgimage-full.c-centered .c-page-title:before, .c-layout-breadcrumbs-1.c-bgimage-full.c-centered .c-page-title:after {
          content: " ";
          display: table; }
        .c-layout-breadcrumbs-1.c-bgimage-full.c-centered .c-page-title:after {
          clear: both; }
  .c-layout-breadcrumbs-1.c-opt-1 {
    padding: 180px 0 80px 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-breadcrumbs-1 {
    padding: 10px 0; }
    .c-layout-breadcrumbs-1 .c-page-title > h3 {
      margin: 6px 15px 6px 0; }
    .c-layout-breadcrumbs-1 .c-page-breadcrumbs {
      clear: both;
      float: left !important;
      text-align: left;
      clear: both; }
      .c-layout-breadcrumbs-1 .c-page-breadcrumbs > li {
        padding: 6px 4px 6px 4px; }
        .c-layout-breadcrumbs-1 .c-page-breadcrumbs > li:first-child {
          padding-left: 0; }
    .c-layout-breadcrumbs-1.c-bgimage-full {
      padding: 40px 0; }
      .c-layout-header-fullscreen .c-layout-breadcrumbs-1.c-bgimage-full {
        padding-top: 105px; }
      .c-layout-breadcrumbs-1.c-bgimage-full .c-breadcrumbs-wrapper {
        background: rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        margin-bottom: 10px; }
      .c-layout-breadcrumbs-1.c-bgimage-full .c-page-breadcrumbs {
        margin-top: 10px; } }

@media (max-width: 767px) {
  /* 767px */
  .c-layout-breadcrumbs-1 .c-page-title {
    display: block;
    float: left;
    text-align: left; }
    .c-layout-breadcrumbs-1 .c-page-title:before, .c-layout-breadcrumbs-1 .c-page-title:after {
      content: " ";
      display: table; }
    .c-layout-breadcrumbs-1 .c-page-title:after {
      clear: both; }
  .c-layout-breadcrumbs-1 .c-page-breadcrumbs {
    display: block; } }

.c-layout-footer.c-layout-footer-1 {
  padding: 0;
  margin: 0; }
  .c-layout-footer.c-layout-footer-1 .c-prefooter {
    padding: 60px 0;
    background: #394048; }
    .c-layout-footer.c-layout-footer-1 .c-prefooter .c-logo {
      padding-bottom: 20px; }
    .c-layout-footer.c-layout-footer-1 .c-prefooter .c-about {
      color: #818e9a;
      font-size: 17px;
      font-weight: 500;
      padding: 20px 0 10px 0; }
    .c-layout-footer.c-layout-footer-1 .c-prefooter .c-links {
      padding: 0 0 10px 0; }
      .c-layout-footer.c-layout-footer-1 .c-prefooter .c-links:before, .c-layout-footer.c-layout-footer-1 .c-prefooter .c-links:after {
        content: " ";
        display: table; }
      .c-layout-footer.c-layout-footer-1 .c-prefooter .c-links:after {
        clear: both; }
      .c-layout-footer.c-layout-footer-1 .c-prefooter .c-links .c-nav {
        padding: 0;
        margin: 0 40px 0 0;
        display: inline-block;
        float: left;
        list-style: none; }
        .c-layout-footer.c-layout-footer-1 .c-prefooter .c-links .c-nav > li {
          padding: 4px 0; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-links .c-nav > li > a {
            color: #c0c9d3;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase; }
            .c-layout-footer.c-layout-footer-1 .c-prefooter .c-links .c-nav > li > a:hover {
              color: #edf0f3; }
    .c-layout-footer.c-layout-footer-1 .c-prefooter .c-contact {
      color: #818e9a;
      font-size: 17px;
      font-weight: 500;
      padding: 20px 0; }
    .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback {
      margin-left: 20px; }
      .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback h3 {
        color: #ffffff;
        font-size: 22px;
        font-weight: 600;
        text-transform: uppercase;
        padding-bottom: 10px; }
      .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form {
        padding-top: 10px; }
        .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .form-control {
          color: #7c8895;
          font-size: 17px;
          font-weight: 300;
          border-radius: 0;
          box-shadow: none;
          border-color: #474f59;
          background: transparent;
          padding: 8px 16px; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .form-control::-moz-placeholder {
            color: #6f7b89; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .form-control:-moz-placeholder {
            color: #6f7b89; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .form-control:-ms-input-placeholder {
            color: #6f7b89; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .form-control::-webkit-input-placeholder {
            color: #6f7b89; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .form-control:focus {
            box-shadow: none;
            border-color: #474f59; }
        .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .c-form-wrap {
          width: 100%;
          height: 100%;
          display: table;
          vertical-align: middle; }
        .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .c-form-wrap-group {
          height: 100%;
          display: table-cell;
          vertical-align: middle; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .c-form-wrap-group .form-control {
            height: 48px; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .c-form-wrap-group .form-control:first-child {
            border-right-color: transparent; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .c-form-wrap-group .form-control:last-child {
            border-top-color: transparent;
            border-right-color: transparent; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .c-form-wrap-group:last-child .form-control:first-child {
            border-right-color: #474f59; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .c-form-wrap-group:last-child .form-control:last-child {
            border-right-color: #474f59; }
        .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form textarea.form-control {
          border-top-color: transparent;
          height: 180px; }
          .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form textarea.form-control:active, .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form textarea.form-control:focus {
            border-color: #474f59;
            border-top-color: transparent; }
        .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .btn:active, .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .btn:hover, .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback form .btn:focus {
          background: #525c67;
          border-color: #525c67; }
  .c-layout-footer.c-layout-footer-1 .c-postfooter {
    padding: 40px 0;
    background: #2f353b; }
    .c-layout-footer.c-layout-footer-1 .c-postfooter .c-copyright {
      color: #a4aeb8;
      padding: 0;
      margin-top: 10px; }
    .c-layout-footer.c-layout-footer-1 .c-postfooter .c-socials {
      float: right;
      list-style: none;
      padding: 0;
      margin: 0; }
      .c-layout-footer.c-layout-footer-1 .c-postfooter .c-socials > li {
        display: inline-block;
        padding: 0 6px; }
        .c-layout-footer.c-layout-footer-1 .c-postfooter .c-socials > li > a > i {
          display: inline-block;
          padding: 10px;
          background: #2b3036;
          color: #64707e;
          font-size: 18px;
          font-weight: bold; }
        .c-layout-footer.c-layout-footer-1 .c-postfooter .c-socials > li > a:hover > i {
          background: #202328;
          color: #6f7d8c; }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-footer.c-layout-footer-1 .c-prefooter > .container-fluid {
    padding: 0 100px; }
  .c-layout-footer.c-layout-footer-1 .c-postfooter > .container-fluid {
    padding: 0 100px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-footer.c-layout-footer-1 .c-prefooter .c-feedback {
    margin: 0; } }

.c-layout-footer.c-layout-footer-2 {
  padding: 100px 0;
  margin: 0;
  background-image: url(/public/1e1f5afd98e392fd26c7254f29b3a8af.jpg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover; }
  .c-layout-footer.c-layout-footer-2.c-opt-2 {
    padding: 80px 0; }
  .c-layout-footer.c-layout-footer-2 .c-container {
    margin-bottom: 80px;
    overflow: auto; }
    .c-layout-footer.c-layout-footer-2 .c-container.c-first {
      padding-right: 50px; }
    .c-layout-footer.c-layout-footer-2 .c-container.c-last {
      padding-left: 50px; }
    .c-layout-footer.c-layout-footer-2 .c-container > .c-content-title-1 > h3 {
      font-size: 24px;
      color: #ffffff; }
    .c-layout-footer.c-layout-footer-2 .c-container > .c-content-title-1 > .c-line-left {
      margin-bottom: 30px; }
    .c-layout-footer.c-layout-footer-2 .c-container > .c-content-title-1 > p {
      margin-bottom: 30px;
      text-transform: none; }
      .c-layout-footer.c-layout-footer-2 .c-container > .c-content-title-1 > p.c-ask {
        color: #616a73; }
    .c-layout-footer.c-layout-footer-2 .c-container > .c-links {
      padding: 0 0 10px 0; }
      .c-layout-footer.c-layout-footer-2 .c-container > .c-links:before, .c-layout-footer.c-layout-footer-2 .c-container > .c-links:after {
        content: " ";
        display: table; }
      .c-layout-footer.c-layout-footer-2 .c-container > .c-links:after {
        clear: both; }
      .c-layout-footer.c-layout-footer-2 .c-container > .c-links .c-nav {
        padding: 0;
        margin: 0 40px 0 0;
        display: inline-block;
        float: left;
        list-style: none; }
        .c-layout-footer.c-layout-footer-2 .c-container > .c-links .c-nav > li {
          padding: 4px 0 10px 0; }
          .c-layout-footer.c-layout-footer-2 .c-container > .c-links .c-nav > li > a {
            color: #b1bcc9;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase; }
            .c-layout-footer.c-layout-footer-2 .c-container > .c-links .c-nav > li > a:hover {
              color: #edf0f3; }
    .c-layout-footer.c-layout-footer-2 .c-container > .c-socials {
      float: left;
      list-style: none;
      padding: 0;
      margin: 0; }
      .c-layout-footer.c-layout-footer-2 .c-container > .c-socials > li {
        display: inline-block;
        padding: 0 6px; }
        .c-layout-footer.c-layout-footer-2 .c-container > .c-socials > li > a > i {
          display: inline-block;
          padding: 10px;
          background: #11111c;
          color: #555555;
          font-size: 18px;
          font-weight: bold; }
        .c-layout-footer.c-layout-footer-2 .c-container > .c-socials > li > a:hover > i {
          background: #202328;
          color: #6f7d8c; }
        .c-layout-footer.c-layout-footer-2 .c-container > .c-socials > li:first-child {
          padding-left: 0; }
    .c-layout-footer.c-layout-footer-2 .c-container form {
      margin-bottom: 20px; }
      .c-layout-footer.c-layout-footer-2 .c-container form .input-group {
        width: 350px; }
        .c-layout-footer.c-layout-footer-2 .c-container form .input-group .form-control {
          background: none;
          color: #eee; }
    .c-layout-footer.c-layout-footer-2 .c-container:last-child {
      margin-bottom: 0; }
  .c-layout-footer.c-layout-footer-2 .c-copyright {
    color: #a4aeb8;
    padding: 0;
    margin: 140px 0 -60px 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-footer.c-layout-footer-2 {
    background-image: url(/public/e9b6399dc91c5e7256bc859493ebde75.jpg); }
    .c-layout-footer.c-layout-footer-2 .row > div {
      margin-bottom: 80px; }
      .c-layout-footer.c-layout-footer-2 .row > div:last-child {
        margin-bottom: 0; }
    .c-layout-footer.c-layout-footer-2 .c-container.c-left {
      padding: 0; }
    .c-layout-footer.c-layout-footer-2 .c-container.c-right {
      padding: 0; }
    .c-layout-footer.c-layout-footer-2 .c-container.c-last {
      padding-left: 0; }
    .c-layout-footer.c-layout-footer-2 .c-container form .form-control {
      width: 250px; }
    .c-layout-footer.c-layout-footer-2 .c-copyright {
      margin-top: 60px; } }

.c-layout-footer.c-layout-footer-3 {
  margin: 0; }
  .c-layout-footer.c-layout-footer-3 .c-prefooter {
    padding: 80px 0 20px 0; }
    .c-layout-footer.c-layout-footer-3 .c-prefooter .c-content-title-1 > h3 {
      font-size: 22px; }
    .c-layout-footer.c-layout-footer-3 .c-prefooter .c-content-title-1 > .c-line-left {
      margin-bottom: 30px; }
    .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container {
      padding: 0 10px;
      margin-bottom: 40px; }
      .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container.c-first {
        padding-left: 0; }
      .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container.c-last {
        padding-right: 0; }
      .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-links {
        padding: 0; }
        .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-links > li {
          list-style: none;
          padding: 5px 0;
          border-bottom: 1px solid #394047; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-links > li > a {
            color: #5c6873; }
            .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-links > li > a:hover {
              color: #32c5d2; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-links > li:last-child {
            border-bottom: none; }
      .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post {
        border-bottom: 1px solid #394047;
        padding: 10px 0; }
        .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post:first-child {
          padding-top: 0; }
        .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post.c-last, .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post:last-child {
          border-bottom: 0 !important; }
        .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post > .c-post-img {
          width: 40px;
          height: 40px;
          position: relative;
          float: left;
          margin-top: 10px; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post > .c-post-img img {
            width: 100%;
            border-radius: 40px; }
        .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post > .c-post-content {
          padding-left: 50px; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post > .c-post-content > .c-post-title {
            text-transform: uppercase;
            font-weight: 600; }
            .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post > .c-post-content > .c-post-title a {
              color: #5c6873; }
            .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post > .c-post-content > .c-post-title a:hover {
              color: #32c5d2; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-blog > .c-post > .c-post-content > .c-text {
            font-size: 16px; }
      .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-works {
        padding: 0;
        overflow: auto;
        margin: 0; }
        .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-works > li {
          list-style: none;
          display: inline-block;
          padding: 0;
          margin: 0 0 5px 0; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-works > li.c-first {
            margin-right: 5px; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-works > li.c-last {
            margin-left: 5px; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-works > li img {
            opacity: 0.8;
            filter: alpha(opacity=80);
            margin: 0;
            width: 74px; }
            .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-works > li img:hover {
              opacity: 1;
              filter: alpha(opacity=100); }
      .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-socials {
        list-style: none;
        padding: 0;
        margin: 0; }
        .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-socials > li {
          display: inline-block;
          padding: 0 5px; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-socials > li > a > i {
            position: relative;
            display: inline-block;
            padding: 10px;
            background: #1e2226;
            color: #54606b;
            font-size: 18px;
            font-weight: bold; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-socials > li > a:hover > i {
            background-color: #272d32;
            color: white; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-socials > li:first-child {
            padding-left: 0; }
      .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-address {
        clear: both;
        padding: 0;
        margin-top: 20px; }
        .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-address > li {
          list-style: none;
          padding: 5px 0; }
          .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-address > li > i {
            margin-right: 10px;
            position: relative;
            top: 2px; }
      .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-read-more {
        display: block;
        padding: 10px 0;
        font-size: 14px;
        margin-top: 20px; }
  .c-layout-footer.c-layout-footer-3 .c-postfooter {
    padding: 30px 0; }
    .c-layout-footer.c-layout-footer-3 .c-postfooter .c-copyright {
      font-size: 15px;
      margin: 0; }
    .c-layout-footer.c-layout-footer-3 .c-postfooter .c-line {
      width: 100%;
      height: 1px;
      background-color: #393f42;
      margin: 40px auto; }
    .c-layout-footer.c-layout-footer-3 .c-postfooter .c-payments {
      margin-right: -5px; }
    .c-layout-footer.c-layout-footer-3 .c-postfooter .c-col {
      height: 38px;
      line-height: 38px; }

@media (max-width: 1199px) {
  /* 1199px */
  .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-works > li {
    width: 30%; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container {
    padding: 0; }
    .c-layout-footer.c-layout-footer-3 .c-prefooter .c-container .c-works > li {
      width: auto; } }

.c-layout-footer.c-layout-footer-4 {
  padding: 0;
  margin: 0; }
  .c-layout-footer.c-layout-footer-4.c-bg-footer-8 {
    background: url(/public/ff05fbf826b77d87d15fab2b6a3594cf.jpg) center center no-repeat; }
  .c-layout-footer.c-layout-footer-4.c-bg-footer-8-rtl {
    background: url(/public/48ecaf75880d40b5548ffec3c5265a44.jpg) center center no-repeat; }
  .c-layout-footer.c-layout-footer-4.c-bg-footer-9 {
    background: url(/public/0880cd3f0eb73a3eee0f9a1201405dc0.jpg) center center no-repeat; }
  .c-layout-footer.c-layout-footer-4.c-bg-footer-9-rtl {
    background: url(/public/493a0fdb7e4a583090ac2768263bcce3.jpg) center center no-repeat; }
  .c-layout-footer.c-layout-footer-4 .c-footer {
    padding: 60px 0; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-logo {
      padding-bottom: 20px; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-footer-4-p-right {
      padding-right: 60px; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-footer-4-p-left {
      padding-left: 60px; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-content-title-1 {
      display: inline-block; }
      .c-layout-footer.c-layout-footer-4 .c-footer .c-content-title-1 h3 {
        padding: 10px; }
      .c-layout-footer.c-layout-footer-4 .c-footer .c-content-title-1 .c-border {
        border: 2px solid #ffffff; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-about {
      color: #a7a9ac;
      font-size: 15px;
      padding: 10px 0; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-links {
      padding: 20px 0 30px 0; }
      .c-layout-footer.c-layout-footer-4 .c-footer .c-links:before, .c-layout-footer.c-layout-footer-4 .c-footer .c-links:after {
        content: " ";
        display: table; }
      .c-layout-footer.c-layout-footer-4 .c-footer .c-links:after {
        clear: both; }
      .c-layout-footer.c-layout-footer-4 .c-footer .c-links .c-nav {
        padding: 0;
        margin: 0 40px 0 0;
        display: inline-block;
        float: left;
        list-style: none; }
        .c-layout-footer.c-layout-footer-4 .c-footer .c-links .c-nav > li {
          padding: 4px 0;
          display: inline-block; }
          .c-layout-footer.c-layout-footer-4 .c-footer .c-links .c-nav > li > a {
            color: #ffffff;
            font-size: 15px;
            text-transform: uppercase;
            padding: 10px 20px;
            margin: 0 1px;
            line-height: 3em; }
            .c-layout-footer.c-layout-footer-4 .c-footer .c-links .c-nav > li > a.c-active {
              border: 1px solid;
              margin: 0; }
            .c-layout-footer.c-layout-footer-4 .c-footer .c-links .c-nav > li > a:hover {
              color: #edf0f3;
              border: 1px solid #ffffff;
              margin: 0; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-contact {
      color: #a7a9ac;
      font-size: 15px;
      padding: 20px 0; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-socials {
      list-style: none;
      padding: 0;
      margin: 0; }
      .c-layout-footer.c-layout-footer-4 .c-footer .c-socials > li {
        display: inline-block;
        padding-right: 5px; }
        .c-layout-footer.c-layout-footer-4 .c-footer .c-socials > li > a > i {
          display: inline-block;
          padding: 10px;
          color: #a7a9ac;
          font-size: 18px; }
        .c-layout-footer.c-layout-footer-4 .c-footer .c-socials > li > a:hover > i {
          background: #202328;
          color: #6f7d8c; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback {
      margin-left: 20px; }
      .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback h3 {
        color: #ffffff;
        font-size: 27px;
        padding-bottom: 10px; }
      .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form {
        padding-top: 10px; }
        .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control {
          color: #8cdde4;
          font-size: 17px;
          font-weight: 300;
          border-radius: 0;
          box-shadow: none;
          border-color: #8cdde4;
          background: transparent;
          padding: 8px 16px;
          margin-bottom: 20px; }
          .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control::-moz-placeholder {
            color: #b5e9ee; }
          .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control:-moz-placeholder {
            color: #b5e9ee; }
          .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control:-ms-input-placeholder {
            color: #b5e9ee; }
          .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control::-webkit-input-placeholder {
            color: #b5e9ee; }
          .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control:focus {
            box-shadow: none;
            border-color: #474f59; }
        .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form textarea.form-control {
          height: 180px; }
          .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form textarea.form-control:active, .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form textarea.form-control:focus {
            border-color: #474f59; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-twitter h3 {
      font-size: 27px;
      padding-bottom: 10px; }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-footer.c-layout-footer-4 .c-footer > .container-fluid {
    padding: 0 100px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-footer.c-layout-footer-4.c-bg-footer-8 {
    background: url(/public/d15eb415c095aba21e7c4082a41da54a.jpg) center center no-repeat;
    background-size: cover; }
  .c-layout-footer.c-layout-footer-4.c-bg-footer-9 {
    background: url(/public/d15eb415c095aba21e7c4082a41da54a.jpg) center center no-repeat;
    background-size: cover; }
    .c-layout-footer.c-layout-footer-4.c-bg-footer-9 .c-footer-4-p-left {
      background: rgba(255, 255, 255, 0.8);
      padding: 20px 15px;
      margin-top: 40px; }
  .c-layout-footer.c-layout-footer-4 .c-footer .c-footer-4-p-right {
    padding-right: 15px; }
  .c-layout-footer.c-layout-footer-4 .c-footer .c-footer-4-p-left {
    padding-left: 15px; }
  .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback {
    margin: 40px 0 0 0; }
    .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form {
      padding-top: 10px; }
      .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control {
        color: #666666;
        border-color: #666666; }
        .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control::-moz-placeholder {
          color: gray; }
        .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control:-moz-placeholder {
          color: gray; }
        .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control:-ms-input-placeholder {
          color: gray; }
        .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form .form-control::-webkit-input-placeholder {
          color: gray; }
      .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form textarea.form-control:active, .c-layout-footer.c-layout-footer-4 .c-footer .c-feedback form textarea.form-control:focus {
        border-color: #474f59; } }

.c-layout-footer-6 {
  margin: 0;
  padding-top: 40px; }
  .c-layout-footer-6 .c-prefooter {
    padding: 35px 20px 40px;
    margin-bottom: 40px; }
  .c-layout-footer-6 .c-content-title-1 h3 {
    margin-bottom: 25px; }
  .c-layout-footer-6 .c-head {
    margin: 5px auto; }
    .c-layout-footer-6 .c-head .c-left .socicon {
      margin-top: 3px; }
      .c-layout-footer-6 .c-head .c-left .socicon .socicon-btn {
        width: auto;
        height: auto;
        padding: 13px; }
        .c-layout-footer-6 .c-head .c-left .socicon .socicon-btn + .socicon-btn {
          margin-left: 5px; }
    .c-layout-footer-6 .c-head .c-right {
      float: right; }
      .c-layout-footer-6 .c-head .c-right .socicon-btn {
        margin: 0; }
      .c-layout-footer-6 .c-head .c-right .c-title {
        float: left;
        margin: 20px 30px 0; }
      .c-layout-footer-6 .c-head .c-right .c-icons {
        float: left; }
        .c-layout-footer-6 .c-head .c-right .c-icons > .socicon-btn {
          width: auto;
          height: auto;
          padding: 13px;
          float: left;
          margin-left: -1px; }
  .c-layout-footer-6 .c-body .c-twitter {
    width: 340px; }
  .c-layout-footer-6 .c-body .c-links {
    float: left;
    padding: 0;
    width: 50%; }
    .c-layout-footer-6 .c-body .c-links > li {
      list-style-type: none;
      line-height: 30px; }
  .c-layout-footer-6 .c-body .c-address {
    margin: 0; }
  .c-layout-footer-6 .c-foot {
    padding-bottom: 5px; }
    .c-layout-footer-6 .c-foot .c-text {
      margin: 0; }
  .c-layout-footer-6 .c-line {
    width: 100%;
    height: 1px;
    background-color: #e8f0f5;
    margin: 40px auto; }
  .c-layout-footer-6 .c-postfooter {
    padding: 30px 0; }
    .c-layout-footer-6 .c-postfooter .c-copyright {
      font-size: 15px;
      margin: 0; }
    .c-layout-footer-6 .c-postfooter .c-payments {
      margin-right: -5px; }
    .c-layout-footer-6 .c-postfooter .c-col {
      height: 38px;
      line-height: 38px; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-footer-6 .c-head .c-right {
    float: none;
    margin-top: 30px; }
    .c-layout-footer-6 .c-head .c-right > .c-title {
      display: none; }
  .c-layout-footer-6 .c-body .c-links, .c-layout-footer-6 .c-body .c-twitter {
    margin-bottom: 40px; }
  .c-layout-footer-6 .c-body .c-twitter {
    width: 100%; }
  .c-layout-footer-6 .c-foot .c-text {
    margin-bottom: 40px; } }

@media (max-width: 767px) {
  /* 767px */ }

.c-layout-footer-7 {
  margin: 0;
  background-color: #2e3336; }
  .c-layout-footer-7 .c-input {
    background-color: #2e3336;
    border-color: #3f464d;
    color: #58626d; }
  .c-layout-footer-7 .c-prefooter {
    padding: 70px 0 35px 0; }
  .c-layout-footer-7 .c-content-title-1 .c-title {
    color: #d5dfe5;
    margin-bottom: 25px; }
  .c-layout-footer-7 .c-head {
    margin: 5px auto; }
    .c-layout-footer-7 .c-head .c-left .socicon {
      margin-top: 3px; }
      .c-layout-footer-7 .c-head .c-left .socicon .socicon-btn {
        width: auto;
        height: auto;
        padding: 13px;
        background-color: #2a2e31; }
        .c-layout-footer-7 .c-head .c-left .socicon .socicon-btn + .socicon-btn {
          margin-left: 5px; }
    .c-layout-footer-7 .c-head .c-right {
      float: right; }
      .c-layout-footer-7 .c-head .c-right .socicon-btn {
        margin: 0; }
      .c-layout-footer-7 .c-head .c-right .c-title {
        float: left;
        margin: 20px 30px 0;
        color: #d5dfe5; }
      .c-layout-footer-7 .c-head .c-right .c-icons {
        float: left; }
        .c-layout-footer-7 .c-head .c-right .c-icons > .socicon-btn {
          width: auto;
          height: auto;
          padding: 13px;
          float: left;
          margin-left: -1px;
          border-color: #353b3e; }
          .c-layout-footer-7 .c-head .c-right .c-icons > .socicon-btn:hover {
            background-color: #32383b; }
  .c-layout-footer-7 .c-body .c-twitter {
    width: 340px;
    color: #b1c4d0; }
  .c-layout-footer-7 .c-body .c-links {
    float: left;
    padding: 0; }
    .c-layout-footer-7 .c-body .c-links > li {
      list-style-type: none;
      line-height: 30px; }
      .c-layout-footer-7 .c-body .c-links > li > a {
        color: #b1c4d0; }
        .c-layout-footer-7 .c-body .c-links > li > a:hover {
          color: #e7eef3; }
    .c-layout-footer-7 .c-body .c-links + .c-links {
      padding-left: 50px; }
  .c-layout-footer-7 .c-body .c-address {
    margin: 0;
    color: #7e8b93; }
  .c-layout-footer-7 .c-foot {
    padding-bottom: 5px; }
    .c-layout-footer-7 .c-foot .c-text {
      margin: 0; }
  .c-layout-footer-7 .c-line {
    width: 100%;
    height: 1px;
    background-color: #393f42;
    margin: 40px auto; }
  .c-layout-footer-7 .c-postfooter {
    padding: 30px 0; }
    .c-layout-footer-7 .c-postfooter .c-copyright {
      font-size: 15px;
      margin: 0; }
    .c-layout-footer-7 .c-postfooter .c-payments {
      margin-right: -5px; }
    .c-layout-footer-7 .c-postfooter .c-col {
      height: 38px;
      line-height: 38px; }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-footer-7 .c-head .c-right {
    float: none;
    margin-top: 30px; }
    .c-layout-footer-7 .c-head .c-right > .c-title {
      display: none; }
  .c-layout-footer-7 .c-body .c-links, .c-layout-footer-7 .c-body .c-twitter {
    margin-bottom: 40px; }
  .c-layout-footer-7 .c-body .c-twitter {
    width: 100%; }
  .c-layout-footer-7 .c-foot .c-text {
    margin-bottom: 40px; } }

.c-layout-footer-10 {
  padding: 110px 0 0 0;
  background-image: url(/public/168c28247c8f6ce3ac7bbd98d73e2878.png);
  background-position: 20% 70px;
  background-repeat: no-repeat; }
  .c-layout-footer-10 .c-layout-footer-10-content {
    margin-bottom: 110px; }
    .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-title-container {
      display: table;
      margin-bottom: 40px; }
      .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-title-container .c-layout-footer-10-title {
        display: table-cell;
        color: #24282a;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.5px; }
      .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-title-container .c-layout-footer-10-title-line {
        display: table-cell;
        vertical-align: middle; }
        .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-title-container .c-layout-footer-10-title-line > span {
          width: 20px;
          height: 2px;
          margin-left: 10px;
          display: block; }
    .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-desc {
      color: #4f4f4f;
      font-size: 13px;
      letter-spacing: 0.5px;
      font-weight: 300;
      padding-right: 80px;
      line-height: 1.7em; }
    .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-list {
      color: #4f4f4f;
      font-size: 13px;
      letter-spacing: 0.5px;
      font-weight: 300;
      padding: 0; }
      .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-list > .c-layout-footer-10-list-item {
        list-style-type: none;
        margin-bottom: 15px; }
        .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-list > .c-layout-footer-10-list-item:last-child {
          margin-bottom: 0; }
        .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-list > .c-layout-footer-10-list-item > a:hover {
          color: #7e7d7d;
          border-bottom: 1px solid #eee; }
  .c-layout-footer-10 .c-layout-footer-10-subfooter {
    display: table;
    padding: 35px 0; }
    .c-layout-footer-10 .c-layout-footer-10-subfooter > .c-layout-footer-10-subfooter-content,
    .c-layout-footer-10 .c-layout-footer-10-subfooter > .c-layout-footer-10-subfooter-social {
      display: table-cell;
      vertical-align: middle; }
    .c-layout-footer-10 .c-layout-footer-10-subfooter > .c-layout-footer-10-subfooter-content {
      font-size: 12px;
      font-weight: 300;
      color: #7c8387;
      letter-spacing: 0.5px; }
    .c-layout-footer-10 .c-layout-footer-10-subfooter > .c-layout-footer-10-subfooter-social {
      text-align: right; }
      .c-layout-footer-10 .c-layout-footer-10-subfooter > .c-layout-footer-10-subfooter-social > ul {
        padding: 0;
        display: block; }
        .c-layout-footer-10 .c-layout-footer-10-subfooter > .c-layout-footer-10-subfooter-social > ul > li {
          display: inline-block;
          margin: 0 0 0 10px;
          color: #a6a8a9; }
          .c-layout-footer-10 .c-layout-footer-10-subfooter > .c-layout-footer-10-subfooter-social > ul > li > .socicon-btn {
            border: none; }

@media (max-width: 991px) {
  .c-layout-footer-10 .c-layout-footer-10-content {
    margin-bottom: 50px; }
    .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-desc,
    .c-layout-footer-10 .c-layout-footer-10-content .c-layout-footer-10-list {
      margin-bottom: 40px; }
  .c-layout-footer-10 .c-layout-footer-10-subfooter {
    padding: 20px 15px; } }

.c-layout-footer-11 {
  padding-top: 100px; }
  .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container {
    display: table;
    width: 100%;
    margin-bottom: 100px; }
    .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-logo,
    .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-social,
    .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-powered {
      display: table-cell; }
    .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-logo {
      vertical-align: middle; }
    .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-social {
      text-align: center; }
      .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-social > ul {
        padding: 0; }
        .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-social > ul > li {
          list-style-type: none;
          display: inline-block; }
          .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-social > ul > li > .socicon-btn {
            border: none;
            color: #c5c7cb; }
    .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-powered {
      vertical-align: middle;
      text-align: right; }
  .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-subfooter {
    border-top: 1px solid #2d2e30;
    padding: 50px 0;
    text-align: center; }
    .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-subfooter > .c-layout-footer-subfooter-content {
      color: #5a5f64;
      font-size: 12px; }
      .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-subfooter > .c-layout-footer-subfooter-content > ul {
        padding: 0;
        margin: auto; }
        .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-subfooter > .c-layout-footer-subfooter-content > ul > li {
          font-size: 13px;
          list-style-type: none;
          display: inline-block;
          margin: 0 15px; }
          .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-subfooter > .c-layout-footer-subfooter-content > ul > li > a {
            color: #cbcfda; }

@media (max-width: 480px) {
  .c-layout-footer-11 {
    padding-top: 100px; }
    .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container {
      display: block; }
      .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-logo,
      .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-social,
      .c-layout-footer-11 .c-footer .c-layout-footer-content > .c-layout-footer-main-container > .c-layout-footer-powered {
        display: block;
        text-align: center; } }

.c-layout-go2top {
  display: inline-block;
  position: fixed;
  bottom: 20px;
  right: 10px;
  cursor: pointer;
  z-index: 200; }
  .c-layout-go2top > i {
    opacity: 0.5;
    filter: alpha(opacity=50);
    color: #89939e;
    font-size: 38px;
    font-weight: 300; }
  .c-layout-go2top:hover {
    opacity: 0.8;
    filter: alpha(opacity=80); }

.c-content-color-demo {
  border: 1px solid #eee;
  margin: 0 0 20px 0;
  cursor: pointer; }
  .c-content-color-demo .c-color-view {
    padding: 35px 10px;
    text-align: center;
    font-size: 18px; }
  .c-content-color-demo .c-color-info {
    border-top: 1px solid #eee;
    padding: 10px 10px;
    text-align: center; }

.c-content-box.c-size-sm {
  padding: 30px 0; }

.c-content-box.c-size-md {
  padding: 60px 0; }

.c-content-box.c-size-lg {
  padding: 80px 0; }

.c-content-box.c-size-xg {
  padding: 100px 0; }

.c-content-box.c-no-bottom-padding {
  padding-bottom: 0; }

.c-content-box.c-no-top-padding {
  padding-top: 0; }

.c-content-box.c-no-padding {
  padding: 0; }

.c-content-box.c-overflow-hide {
  overflow: hidden; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-box > .container-fluid {
    padding: 0 100px; }
  .c-content-box.c-size-sm {
    padding: 20px 0; }
  .c-content-box.c-size-md {
    padding: 30px 0; }
  .c-content-box.c-size-lg {
    padding: 40px 0; }
  .c-content-box.c-size-xg {
    padding: 60px 0; } }

.c-content-line-icon {
  background-image: url(/public/f218b30582dc43197ecae17bfca46deb.png);
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: cover; }
  .c-content-line-icon.c-white {
    background-image: url(/public/c825d71be0ba46a3cb15bab040082549.png); }
  .c-content-line-icon.c-icon-screen-chart {
    background-position: 0px -1300%; }
  .c-content-line-icon.c-icon-support {
    background-position: 0px -2500%; }
  .c-content-line-icon.c-icon-bulb {
    background-position: 0px 1200%; }
  .c-content-line-icon.c-icon-comment {
    background-position: 0px -300%; }
  .c-content-line-icon.c-icon-globe {
    background-position: 0px -2600%; }
  .c-content-line-icon.c-icon-sticker {
    background-position: 0px  2300%; }
  .c-content-line-icon.c-icon-md {
    width: 40px;
    height: 40px; }
  .c-content-line-icon.c-icon-sm {
    width: 30px;
    height: 30px; }
  .c-content-line-icon.c-icon-xs {
    width: 20px;
    height: 20px; }
  .c-content-line-icon.c-icon-1 {
    background-position: 0px 0%; }
  .c-content-line-icon.c-icon-2 {
    background-position: 0px 100%; }
  .c-content-line-icon.c-icon-3 {
    background-position: 0px 200%; }
  .c-content-line-icon.c-icon-4 {
    background-position: 0px 300%; }
  .c-content-line-icon.c-icon-5 {
    background-position: 0px 400%; }
  .c-content-line-icon.c-icon-6 {
    background-position: 0px 500%; }
  .c-content-line-icon.c-icon-7 {
    background-position: 0px 600%; }
  .c-content-line-icon.c-icon-8 {
    background-position: 0px 700%; }
  .c-content-line-icon.c-icon-9 {
    background-position: 0px 800%; }
  .c-content-line-icon.c-icon-10 {
    background-position: 0px 900%; }
  .c-content-line-icon.c-icon-11 {
    background-position: 0px 1000%; }
  .c-content-line-icon.c-icon-12 {
    background-position: 0px 1100%; }
  .c-content-line-icon.c-icon-13 {
    background-position: 0px 1200%; }
  .c-content-line-icon.c-icon-14 {
    background-position: 0px 1300%; }
  .c-content-line-icon.c-icon-15 {
    background-position: 0px 1400%; }
  .c-content-line-icon.c-icon-16 {
    background-position: 0px 1500%; }
  .c-content-line-icon.c-icon-17 {
    background-position: 0px 1600%; }
  .c-content-line-icon.c-icon-18 {
    background-position: 0px 1700%; }
  .c-content-line-icon.c-icon-19 {
    background-position: 0px 1800%; }
  .c-content-line-icon.c-icon-20 {
    background-position: 0px 1900%; }
  .c-content-line-icon.c-icon-21 {
    background-position: 0px 2000%; }
  .c-content-line-icon.c-icon-22 {
    background-position: 0px 2100%; }
  .c-content-line-icon.c-icon-23 {
    background-position: 0px 2200%; }
  .c-content-line-icon.c-icon-24 {
    background-position: 0px 2300%; }
  .c-content-line-icon.c-icon-25 {
    background-position: 0px 2400%; }
  .c-content-line-icon.c-icon-26 {
    background-position: 0px 2500%; }
  .c-content-line-icon.c-icon-27 {
    background-position: 0px 2600%; }
  .c-content-line-icon.c-icon-28 {
    background-position: 0px 2700%; }
  .c-content-line-icon.c-icon-29 {
    background-position: 0px 2800%; }
  .c-content-line-icon.c-icon-30 {
    background-position: 0px 2900%; }
  .c-content-line-icon.c-icon-31 {
    background-position: 0px 3000%; }
  .c-content-line-icon.c-icon-32 {
    background-position: 0px 3100%; }
  .c-content-line-icon.c-icon-33 {
    background-position: 0px 3200%; }
  .c-content-line-icon.c-icon-34 {
    background-position: 0px 3300%; }
  .c-content-line-icon.c-icon-35 {
    background-position: 0px 3400%; }
  .c-content-line-icon.c-icon-36 {
    background-position: 0px 3500%; }
  .c-content-line-icon.c-icon-37 {
    background-position: 0px 3600%; }
  .c-content-line-icon.c-icon-38 {
    background-position: 0px 3700%; }
  .c-content-line-icon.c-icon-39 {
    background-position: 0px 3800%; }
  .c-content-line-icon.c-icon-40 {
    background-position: 0px 3900%; }
  .c-content-line-icon.c-icon-41 {
    background-position: 0px 4000%; }
  .c-content-line-icon.c-icon-42 {
    background-position: 0px 4100%; }
  .c-content-line-icon.c-icon-43 {
    background-position: 0px 4200%; }
  .c-content-line-icon.c-icon-44 {
    background-position: 0px 4300%; }
  .c-content-line-icon.c-icon-45 {
    background-position: 0px 4400%; }
  .c-content-line-icon.c-icon-46 {
    background-position: 0px 4500%; }
  .c-content-line-icon.c-icon-47 {
    background-position: 0px 4600%; }
  .c-content-line-icon.c-icon-48 {
    background-position: 0px 4700%; }
  .c-content-line-icon.c-icon-49 {
    background-position: 0px 4800%; }
  .c-content-line-icon.c-icon-50 {
    background-position: 0px 4900%; }

.c-content-business-line-icon {
  background-image: url(/public/8f61b2e22ba92b1ef263a9c7276e9d39.png);
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: cover; }
  .c-content-business-line-icon.c-white {
    background-image: url(/public/901ac8b0d8fcdc2d82760bfbab8447ea.png); }
  .c-content-business-line-icon.c-business-icon-md {
    width: 40px;
    height: 40px; }
  .c-content-business-line-icon.c-business-icon-sm {
    width: 30px;
    height: 30px; }
  .c-content-business-line-icon.c-business-icon-xs {
    width: 20px;
    height: 20px; }
  .c-content-business-line-icon.c-business-icon-1 {
    background-position: 0px 0%; }
  .c-content-business-line-icon.c-business-icon-2 {
    background-position: 0px 100%; }
  .c-content-business-line-icon.c-business-icon-3 {
    background-position: 0px 200%; }
  .c-content-business-line-icon.c-business-icon-4 {
    background-position: 0px 300%; }
  .c-content-business-line-icon.c-business-icon-5 {
    background-position: 0px 400%; }
  .c-content-business-line-icon.c-business-icon-6 {
    background-position: 0px 500%; }
  .c-content-business-line-icon.c-business-icon-7 {
    background-position: 0px 600%; }
  .c-content-business-line-icon.c-business-icon-8 {
    background-position: 0px 700%; }
  .c-content-business-line-icon.c-business-icon-9 {
    background-position: 0px 800%; }
  .c-content-business-line-icon.c-business-icon-10 {
    background-position: 0px 900%; }
  .c-content-business-line-icon.c-business-icon-11 {
    background-position: 0px 1000%; }
  .c-content-business-line-icon.c-business-icon-12 {
    background-position: 0px 1100%; }
  .c-content-business-line-icon.c-business-icon-13 {
    background-position: 0px 1200%; }
  .c-content-business-line-icon.c-business-icon-14 {
    background-position: 0px 1300%; }
  .c-content-business-line-icon.c-business-icon-15 {
    background-position: 0px 1400%; }
  .c-content-business-line-icon.c-business-icon-16 {
    background-position: 0px 1500%; }
  .c-content-business-line-icon.c-business-icon-17 {
    background-position: 0px 1600%; }
  .c-content-business-line-icon.c-business-icon-18 {
    background-position: 0px 1700%; }
  .c-content-business-line-icon.c-business-icon-19 {
    background-position: 0px 1800%; }
  .c-content-business-line-icon.c-business-icon-20 {
    background-position: 0px 1900%; }
  .c-content-business-line-icon.c-business-icon-21 {
    background-position: 0px 2000%; }
  .c-content-business-line-icon.c-business-icon-22 {
    background-position: 0px 2100%; }
  .c-content-business-line-icon.c-business-icon-23 {
    background-position: 0px 2200%; }
  .c-content-business-line-icon.c-business-icon-24 {
    background-position: 0px 2300%; }
  .c-content-business-line-icon.c-business-icon-25 {
    background-position: 0px 2400%; }
  .c-content-business-line-icon.c-business-icon-26 {
    background-position: 0px 2500%; }
  .c-content-business-line-icon.c-business-icon-27 {
    background-position: 0px 2600%; }
  .c-content-business-line-icon.c-business-icon-28 {
    background-position: 0px 2700%; }
  .c-content-business-line-icon.c-business-icon-29 {
    background-position: 0px 2800%; }
  .c-content-business-line-icon.c-business-icon-30 {
    background-position: 0px 2900%; }
  .c-content-business-line-icon.c-business-icon-31 {
    background-position: 0px 3000%; }
  .c-content-business-line-icon.c-business-icon-32 {
    background-position: 0px 3100%; }
  .c-content-business-line-icon.c-business-icon-33 {
    background-position: 0px 3200%; }
  .c-content-business-line-icon.c-business-icon-34 {
    background-position: 0px 3300%; }
  .c-content-business-line-icon.c-business-icon-35 {
    background-position: 0px 3400%; }
  .c-content-business-line-icon.c-business-icon-36 {
    background-position: 0px 3500%; }

.c-content-v-center .c-wrapper {
  width: 100%;
  height: 100%;
  display: table; }
  .c-content-v-center .c-wrapper .c-body {
    display: table-cell;
    vertical-align: middle; }

.c-content-list-1 {
  padding: 0;
  margin: 20px 0; }
  .c-content-list-1 > li {
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    color: #5c6873;
    margin-bottom: 7px; }
  .c-content-list-1 > li:before {
    content: '';
    width: 21px;
    height: 2px;
    float: left;
    margin: 9px 15px 0 0;
    background: #ddd; }
  .c-content-list-1.c-separator-dot > li:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 20px;
    background: #ddd;
    margin-right: 10px;
    margin-top: 8px;
    opacity: 0.6;
    filter: alpha(opacity=60); }
  .c-content-list-1.c-separator-dot.c-square > li:before {
    border-radius: 0; }

.c-content-iconlist-1 {
  padding: 0; }
  .c-content-iconlist-1 > li {
    list-style: none;
    display: inline-block;
    padding: 2px; }
    .c-content-iconlist-1 > li:last-child {
      padding-right: 0; }
    .c-content-iconlist-1 > li > a {
      border: 0; }
    .c-content-iconlist-1 > li i {
      position: relative;
      background: #f2f2f2;
      text-align: center;
      font-size: 20px;
      color: #cccccc;
      padding: 13px;
      width: 45px;
      height: 45px; }
    .c-content-iconlist-1 > li:hover > a {
      border: 0; }
    .c-content-iconlist-1 > li:hover i {
      border: 0; }

.c-content-list-adjusted {
  padding: 0;
  margin: 0;
  list-style: none; }
  .c-content-list-adjusted > li {
    display: table-cell;
    width: 1%;
    padding-right: 5px; }
    .c-content-list-adjusted > li:last-child {
      padding-right: 0; }

.c-content-pagination {
  display: inline-block;
  padding: 0;
  margin: 0; }
  .c-content-pagination > li {
    list-style: none;
    display: inline-block; }
    .c-content-pagination > li > span,
    .c-content-pagination > li > a {
      width: 40px;
      height: 40px;
      text-align: center;
      display: inline-block;
      font-size: 17px;
      color: #5c6873;
      font-weight: 400;
      padding: 7px 4px 6px 4px;
      border-radius: 40px;
      border: 1px solid #eeeeee; }
    .c-content-pagination > li.c-space > span {
      border-radius: 0;
      border: 0; }
  .c-content-pagination.c-square > li > span,
  .c-content-pagination.c-square > li > a {
    border-radius: 0; }

.c-content-overlay {
  overflow: hidden;
  position: relative; }
  .c-content-overlay .c-overlay-object {
    position: relative;
    z-index: 1; }
  .c-content-overlay .c-overlay-wrapper {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    transition: all 0.2s;
    background: rgba(0, 0, 0, 0.4); }
    .c-content-overlay .c-overlay-wrapper:after {
      content: "";
      display: table;
      clear: both; }
    .c-content-overlay .c-overlay-wrapper:before {
      display: inline-block;
      content: '';
      vertical-align: middle;
      height: 100%; }
    .c-content-overlay .c-overlay-wrapper .c-overlay-content {
      text-align: center;
      display: inline-block;
      vertical-align: middle;
      padding: 0;
      height: auto;
      width: 95%; }
      .c-content-overlay .c-overlay-wrapper .c-overlay-content i {
        display: inline-block;
        width: 44px;
        height: 44px;
        border-radius: 40px;
        text-align: center;
        padding: 14px 6px 8px 6px;
        color: #fff;
        font-size: 16px;
        background: #000000;
        opacity: 0.7;
        filter: alpha(opacity=70);
        margin: 0 5px; }
        .c-content-overlay .c-overlay-wrapper .c-overlay-content i:hover {
          opacity: 1;
          filter: alpha(opacity=100); }
    .c-content-overlay .c-overlay-wrapper.c-overlay-padding {
      left: 10px;
      width: calc(100% - 20px);
      height: calc(100% - 20px); }
  .c-content-overlay:hover {
    cursor: pointer; }
    .c-content-overlay:hover .c-overlay-wrapper {
      top: 0;
      opacity: 1;
      filter: alpha(opacity=100); }
      .c-content-overlay:hover .c-overlay-wrapper.c-overlay-padding {
        top: 10px; }
  .c-content-overlay .c-overlay-border {
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    position: absolute;
    z-index: 1; }

.c-content-loader {
  display: none;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -30px;
  background: #ccc;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  -webkit-animation: c-scaleout 1.0s infinite ease-in-out;
  animation: c-scaleout 1.0s infinite ease-in-out; }

@-webkit-keyframes c-scaleout {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    opacity: 0; } }

@keyframes c-scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0; } }

.c-content-panel {
  padding: 0;
  border: 1px solid #f1f1f1;
  margin-bottom: 30px; }
  .c-content-panel .c-label {
    display: inline-block;
    position: absolute;
    background: #eee;
    padding: 2px 6px;
    font-size: 14px;
    font-weight: 500;
    color: #565d66; }
  .c-content-panel .c-body {
    padding: 40px 20px 20px 20px; }

.c-content-ver-nav .c-menu {
  margin: 0;
  padding: 0; }
  .c-content-ver-nav .c-menu > li {
    list-style: none;
    padding: 7px 0;
    border-bottom: 1px solid #f2f2f2; }
    .c-content-ver-nav .c-menu > li > a {
      font-weight: 400; }
      .c-content-ver-nav .c-menu > li > a > .badge {
        float: right; }
    .c-content-ver-nav .c-menu > li:before {
      color: #5c6873;
      content: "\F105";
      font-family: FontAwesome;
      font-weight: 100;
      width: 12px;
      height: 12px;
      font-size: 14px;
      float: left;
      margin: 2px 5px 0 0; }
  .c-content-ver-nav .c-menu.c-arrow-dot > li:before {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    margin: 9px 12px 0 0;
    content: '';
    opacity: 0.6;
    filter: alpha(opacity=60);
    background: #5c6873; }
  .c-content-ver-nav .c-menu.c-arrow-dot.c-square > li:before {
    border-radius: 0; }

.c-checkbox {
  position: relative;
  /* handling click events */
  /* when checkbox is checked */ }
  .c-checkbox.c-checkbox-inline {
    display: inline-block; }
  .form-inline .c-checkbox.c-checkbox-inline {
    margin-right: 20px;
    top: 3px; }
  .c-checkbox input[type=checkbox] {
    visibility: hidden;
    position: absolute; }
  .c-checkbox label {
    cursor: pointer;
    padding-left: 30px; }
  .c-checkbox label > span {
    display: block;
    position: absolute;
    left: 0;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s; }
  .c-checkbox label > span.inc {
    background: #fff;
    left: -10px;
    top: -10px;
    height: 40px;
    width: 40px;
    opacity: 0;
    border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important; }
  .c-checkbox label > .box {
    top: 1px;
    border: 2px solid #d0d7de;
    height: 20px;
    width: 20px;
    z-index: 5;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s; }
    .ie .c-checkbox label > .box {
      top: 2px; }
  .c-checkbox label > .check {
    top: -2px;
    left: 6px;
    width: 10px;
    height: 20px;
    border: 2px solid #d0d7de;
    border-top: none;
    border-left: none;
    opacity: 0;
    z-index: 5;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s; }
  .c-checkbox label > span.inc {
    -webkit-animation: growCircle 0.3s ease;
    -moz-animation: growCircle 0.3s ease;
    animation: growCircle 0.3s ease; }
  .c-checkbox input[type=checkbox]:checked ~ label > .box {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-180deg);
    -moz-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg); }
  .c-checkbox input[type=checkbox]:checked ~ label > .check {
    opacity: 1;
    -webkit-transform: scale(1) rotate(45deg);
    -moz-transform: scale(1) rotate(45deg);
    transform: scale(1) rotate(45deg); }
  .c-checkbox input[type=checkbox]:disabled ~ label,
  .c-checkbox input[type=checkbox][disabled] ~ label {
    cursor: not-allowed;
    opacity: 0.7;
    filter: alpha(opacity=70); }
  .c-checkbox input[type=checkbox]:disabled ~ label > .box,
  .c-checkbox input[type=checkbox][disabled] ~ label > .box {
    cursor: not-allowed;
    opacity: 0.7;
    filter: alpha(opacity=70); }
  .c-checkbox input[type=checkbox]:disabled:checked ~ label > .check,
  .c-checkbox input[type=checkbox][disabled]:checked ~ label > .check {
    cursor: not-allowed;
    opacity: 0.7;
    filter: alpha(opacity=70); }
  .c-checkbox.has-error label {
    color: #e7505a; }
  .c-checkbox.has-error label > .box {
    border-color: #e7505a; }
  .c-checkbox.has-error label > .check {
    border-color: #e7505a; }
  .c-checkbox.has-info label {
    color: #4eabe6; }
  .c-checkbox.has-info label > .box {
    border-color: #4eabe6; }
  .c-checkbox.has-info label > .check {
    border-color: #4eabe6; }
  .c-checkbox.has-success label {
    color: #5dc09c; }
  .c-checkbox.has-success label > .box {
    border-color: #5dc09c; }
  .c-checkbox.has-success label > .check {
    border-color: #5dc09c; }
  .c-checkbox.has-warning label {
    color: #c8d046; }
  .c-checkbox.has-warning label > .box {
    border-color: #c8d046; }
  .c-checkbox.has-warning label > .check {
    border-color: #c8d046; }

.c-form-checkboxes.has-error > label {
  color: #e7505a; }

.c-form-checkboxes.has-info > label {
  color: #4eabe6; }

.c-form-checkboxes.has-success > label {
  color: #5dc09c; }

.c-form-checkboxes.has-warning > label {
  color: #c8d046; }

.c-checkbox-list {
  margin: 10px 0; }
  .form-horizontal .c-checkbox-list {
    margin-top: 0px; }
  .c-checkbox-list .c-checkbox {
    display: block;
    margin-bottom: 10px; }

.c-checkbox-inline {
  margin: 10px 0; }
  .form-horizontal .c-checkbox-inline {
    margin-top: 8px; }
  .c-checkbox-inline .c-checkbox {
    display: inline-block;
    margin-right: 20px; }
    .c-checkbox-inline .c-checkbox:last-child {
      margin-right: 0; }

/* bubble animation */
@-webkit-keyframes growCircle {
  0%, 100% {
    -webkit-transform: scale(0);
    opacity: 1; }
  70% {
    background: #eee;
    -webkit-transform: scale(1.25); } }

@-moz-keyframes growCircle {
  0%, 100% {
    -moz-transform: scale(0);
    opacity: 1; }
  70% {
    background: #eee;
    -moz-transform: scale(1.25); } }

@keyframes growCircle {
  0%, 100% {
    transform: scale(0);
    opacity: 1; }
  70% {
    background: #eee;
    transform: scale(1.25); } }

.c-radio {
  position: relative;
  /* handling click events */
  /* when radio is checked */ }
  .c-radio input[type=radio] {
    visibility: hidden;
    position: absolute; }
  .c-radio label {
    cursor: pointer;
    padding-left: 30px; }
  .c-radio label > span {
    display: block;
    position: absolute;
    left: 0;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s; }
  .c-radio label > span.inc {
    background: #fff;
    left: -10px;
    top: -10px;
    height: 40px;
    width: 40px;
    opacity: 0;
    border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important; }
  .c-radio label > .box {
    top: 1px;
    border: 2px solid #d0d7de;
    height: 20px;
    width: 20px;
    border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    z-index: 5; }
    .ie .c-radio label > .box {
      top: 2px; }
  .c-radio label > .check {
    top: 6px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: #d0d7de;
    opacity: 0;
    z-index: 6;
    display: block;
    border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0); }
  .c-radio label > span.inc {
    -webkit-animation: growCircleRadio 0.3s ease;
    -moz-animation: growCircleRadio 0.3s ease;
    animation: growCircleRadio 0.3s ease; }
  .c-radio input[type=radio]:checked ~ label > .check {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1); }
  .c-radio input[type=radio]:disabled ~ label,
  .c-radio input[type=radio][disabled] ~ label {
    cursor: not-allowed;
    opacity: 0.7;
    filter: alpha(opacity=70); }
  .c-radio input[type=radio]:disabled ~ label > .box,
  .c-radio input[type=radio][disabled] ~ label > .box {
    cursor: not-allowed;
    opacity: 0.7;
    filter: alpha(opacity=70); }
  .c-radio input[type=radio]:disabled:checked ~ label > .check,
  .c-radio input[type=radio][disabled]:checked ~ label > .check {
    cursor: not-allowed;
    opacity: 0.7;
    filter: alpha(opacity=70); }
  .c-radio.has-error label {
    color: #e7505a; }
  .c-radio.has-error label > .box {
    border-color: #e7505a; }
  .c-radio.has-error label > .check {
    background: #e7505a; }
  .c-radio.has-info label {
    color: #4eabe6; }
  .c-radio.has-info label > .box {
    border-color: #4eabe6; }
  .c-radio.has-info label > .check {
    background: #4eabe6; }
  .c-radio.has-success label {
    color: #5dc09c; }
  .c-radio.has-success label > .box {
    border-color: #5dc09c; }
  .c-radio.has-success label > .check {
    background: #5dc09c; }
  .c-radio.has-warning label {
    color: #c8d046; }
  .c-radio.has-warning label > .box {
    border-color: #c8d046; }
  .c-radio.has-warning label > .check {
    background: #c8d046; }

.form-c-radios.has-error > label {
  color: #e7505a; }

.form-c-radios.has-info > label {
  color: #4eabe6; }

.form-c-radios.has-success > label {
  color: #5dc09c; }

.form-c-radios.has-warning > label {
  color: #c8d046; }

.c-radio-list {
  margin: 10px 0; }
  .form-horizontal .c-radio-list {
    margin-top: 0px; }
  .c-radio-list .c-radio {
    display: block;
    margin-bottom: 10px; }

.c-radio-inline {
  margin: 10px 0; }
  .form-horizontal .c-radio-inline {
    margin-top: 8px; }
  .c-radio-inline .c-radio {
    display: inline-block;
    margin-right: 20px; }
    .c-radio-inline .c-radio:last-child {
      margin-right: 0; }

/* bubble animation */
@-webkit-keyframes growCircleRadio {
  0%, 100% {
    -webkit-transform: scale(0);
    opacity: 1; }
  70% {
    background: #eee;
    -webkit-transform: scale(1.25); } }

@-moz-keyframes growCircleRadio {
  0%, 100% {
    -moz-transform: scale(0);
    opacity: 1; }
  70% {
    background: #eee;
    -moz-transform: scale(1.25); } }

@keyframes growCircleRadio {
  0%, 100% {
    transform: scale(0);
    opacity: 1; }
  70% {
    background: #eee;
    transform: scale(1.25); } }

.c-content-toggler {
  padding: 5px 7px;
  display: none;
  outline: none;
  background: #f8f9fa; }
  .c-content-toggler > .c-line {
    width: 15px;
    display: block;
    height: 2px;
    padding: 0px;
    margin: 3px 0;
    background-color: #9fadba; }
    .c-content-toggler > .c-line:first-child {
      margin-top: 3px; }
  .c-content-toggler:active, .c-content-toggler:focus, .c-content-toggler:hover {
    background: #e9ecef; }
    .c-content-toggler:active > .c-line, .c-content-toggler:focus > .c-line, .c-content-toggler:hover > .c-line {
      background-color: #90a0b0; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-toggler {
    display: inline-block; } }

.c-content-title-1 > .c-line-center {
  width: 30px;
  height: 3px;
  background-color: #32c5d2;
  margin: 0 auto 30px auto; }

.c-content-title-1 > .c-line-right,
.c-content-title-1 > .c-line-left {
  width: 30px;
  height: 3px;
  background-color: #32c5d2;
  margin: 0 0 30px 0; }

.c-content-title-1 > .c-line-right {
  margin: 0 0 30px auto; }

.c-content-title-1 > h3 {
  font-size: 28px;
  color: #3f444a;
  font-weight: 500;
  margin: 0 0 30px 0; }
  .c-content-title-1 > h3 > i {
    font-size: 22px;
    color: #88909a; }
  .c-content-title-1 > h3.c-font-uppercase {
    font-size: 30px; }

.c-content-title-1 > p {
  font-size: 17px;
  font-weight: 400;
  color: #5c6873;
  margin: 30px 0; }
  .c-content-title-1 > p.c-font-uppercase {
    font-size: 15px; }

.c-content-title-1 > hr {
  margin-bottom: 30px; }

.c-content-title-1.c-title-md > .c-line-left,
.c-content-title-1.c-title-md > .c-line-center {
  margin-bottom: 20px; }

.c-content-title-1.c-title-md > h3 {
  font-size: 22px;
  margin-bottom: 22px; }
  .c-content-title-1.c-title-md > h3 > i {
    font-size: 18px;
    color: #88909a; }
  .c-content-title-1.c-title-md > h3.c-font-uppercase {
    font-size: 20px; }

.c-content-title-1.c-title-md > p {
  font-size: 17px;
  margin: 20px 0; }
  .c-content-title-1.c-title-md > p.c-font-uppercase {
    font-size: 14px; }

.c-content-title-1.c-title-sm > .c-line-left,
.c-content-title-1.c-title-sm > .c-line-center {
  margin-bottom: 15px; }

.c-content-title-1.c-title-sm > h3 {
  font-size: 18px;
  margin-bottom: 15px; }
  .c-content-title-1.c-title-sm > h3 > i {
    font-size: 16px;
    color: #88909a; }
  .c-content-title-1.c-title-sm > h3.c-font-uppercase {
    font-size: 14px; }

.c-content-title-1.c-title-sm > p {
  font-size: 16px;
  margin: 15px 0; }
  .c-content-title-1.c-title-sm > p.c-font-uppercase {
    font-size: 14px; }

.c-content-title-1.c-opt-1 > h3 {
  font-size: 32px;
  color: #343a3d; }

.c-content-title-1.c-opt-1 > p {
  letter-spacing: 0.5px;
  color: #a0a6ab; }

.c-content-title-2 {
  margin-bottom: 20px; }
  .c-content-title-2 > .c-line {
    height: 2px;
    background-color: #88909a;
    opacity: 0.8;
    filter: alpha(opacity=80); }
    .c-content-title-2 > .c-line.c-line-short {
      width: 180px;
      margin: 0 auto; }
    .c-content-title-2 > .c-line.c-dot {
      height: 1px;
      position: relative; }
      .c-content-title-2 > .c-line.c-dot:after {
        background-color: #88909a;
        left: 50%;
        display: inline-block;
        position: absolute;
        content: '';
        width: 10px;
        height: 10px;
        top: -4px;
        margin-left: -5px;
        border-radius: 10px !important; }
      .c-content-title-2 > .c-line.c-dot.c-dot-left:after {
        left: 0; }
      .c-content-title-2 > .c-line.c-dot.c-dot-right:after {
        left: auto;
        right: 0; }
      .c-content-title-2 > .c-line.c-dot.c-dot-square:after {
        border-radius: 0 !important; }
  .c-content-title-2 > h3 {
    font-size: 30px;
    color: #3f444a;
    font-weight: 500;
    margin: 0 0 30px 0; }
    .c-content-title-2 > h3 > i {
      font-size: 22px;
      color: #88909a; }
  .c-content-title-2 > p {
    font-size: 17px;
    font-weight: 400;
    color: #5c6873;
    margin: 30px 0; }
    .c-content-title-2 > p.c-font-uppercase {
      font-size: 15px; }
  .c-content-title-2 > hr {
    margin-bottom: 30px; }
  .c-content-title-2.c-title-md > .c-line-left,
  .c-content-title-2.c-title-md > .c-line-center {
    margin-bottom: 20px; }
  .c-content-title-2.c-title-md > h3 {
    font-size: 22px;
    margin-bottom: 22px; }
    .c-content-title-2.c-title-md > h3 > i {
      font-size: 18px;
      color: #88909a; }
    .c-content-title-2.c-title-md > h3.c-font-uppercase {
      font-size: 20px; }
  .c-content-title-2.c-title-md > p {
    font-size: 17px;
    margin: 20px 0; }
    .c-content-title-2.c-title-md > p.c-font-uppercase {
      font-size: 14px; }
  .c-content-title-2.c-title-sm > .c-line-left,
  .c-content-title-2.c-title-sm > .c-line-center {
    margin-bottom: 15px; }
  .c-content-title-2.c-title-sm > h3 {
    font-size: 18px;
    margin-bottom: 15px; }
    .c-content-title-2.c-title-sm > h3 > i {
      font-size: px;
      color: #88909a; }
    .c-content-title-2.c-title-sm > h3.c-font-uppercase {
      font-size: 14px; }
  .c-content-title-2.c-title-sm > p {
    font-size: 16px;
    margin: 15px 0; }
    .c-content-title-2.c-title-sm > p.c-font-uppercase {
      font-size: 14px; }

.c-content-title-3 {
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 4px solid #88909a; }
  .c-content-title-3 > h3 {
    font-size: 28px;
    color: #3f444a;
    font-weight: 500;
    margin: 0 0 15px 0; }
    .c-content-title-3 > h3 > i {
      font-size: 22px;
      color: #88909a; }
    .c-content-title-3 > h3.c-font-uppercase {
      font-size: 30px; }
  .c-content-title-3 > p {
    font-size: 17px;
    font-weight: 400;
    color: #5c6873;
    margin: 15px 0 0 0; }
    .c-content-title-3 > p.c-font-uppercase {
      font-size: 15px; }
  .c-content-title-3.c-right {
    padding-left: 0px;
    padding-right: 20px;
    border-left: 0;
    border-right: 4px solid #88909a; }
    .c-content-title-3.c-right > h3 {
      text-align: right; }
    .c-content-title-3.c-right > p {
      text-align: right; }
  .c-content-title-3.c-title-md > .c-line-left,
  .c-content-title-3.c-title-md > .c-line-center {
    margin-bottom: 15px; }
  .c-content-title-3.c-title-md > h3 {
    font-size: 22px;
    margin-bottom: 22px; }
    .c-content-title-3.c-title-md > h3 > i {
      font-size: 18px;
      color: #88909a; }
    .c-content-title-3.c-title-md > h3.c-font-uppercase {
      font-size: 20px; }
  .c-content-title-3.c-title-md > p {
    font-size: 17px;
    margin: 15px 0; }
    .c-content-title-3.c-title-md > p.c-font-uppercase {
      font-size: 14px; }
  .c-content-title-3.c-title-sm > .c-line-left,
  .c-content-title-3.c-title-sm > .c-line-center {
    margin-bottom: 10px; }
  .c-content-title-3.c-title-sm > h3 {
    font-size: 18px;
    margin-bottom: 10px; }
    .c-content-title-3.c-title-sm > h3 > i {
      font-size: px;
      color: #88909a; }
    .c-content-title-3.c-title-sm > h3.c-font-uppercase {
      font-size: 14px; }
  .c-content-title-3.c-title-sm > p {
    font-size: 16px;
    margin: 10px 0; }
    .c-content-title-3.c-title-sm > p.c-font-uppercase {
      font-size: 14px; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-title-3 {
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: 4px solid #88909a; }
    .c-content-title-3 > h3 {
      font-size: 22px;
      margin-bottom: 10px; }
      .c-content-title-3 > h3 > i {
        font-size: 20px; }
      .c-content-title-3 > h3.c-font-uppercase {
        font-size: 20px; }
    .c-content-title-3 > p {
      font-size: 17px;
      font-weight: 400;
      color: #5c6873;
      margin: 15px 0 0 0; }
      .c-content-title-3 > p.c-font-uppercase {
        font-size: 15px; }
    .c-content-title-3.c-right {
      padding-left: 0px;
      padding-right: 20px;
      border-left: 0;
      border-right: 4px solid #88909a; }
      .c-content-title-3.c-right > h3 {
        text-align: right; }
      .c-content-title-3.c-right > p {
        text-align: right; }
    .c-content-title-3.c-title-md > .c-line-left,
    .c-content-title-3.c-title-md > .c-line-center {
      margin-bottom: 15px; }
    .c-content-title-3.c-title-md > h3 {
      font-size: 22px;
      margin-bottom: 22px; }
      .c-content-title-3.c-title-md > h3 > i {
        font-size: 18px;
        color: #88909a; }
      .c-content-title-3.c-title-md > h3.c-font-uppercase {
        font-size: 20px; }
    .c-content-title-3.c-title-md > p {
      font-size: 17px;
      margin: 15px 0; }
      .c-content-title-3.c-title-md > p.c-font-uppercase {
        font-size: 14px; }
    .c-content-title-3.c-title-sm > .c-line-left,
    .c-content-title-3.c-title-sm > .c-line-center {
      margin-bottom: 10px; }
    .c-content-title-3.c-title-sm > h3 {
      font-size: 18px;
      margin-bottom: 10px; }
      .c-content-title-3.c-title-sm > h3 > i {
        font-size: px;
        color: #88909a; }
      .c-content-title-3.c-title-sm > h3.c-font-uppercase {
        font-size: 14px; }
    .c-content-title-3.c-title-sm > p {
      font-size: 16px;
      margin: 10px 0; }
      .c-content-title-3.c-title-sm > p.c-font-uppercase {
        font-size: 14px; } }

.c-content-title-4 {
  margin-bottom: 50px; }
  .c-content-title-4 > h3 {
    font-size: 28px;
    color: #3f444a;
    font-weight: 500;
    margin: 0 0 15px 0; }
    .c-content-title-4 > h3 > i {
      font-size: 22px;
      color: #88909a; }
    .c-content-title-4 > h3.c-font-uppercase {
      font-size: 30px; }
    .c-content-title-4 > h3.c-line-strike {
      position: relative;
      z-index: 1; }
      .c-content-title-4 > h3.c-line-strike:before {
        overflow: hidden;
        border-top: 1px solid #d0d7de;
        content: "";
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: -1; }
      .c-content-title-4 > h3.c-line-strike span {
        padding: 0 20px; }
  .c-content-title-4 > p {
    font-size: 17px;
    font-weight: 400;
    color: #5c6873;
    margin: 15px 0 0 0; }
    .c-content-title-4 > p.c-font-uppercase {
      font-size: 15px; }
  .c-content-title-4.c-right > h3 {
    text-align: right; }
  .c-content-title-4.c-right > p {
    text-align: right; }
  .c-content-title-4.c-title-md > .c-line-left,
  .c-content-title-4.c-title-md > .c-line-center {
    margin-bottom: 15px; }
  .c-content-title-4.c-title-md > h3 {
    font-size: 22px;
    margin-bottom: 22px; }
    .c-content-title-4.c-title-md > h3 > i {
      font-size: 18px;
      color: #88909a; }
    .c-content-title-4.c-title-md > h3.c-font-uppercase {
      font-size: 20px; }
  .c-content-title-4.c-title-md > p {
    font-size: 17px;
    margin: 15px 0; }
    .c-content-title-4.c-title-md > p.c-font-uppercase {
      font-size: 14px; }
  .c-content-title-4.c-title-sm > .c-line-left,
  .c-content-title-4.c-title-sm > .c-line-center {
    margin-bottom: 10px; }
  .c-content-title-4.c-title-sm > h3 {
    font-size: 18px;
    margin-bottom: 10px; }
    .c-content-title-4.c-title-sm > h3 > i {
      font-size: px;
      color: #88909a; }
    .c-content-title-4.c-title-sm > h3.c-font-uppercase {
      font-size: 14px; }
  .c-content-title-4.c-title-sm > p {
    font-size: 16px;
    margin: 10px 0; }
    .c-content-title-4.c-title-sm > p.c-font-uppercase {
      font-size: 14px; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-title-4 {
    margin-bottom: 10px; }
    .c-content-title-4 > h3 {
      font-size: 22px;
      margin-bottom: 10px; }
      .c-content-title-4 > h3 > i {
        font-size: 20px; }
      .c-content-title-4 > h3.c-font-uppercase {
        font-size: 20px; }
    .c-content-title-4 > p {
      font-size: 17px;
      font-weight: 400;
      color: #5c6873;
      margin: 15px 0 0 0; }
      .c-content-title-4 > p.c-font-uppercase {
        font-size: 15px; }
    .c-content-title-4.c-right > h3 {
      text-align: right; }
    .c-content-title-4.c-right > p {
      text-align: right; }
    .c-content-title-4.c-title-md > .c-line-left,
    .c-content-title-4.c-title-md > .c-line-center {
      margin-bottom: 15px; }
    .c-content-title-4.c-title-md > h3 {
      font-size: 22px;
      margin-bottom: 22px; }
      .c-content-title-4.c-title-md > h3 > i {
        font-size: 18px;
        color: #88909a; }
      .c-content-title-4.c-title-md > h3.c-font-uppercase {
        font-size: 20px; }
    .c-content-title-4.c-title-md > p {
      font-size: 17px;
      margin: 15px 0; }
      .c-content-title-4.c-title-md > p.c-font-uppercase {
        font-size: 14px; }
    .c-content-title-4.c-title-sm > .c-line-left,
    .c-content-title-4.c-title-sm > .c-line-center {
      margin-bottom: 10px; }
    .c-content-title-4.c-title-sm > h3 {
      font-size: 18px;
      margin-bottom: 10px; }
      .c-content-title-4.c-title-sm > h3 > i {
        font-size: px;
        color: #88909a; }
      .c-content-title-4.c-title-sm > h3.c-font-uppercase {
        font-size: 14px; }
    .c-content-title-4.c-title-sm > p {
      font-size: 16px;
      margin: 10px 0; }
      .c-content-title-4.c-title-sm > p.c-font-uppercase {
        font-size: 14px; } }

.c-content-divider {
  display: block;
  height: 2px;
  background: #3f444a;
  margin: 20px 0;
  position: relative; }
  .c-content-divider > i {
    color: #3f444a;
    left: 50%;
    display: inline-block;
    position: absolute;
    width: 34px;
    height: 34px;
    text-align: center;
    top: -16px;
    font-size: 18px;
    vertical-align: middle; }
    .c-content-divider > i.c-rounded {
      border-radius: 100%; }
    .c-content-divider > i.c-square {
      border-radius: 34px; }
    .c-content-divider > i.icon-dot {
      padding: 0;
      width: 14px;
      height: 14px;
      top: -6px;
      background: #3f444a;
      border-radius: 14px; }
      .c-content-divider > i.icon-dot.c-square {
        border-radius: 0; }
  .c-content-divider > span {
    display: block;
    background: #fff;
    padding: 5px 7px;
    width: auto;
    position: relative;
    top: -18px;
    margin: 0 auto; }
  .c-content-divider.c-left {
    margin-left: 25px; }
    .c-content-divider.c-left > i {
      left: -25px; }
  .c-content-divider.c-right {
    margin-right: 25px; }
    .c-content-divider.c-right > i {
      left: auto;
      right: -25px; }
  .c-content-divider.c-icon-bg > i {
    padding-top: 8px;
    width: 35px;
    height: 35px;
    top: -17px;
    border-radius: 35px;
    background: #3f444a; }
  .c-content-divider.c-icon-bg.c-left {
    margin-left: 45px; }
    .c-content-divider.c-icon-bg.c-left > i {
      left: -45px; }
  .c-content-divider.c-icon-bg.c-right {
    margin-right: 45px; }
    .c-content-divider.c-icon-bg.c-right > i {
      left: auto;
      right: -45px; }
  .c-content-divider.c-divider-sm {
    height: 1px; }
    .c-content-divider.c-divider-sm > .icon-dot {
      width: 10px;
      height: 10px;
      top: -4px;
      background: #3f444a;
      border-radius: 10px; }
      .c-content-divider.c-divider-sm > .icon-dot.c-square {
        border-radius: 0; }

.c-content-label {
  padding: 4px 10px 2px 10px;
  color: #ffffff;
  background-color: #32c5d2;
  font-weight: 400;
  font-size: 16px;
  display: inline-block; }
  .c-content-label.c-font-uppercase {
    font-size: 14px; }
  .c-content-label.c-label-sm {
    font-size: 13px;
    padding: 6px 12px 4px 12px; }
    .c-content-label.c-label-sm.c-font-uppercase {
      font-size: 14px; }
  .c-content-label.c-label-lg {
    font-size: 18px;
    padding: 6px 14px 4px 14px; }
    .c-content-label.c-label-lg.c-font-uppercase {
      font-size: 20px; }

.c-content-testimonials-1 .c-testimonial {
  max-width: 600px;
  margin: 0 auto;
  text-align: center; }
  .c-content-testimonials-1 .c-testimonial > p {
    margin: 0 0 20px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
    text-align: center; }
  .c-content-testimonials-1 .c-testimonial > h3 {
    margin: 0 0 20px 0;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px; }
    .c-content-testimonials-1 .c-testimonial > h3 > span {
      font-weight: 600; }

.c-content-testimonials-1.c-option-2 .c-testimonial > p {
  color: #3f444a; }

.c-content-testimonials-1.c-option-2 .c-testimonial > h3 {
  color: #5c6873; }

.c-content-testimonials-1 .owl-carousel:not(.c-theme) .owl-controls .owl-pagination .owl-page span {
  background: #e1e1e1; }

.c-content-testimonials-1 .owl-carousel:not(.c-theme) .owl-controls .owl-pagination .owl-page.active span {
  background: #fff; }

.c-content-testimonial-2 {
  background: #fff;
  padding: 50px 30px 50px 30px; }
  .c-content-testimonial-2 .c-testimonial {
    font-size: 30px;
    line-height: 35px;
    font-weight: 300;
    color: #3f444a;
    margin: 30px 0 40px 0; }
  .c-content-testimonial-2 .c-author {
    bottom: 0;
    left: 0; }
    .c-content-testimonial-2 .c-author > .c-name {
      display: inline-block;
      font-size: 16px;
      color: #5c6873;
      font-weight: 400;
      margin: 6px 0 0 0; }
    .c-content-testimonial-2 .c-author > .c-portrait {
      background-size: cover;
      width: 55px;
      height: 55px;
      border-radius: 58px;
      float: left;
      margin-right: 20px; }
    .c-content-testimonial-2 .c-author > .c-position {
      font-size: 12px;
      font-weight: 500;
      margin: 0 0 0 0; }

.c-content-testimonial-2-slider .c-title {
  position: absolute;
  top: 30px;
  left: 45px;
  z-index: 10;
  font-size: 14px;
  padding: 4px 10px 2px 10px;
  font-weight: 400;
  color: #ffffff; }

.c-content-testimonial-2-slider .owl-controls {
  margin: 0;
  text-align: right;
  position: absolute;
  top: 30px;
  right: 30px; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-testimonial-2 {
    margin-bottom: 20px; } }

.c-content-testimonial-3 {
  padding-bottom: 20px; }
  .c-content-testimonial-3 > .c-content {
    padding: 29px;
    position: relative; }
    .c-content-testimonial-3 > .c-content:after, .c-content-testimonial-3 > .c-content:before {
      top: 100%;
      left: 60px;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none; }
    .c-content-testimonial-3 > .c-content:before {
      border-width: 17px;
      margin-left: -17px; }
    .c-content-testimonial-3 > .c-content:after {
      border-width: 15px;
      margin-left: -15px; }
    .c-content-testimonial-3 > .c-content > i {
      position: absolute;
      right: 20px;
      top: 20px;
      color: #ffffff; }
  .c-content-testimonial-3 > .c-person {
    padding: 25px 0 0 25px;
    position: relative; }
    .c-content-testimonial-3 > .c-person > img {
      float: left;
      margin: 0 10px 0 0;
      border-radius: 50%;
      width: 70px; }
    .c-content-testimonial-3 > .c-person > .c-person-detail {
      padding: 15px 0 12px 0; }
      .c-content-testimonial-3 > .c-person > .c-person-detail > .c-name {
        margin: 0; }
      .c-content-testimonial-3 > .c-person > .c-person-detail > .c-position {
        margin: 3px 0 0 0; }
  .c-content-testimonial-3.c-option-default > .c-content {
    color: #5c6873;
    background: #ffffff; }
    .c-content-testimonial-3.c-option-default > .c-content:after {
      border-color: rgba(255, 255, 255, 0);
      border-top-color: #ffffff; }
  .c-content-testimonial-3.c-option-default > .c-person > .c-person-detail > .c-name {
    color: #5c6873; }
  .c-content-testimonial-3.c-option-default > .c-person > .c-person-detail > .c-position {
    color: #5c6873; }
  .c-content-testimonial-3.c-option-light > .c-content {
    color: #5c6873;
    background: #f4f5f7; }
    .c-content-testimonial-3.c-option-light > .c-content:after {
      border-color: rgba(244, 245, 247, 0);
      border-top-color: #f4f5f7; }
  .c-content-testimonial-3.c-option-light > .c-person > .c-person-detail > .c-name {
    color: #5c6873; }
  .c-content-testimonial-3.c-option-light > .c-person > .c-person-detail > .c-position {
    color: #5c6873; }
  .c-content-testimonial-3.c-option-dark > .c-content {
    color: #5c6873;
    background: #ffffff; }
    .c-content-testimonial-3.c-option-dark > .c-content:after {
      border-color: rgba(255, 255, 255, 0);
      border-top-color: #ffffff; }
  .c-content-testimonial-3.c-option-dark > .c-person > .c-person-detail > .c-name {
    color: #ffffff; }
  .c-content-testimonial-3.c-option-dark > .c-person > .c-person-detail > .c-position {
    color: #5c6873; }
  .c-content-testimonial-3.c-option-light-transparent > .c-content {
    color: #5c6873;
    background: rgba(255, 255, 255, 0.5); }
    .c-content-testimonial-3.c-option-light-transparent > .c-content:after {
      border-top-color: rgba(255, 255, 255, 0.5); }
  .c-content-testimonial-3.c-option-light-transparent > .c-person > .c-person-detail > .c-name {
    color: #5c6873; }
  .c-content-testimonial-3.c-option-light-transparent > .c-person > .c-person-detail > .c-position {
    color: #5c6873; }
  .c-content-testimonial-3.c-option-dark-transparent > .c-content {
    color: #e4e7e9;
    background: rgba(0, 0, 0, 0.5); }
    .c-content-testimonial-3.c-option-dark-transparent > .c-content:after {
      border-top-color: rgba(0, 0, 0, 0.5); }
  .c-content-testimonial-3.c-option-dark-transparent > .c-person > .c-person-detail > .c-name {
    color: #ffffff; }
  .c-content-testimonial-3.c-option-dark-transparent > .c-person > .c-person-detail > .c-position {
    color: #5c6873; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-testimonial-3 {
    margin: 0;
    width: 100%; }
    .c-content-testimonial-3 > .c-content {
      margin-left: 0; }
    .c-content-testimonial-3 > .c-person {
      float: left; }
      .c-content-testimonial-3 > .c-person > img {
        float: left;
        border-radius: 50%;
        width: 80px; }
      .c-content-testimonial-3 > .c-person > .c-person-detail {
        margin-top: 5px;
        float: left; } }

.c-content-testimonials-4 .owl-theme .owl-controls .owl-nav div {
  background: url(/public/46d81dc6a6ac43068de68481e0ebbcda.png);
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: cover; }
  .c-content-testimonials-4 .owl-theme .owl-controls .owl-nav div.owl-prev {
    background-position: 0px 3600%;
    left: -120px;
    position: absolute;
    opacity: 0.5; }
    .c-content-testimonials-4 .owl-theme .owl-controls .owl-nav div.owl-prev:hover {
      opacity: 1; }
  .c-content-testimonials-4 .owl-theme .owl-controls .owl-nav div.owl-next {
    background-position: 0px 3700%;
    right: -120px;
    position: absolute;
    opacity: 0.5; }
    .c-content-testimonials-4 .owl-theme .owl-controls .owl-nav div.owl-next:hover {
      opacity: 1; }

.c-content-testimonials-4.c-icon-white .owl-theme .owl-controls .owl-nav div {
  background-image: url(/public/c825d71be0ba46a3cb15bab040082549.png); }

.c-content-testimonials-4 .owl-nav {
  position: absolute;
  top: 115px;
  left: 50%; }

.c-content-testimonials-4 .c-content {
  text-align: center;
  padding: 0 150px; }

.c-content-testimonials-4 .c-person {
  padding-top: 27px; }
  .c-content-testimonials-4 .c-person > .c-person-detail {
    text-align: center;
    padding-top: 23px; }
  .c-content-testimonials-4 .c-person > img {
    border-radius: 50%;
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    margin-left: auto;
    margin-right: auto; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-testimonials-4 .c-content {
    padding: 0 100px; }
  .c-content-testimonials-4 .owl-nav {
    top: 135px; } }

@media (max-width: 767px) {
  /* 766px */
  .c-content-testimonials-4 .c-content {
    padding: 0; }
  .c-content-testimonials-4 .owl-nav {
    visibility: hidden; } }

.c-content-testimonials-12 .owl-carousel .owl-controls {
  margin-top: 0; }

.c-content-testimonials-12 .owl-theme .owl-controls .owl-nav div {
  display: inline-block;
  width: 23px;
  height: 41px;
  background-size: cover; }
  .c-content-testimonials-12 .owl-theme .owl-controls .owl-nav div.owl-prev {
    background-image: url(/public/76a8ae25cf33e441da24036a34f0b78c.png);
    left: 80px;
    position: absolute;
    opacity: 0.3;
    transition: all 0.5s; }
    .c-content-testimonials-12 .owl-theme .owl-controls .owl-nav div.owl-prev:hover {
      opacity: 1; }
  .c-content-testimonials-12 .owl-theme .owl-controls .owl-nav div.owl-next {
    background-image: url(/public/40d4629f501869ef93e8ea3e1b02ede2.png);
    right: 80px;
    position: absolute;
    opacity: 0.3;
    transition: all 0.5s; }
    .c-content-testimonials-12 .owl-theme .owl-controls .owl-nav div.owl-next:hover {
      opacity: 1; }

.c-content-testimonials-12 .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto; }

.c-content-testimonials-12 .c-testimonial {
  margin-top: 10px;
  padding: 20px; }
  .c-content-testimonials-12 .c-testimonial .c-testimonial-container {
    text-align: center;
    padding: 60px;
    width: 780px;
    border-radius: 15px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    margin: auto; }
    .c-content-testimonials-12 .c-testimonial .c-testimonial-container .c-testimonial-12-quote-icon {
      width: 53px;
      height: auto;
      display: block;
      margin: 10px auto 50px auto; }
    .c-content-testimonials-12 .c-testimonial .c-testimonial-container .c-testimonial-12-desc {
      font-size: 20px;
      font-weight: 500;
      line-height: 1.7em;
      color: #54544f;
      margin-bottom: 40px; }
    .c-content-testimonials-12 .c-testimonial .c-testimonial-container .c-testimonial-12-author {
      font-size: 14px;
      font-weight: 400;
      color: #aaa; }

@media (max-width: 1024px) {
  .c-content-testimonials-12 .owl-theme .owl-controls .owl-nav div.owl-prev {
    left: 30px; }
  .c-content-testimonials-12 .owl-theme .owl-controls .owl-nav div.owl-next {
    right: 30px; } }

@media (max-width: 991px) {
  .c-content-testimonials-12 .owl-theme .owl-controls .owl-nav div.owl-prev {
    left: 0; }
  .c-content-testimonials-12 .owl-theme .owl-controls .owl-nav div.owl-next {
    right: 0; }
  .c-content-testimonials-12 .c-testimonial .c-testimonial-container {
    width: 100%;
    padding: 40px; } }

.c-content-testimonials-13 .owl-carousel .owl-controls {
  margin-top: 0; }

.c-content-testimonials-13 .owl-theme .owl-controls .owl-nav div {
  display: inline-block;
  width: 39px;
  height: 16px;
  background-size: cover; }
  .c-content-testimonials-13 .owl-theme .owl-controls .owl-nav div.owl-prev {
    display: none; }
  .c-content-testimonials-13 .owl-theme .owl-controls .owl-nav div.owl-next {
    background-image: url(/public/c9420c165b14646350b354fc3ac4594f.png);
    right: 270px;
    position: absolute;
    opacity: 0.7;
    transition: all 0.5s;
    transform: translateY(-50%); }
    .c-content-testimonials-13 .owl-theme .owl-controls .owl-nav div.owl-next:hover {
      opacity: 1; }

.c-content-testimonials-13 .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto; }

.c-content-testimonials-13 .c-testimonial {
  margin: 40px 150px; }
  .c-content-testimonials-13 .c-testimonial .c-testimonial-container {
    padding: 60px 180px 60px 90px;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.08);
    border-radius: 15px; }
    .c-content-testimonials-13 .c-testimonial .c-testimonial-container .c-testimonial-13-title {
      font-size: 43px;
      font-weight: 700;
      margin-bottom: 50px;
      color: #404148;
      letter-spacing: -1px; }
    .c-content-testimonials-13 .c-testimonial .c-testimonial-container .c-testimonial-13-desc {
      font-size: 18px;
      color: #a7a8af;
      font-weight: 400;
      margin-bottom: 50px;
      line-height: 1.5em; }
    .c-content-testimonials-13 .c-testimonial .c-testimonial-container .c-testimonial-13-author-container {
      display: table; }
      .c-content-testimonials-13 .c-testimonial .c-testimonial-container .c-testimonial-13-author-container .c-testimonial-13-author-img {
        display: table-cell;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        overflow: hidden; }
      .c-content-testimonials-13 .c-testimonial .c-testimonial-container .c-testimonial-13-author-container .c-testimonial-13-author {
        display: table-cell;
        font-size: 15px;
        font-weight: 400;
        color: #97979e;
        vertical-align: middle;
        padding-left: 20px;
        line-height: 1.3em; }
        .c-content-testimonials-13 .c-testimonial .c-testimonial-container .c-testimonial-13-author-container .c-testimonial-13-author .c-testimonial-13-author-name {
          font-weight: 500; }

@media (max-width: 991px) {
  .c-content-testimonials-13 .owl-theme .owl-controls .owl-nav div.owl-next {
    right: 60px; }
  .c-content-testimonials-13 .c-testimonial {
    margin: 40px 0; }
    .c-content-testimonials-13 .c-testimonial .c-testimonial-container {
      padding: 40px 80px 40px 40px; } }

.c-content-bar-1 {
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center; }
  .c-content-bar-1.c-align-left {
    text-align: left; }
  .c-content-bar-1 > h3 {
    font-size: 30px;
    color: #3f444a;
    font-weight: 500;
    margin-bottom: 30px; }
  .c-content-bar-1 > p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #5c6873; }
  .c-content-bar-1.c-bordered {
    border: 3px solid transparent;
    padding: 20px; }

.c-content-bar-2 {
  padding: 0;
  margin: 0;
  width: 100%; }
  .c-content-bar-2 .c-content-title-1 > h3 {
    color: #3f444a;
    margin-bottom: 20px; }
  .c-content-bar-2 .c-content-title-1 > p {
    color: #5c6873;
    font-size: 16px;
    margin: 0 0 20px 0;
    line-height: 25px; }
  .c-content-bar-2 .c-content-v-center .c-body {
    padding: 30px; }
    .c-content-bar-2 .c-content-v-center .c-body h3 {
      text-transform: uppercase;
      text-align: center;
      line-height: 33px;
      font-size: 21px;
      font-weight: 500;
      margin: 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-bar-2 .c-content-v-center {
    margin-top: 20px; }
    .c-content-bar-2 .c-content-v-center .c-body {
      padding: 20px; } }

.c-content-bar-3 {
  padding: 0;
  margin: 0;
  width: 100%; }
  .c-content-bar-3 .c-content-title-1 > h3 {
    padding: 0;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 25px 0; }
  .c-content-bar-3 .c-content-title-1 > p {
    padding: 0;
    color: #5c6873;
    text-transform: uppercase;
    margin: 0;
    font-size: 16px; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-bar-3 > .c-content-title-1 {
    margin-bottom: 40px; } }

@media (max-width: 767px) {
  /* <= 767px */
  .c-content-bar-3 {
    text-align: center; }
    .c-content-bar-3 > .c-content-title-1 {
      text-align: center; } }

.c-content-bar-4 {
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center; }
  .c-content-bar-4 > h3 {
    display: inline-block;
    color: #ffffff;
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
    margin: 100px auto 40px auto;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.15); }
  .c-content-bar-4.c-opt-2 > h3 {
    margin-top: 30px;
    margin-bottom: 0; }
  .c-content-bar-4.c-opt-2 > .row > div > p {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 25px;
    padding: 40px; }

.c-content-bar-5 {
  padding: 0;
  margin: 0;
  width: 100%; }
  .c-content-bar-5 > h3 {
    font-size: 30px;
    color: #3f444a;
    font-weight: 500;
    margin-bottom: 30px; }
  .c-content-bar-5 > p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #5c6873; }
  .c-content-bar-5.c-bordered {
    border: 3px solid transparent;
    padding: 40px; }

.c-content-bar-7 {
  padding: 0;
  margin: 0;
  width: 100%;
  display: table; }
  .c-content-bar-7 > .c-content-bar-desc {
    vertical-align: middle;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #5c6873;
    display: table-cell; }
  .c-content-bar-7 > .c-content-bar-btn {
    vertical-align: middle;
    text-align: right;
    display: table-cell;
    padding: 15px 25px;
    width: 1px; }

@media (max-width: 768px) {
  .c-content-bar-7 {
    display: block; }
    .c-content-bar-7 > .c-content-bar-desc {
      display: block;
      text-align: center; }
    .c-content-bar-7 > .c-content-bar-btn {
      display: block;
      width: auto;
      text-align: center; } }

.c-content-media-1 {
  padding: 30px;
  background-color: #ffffff;
  margin: 0;
  position: relative; }
  .c-content-media-1.c-bordered {
    border: 1px solid #f0f1f2; }
  .c-content-media-1 .c-content-label {
    padding: 4px 10px 2px 10px; }
  .c-content-media-1 .c-title {
    display: block;
    font-size: 30px;
    font-weight: 300;
    line-height: 35px;
    color: #3f444a;
    margin: 30px 0 20px 0; }
  .c-content-media-1 p {
    font-size: 19px;
    color: #5c6873;
    font-weight: 300;
    line-height: 24px; }
  .c-content-media-1 .c-date {
    margin-bottom: 10px;
    margin-top: 30px;
    display: inline-block;
    color: #5c6873;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500; }
  .c-content-media-1 .c-author {
    overflow: auto;
    margin-bottom: 10px;
    margin-top: 30px; }
    .c-content-media-1 .c-author > .c-portrait {
      position: relative;
      background-size: cover;
      width: 55px;
      height: 55px;
      border-radius: 58px;
      float: left;
      margin-right: 20px; }
    .c-content-media-1 .c-author > .c-name {
      float: left;
      font-size: 16px;
      font-weight: 400;
      color: #5c6873;
      margin: 15px 0 0 0; }
    .c-content-media-1 .c-author > p {
      font-size: 12px;
      color: #32c5d2;
      margin: 0; }
  .c-content-media-1 .c-action {
    margin-top: 20px;
    text-align: right; }

.c-content-media-1-slider > .c-content-label {
  padding: 4px 10px 2px 10px;
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 10; }

.c-content-media-1-slider .owl-controls {
  margin: 0;
  text-align: right;
  position: absolute;
  top: 30px;
  right: 30px; }

.c-content-media-1-slider.c-pagination-bottom .owl-controls {
  top: auto;
  bottom: 20px;
  right: 30px; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-media-1 {
    margin-bottom: 20px; }
  .c-content-media-1-slider {
    margin-bottom: 20px; } }

.c-content-media-2 {
  padding: 30px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover; }
  .c-content-media-2 .c-panel {
    position: absolute;
    bottom: 10px;
    right: 30px; }
    .c-content-media-2 .c-panel > .c-fav {
      font-size: 20px;
      color: #ffffff; }
      .c-content-media-2 .c-panel > .c-fav > i {
        position: relative;
        top: 2px;
        margin-right: 10px;
        display: inline-block; }
        .c-content-media-2 .c-panel > .c-fav > i:hover {
          color: #32c5d2;
          cursor: pointer; }
      .c-content-media-2 .c-panel > .c-fav > p {
        display: inline-block; }

.c-content-media-2-slider .c-content-label {
  position: absolute;
  top: 25px;
  left: 40px;
  z-index: 10; }

.c-content-media-2-slider .owl-controls {
  margin: 0;
  text-align: right;
  position: absolute;
  top: 30px;
  right: 30px; }

.c-content-media-2-slider.c-pagination-bottom .owl-controls {
  top: auto;
  bottom: 20px;
  right: 30px; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-media-2 {
    margin-bottom: 20px; }
  .c-content-media-2-slider {
    margin-bottom: 20px; } }

.c-content-pricing-1 {
  padding: 0;
  margin: 0;
  width: 100%; }
  .c-content-pricing-1 > .c-tile-container {
    width: 100%;
    position: relative;
    text-align: center; }
    .c-content-pricing-1 > .c-tile-container > .c-tile {
      background: #ffffff;
      width: 31.9%;
      height: 100%;
      float: left;
      padding: 90px 0;
      margin: 0 20px; }
      .c-content-pricing-1 > .c-tile-container > .c-tile.c-bordered {
        border: 3px solid transparent; }
      .c-content-pricing-1 > .c-tile-container > .c-tile.c-shadow {
        box-shadow: 0px 3px 18px -5px rgba(0, 0, 0, 0.5); }
      .c-content-pricing-1 > .c-tile-container > .c-tile > .c-label {
        color: #fff;
        padding: 4px 10px 2px 10px;
        font-weight: bold;
        font-size: 14px;
        text-transform: uppercase;
        display: inline-block;
        margin: 0 0 30px 0; }
      .c-content-pricing-1 > .c-tile-container > .c-tile > p {
        font-size: 15px;
        font-weight: 400; }
      .c-content-pricing-1 > .c-tile-container > .c-tile > .btn {
        margin-top: 40px; }
      .c-content-pricing-1 > .c-tile-container > .c-tile > .c-price {
        color: #3f444a;
        font-size: 60px;
        font-weight: bold; }
        .c-content-pricing-1 > .c-tile-container > .c-tile > .c-price > sup {
          font-size: 28px;
          font-weight: normal;
          vertical-align: super; }
    .c-content-pricing-1 > .c-tile-container > .c-tile-small {
      margin: 40px 0;
      padding: 50px 0; }
  .c-content-pricing-1.c-option-2 > .c-tile-container > .c-tile > .c-label {
    color: #ffffff; }
  .c-content-pricing-1.c-option-2 > .c-tile-container > .c-tile.c-highlight {
    background-color: #32c5d2; }
    .c-content-pricing-1.c-option-2 > .c-tile-container > .c-tile.c-highlight > .c-label {
      background-color: #ffffff;
      color: #32c5d2; }
    .c-content-pricing-1.c-option-2 > .c-tile-container > .c-tile.c-highlight > p {
      color: #ffffff; }
    .c-content-pricing-1.c-option-2 > .c-tile-container > .c-tile.c-highlight > .c-price {
      color: #3f444a; }
      .c-content-pricing-1.c-option-2 > .c-tile-container > .c-tile.c-highlight > .c-price > sup {
        color: #3f444a; }

@media (max-width: 991px) {
  /* <= 991px */
  .c-content-pricing-1 > .c-title > h3 {
    margin: 20px 0 50px 0; }
  .c-content-pricing-1 > .c-tile-container > .c-tile {
    width: 100%;
    margin: 20px 0; } }

.c-content-pricing-1 {
  padding: 0;
  margin: 0; }
  .c-content-pricing-1 .c-content.c-padding-adjustment {
    margin-right: -30px; }
  .c-content-pricing-1 .c-content > .c-row {
    padding: 30px;
    text-align: center;
    border-top: 1px solid;
    font-weight: 500; }
    .c-content-pricing-1 .c-content > .c-row > .c-sub-title {
      display: none; }
    .c-content-pricing-1 .c-content > .c-row:first-child, .c-content-pricing-1 .c-content > .c-row:last-child {
      border-top: none; }
    .c-content-pricing-1 .c-content > .c-row.c-type {
      padding: 30px;
      font-weight: 500; }
    .c-content-pricing-1 .c-content > .c-row.c-title {
      text-align: left;
      padding-left: 0px;
      font-weight: normal; }
    .c-content-pricing-1 .c-content > .c-row.c-align-left {
      padding-left: 0px;
      text-align: left; }
    .c-content-pricing-1 .c-content > .c-row.c-purchase > .c-btn-purchase {
      padding: 12px 30px 10px 30px; }
  .c-content-pricing-1.c-opt-1 .c-content.c-column-even {
    background: #fafbfb; }
  .c-content-pricing-1.c-opt-1 .c-content > .c-row {
    color: #5f6f77;
    border-top-color: #f4f4f4; }
    .c-content-pricing-1.c-opt-1 .c-content > .c-row.c-type {
      color: #5f6f77; }
    .c-content-pricing-1.c-opt-1 .c-content > .c-row.c-title {
      color: #84969f; }
    .c-content-pricing-1.c-opt-1 .c-content > .c-row.c-dollar {
      color: #b9c4ca; }
    .c-content-pricing-1.c-opt-1 .c-content > .c-row > .fa.fa-check {
      color: #75c199; }
    .c-content-pricing-1.c-opt-1 .c-content > .c-row > .fa.fa-times {
      color: #ff6b57; }
  .c-content-pricing-1.c-opt-2 .c-content.c-column-even {
    background: rgba(255, 255, 255, 0.02); }
  .c-content-pricing-1.c-opt-2 .c-content > .c-row {
    color: #969ab9;
    border-top-color: rgba(255, 255, 255, 0.04); }
    .c-content-pricing-1.c-opt-2 .c-content > .c-row.c-type {
      color: #fbfefe; }
    .c-content-pricing-1.c-opt-2 .c-content > .c-row.c-title {
      color: #969ab9; }
    .c-content-pricing-1.c-opt-2 .c-content > .c-row.c-dollar {
      color: #5b5f84; }
    .c-content-pricing-1.c-opt-2 .c-content > .c-row > .fa.fa-check {
      color: #75c199; }
    .c-content-pricing-1.c-opt-2 .c-content > .c-row > .fa.fa-times {
      color: #ff6b57; }

.c-title-pricing-1 {
  margin-top: 40px; }
  .c-title-pricing-1 > h4 {
    float: left;
    margin-top: 0px;
    margin-bottom: 70px; }
  .c-title-pricing-1 > .c-try {
    position: absolute;
    top: 30px;
    right: 15px;
    float: left; }
    .c-title-pricing-1 > .c-try > .c-btn-try {
      padding: 12px 30px 10px 30px; }
  .c-title-pricing-1.c-opt-title-1 > h4 {
    color: #455055; }
  .c-title-pricing-1.c-opt-title-1 > .c-try > .c-btn-try {
    background: #ff6b57;
    color: #ffffff; }
    .c-title-pricing-1.c-opt-title-1 > .c-try > .c-btn-try:hover, .c-title-pricing-1.c-opt-title-1 > .c-try > .c-btn-try:focus, .c-title-pricing-1.c-opt-title-1 > .c-try > .c-btn-try:active, .c-title-pricing-1.c-opt-title-1 > .c-try > .c-btn-try.active, .c-title-pricing-1.c-opt-title-1 > .c-try > .c-btn-try .open > .dropdown-toggle.c-btn-try {
      background: #e16450; }
    .c-title-pricing-1.c-opt-title-1 > .c-try > .c-btn-try:active, .c-title-pricing-1.c-opt-title-1 > .c-try > .c-btn-try.active {
      background: #c3604b;
      box-shadow: none; }
  .c-title-pricing-1.c-opt-title-2 > h4 {
    color: #fbfefe; }
    .c-title-pricing-1.c-opt-title-2 > h4 > span {
      color: #41c6ec; }
  .c-title-pricing-1.c-opt-title-2 > .c-try > .c-btn-try {
    background: #ff6b57;
    color: #ffffff; }
    .c-title-pricing-1.c-opt-title-2 > .c-try > .c-btn-try:hover, .c-title-pricing-1.c-opt-title-2 > .c-try > .c-btn-try:focus, .c-title-pricing-1.c-opt-title-2 > .c-try > .c-btn-try:active, .c-title-pricing-1.c-opt-title-2 > .c-try > .c-btn-try.active, .c-title-pricing-1.c-opt-title-2 > .c-try > .c-btn-try .open > .dropdown-toggle.c-btn-try {
      background: #e16450; }
    .c-title-pricing-1.c-opt-title-2 > .c-try > .c-btn-try:active, .c-title-pricing-1.c-opt-title-2 > .c-try > .c-btn-try.active {
      background: #c3604b;
      box-shadow: none; }

@media (max-width: 991px) {
  /* 991px */
  .c-title-pricing-1 {
    margin-top: 40px; }
    .c-title-pricing-1 > h4 {
      float: left;
      margin-top: 0px;
      margin-bottom: 70px; }
    .c-title-pricing-1 > .c-try {
      position: absolute;
      top: -7px;
      right: 15px;
      float: left; }
  .c-content-pricing-1 > .c-sm-hidden {
    display: none; }
  .c-content-pricing-1 .c-content > .c-row {
    padding: 30px;
    text-align: center; }
    .c-content-pricing-1 .c-content > .c-row > .c-sub-title {
      display: inline; }
    .c-content-pricing-1 .c-content > .c-row.c-align-left {
      padding-left: 30px;
      text-align: center; }
    .c-content-pricing-1 .c-content > .c-row.c-title {
      text-align: center;
      padding-left: 30px; }
    .c-content-pricing-1 .c-content > .c-row.c-empty {
      display: none; } }

@media (max-width: 767px) {
  /* 766px */
  .c-title-pricing-1 {
    text-align: center;
    padding: 0px; }
    .c-title-pricing-1 > h4 {
      width: 100%;
      clear: both;
      margin: 0px auto 30px; }
    .c-title-pricing-1 > .c-try {
      position: static;
      clear: both;
      width: 100%;
      margin-bottom: 50px; }
      .c-title-pricing-1 > .c-try > .c-btn-try {
        margin-left: auto;
        margin-right: auto; }
  .c-content-pricing-1 .c-content {
    margin-bottom: 80px; }
    .c-content-pricing-1 .c-content.c-padding-adjustment {
      margin-left: 0px;
      margin-right: 0px; } }

.c-content-pricing-2 {
  text-align: center;
  padding: 50px 0;
  margin-bottom: 20px; }
  .c-content-pricing-2 > .c-icon {
    margin-bottom: 43px; }
  .c-content-pricing-2 > .c-title {
    margin-bottom: 5px; }
  .c-content-pricing-2 > .c-price {
    margin-bottom: 33px; }
  .c-content-pricing-2 > .c-items > ul {
    list-style: none;
    padding: 0px;
    margin-bottom: 38px; }
    .c-content-pricing-2 > .c-items > ul > li {
      padding: 4px 0;
      font-size: 16px; }
  .c-content-pricing-2.c-padding-first {
    margin-right: -15px; }
  .c-content-pricing-2.c-featured-no-padding, .c-content-pricing-2.c-featured-extra-padding, .c-content-pricing-2.c-featured-overlap {
    margin-top: -30px;
    padding: 80px 0;
    border-radius: 3px;
    position: relative;
    z-index: 1; }
  .c-content-pricing-2.c-featured-no-padding {
    margin-left: -15px;
    margin-right: -15px; }
  .c-content-pricing-2.c-featured-extra-padding {
    margin-left: -13px;
    margin-right: -13px; }
  .c-content-pricing-2.c-featured-overlap {
    margin-left: -17px;
    margin-right: -17px; }
  .c-content-pricing-2.c-padding-last {
    margin-left: -15px; }
  .c-content-pricing-2.c-opt-1 {
    background: #f8f8f8; }
    .c-content-pricing-2.c-opt-1.c-bg-outline {
      border: 2px solid transparent; }
    .c-content-pricing-2.c-opt-1 > .c-icon > i {
      color: #c8d1e1; }
    .c-content-pricing-2.c-opt-1 > .c-title {
      color: #5f6f77; }
    .c-content-pricing-2.c-opt-1 > .c-price {
      color: #8d9db6; }
    .c-content-pricing-2.c-opt-1 > .c-items {
      color: #aab5c6; }
  .c-content-pricing-2.c-opt-1-featured {
    background: #ff6b57; }
    .c-content-pricing-2.c-opt-1-featured.c-bg-outline {
      border: 2px solid transparent; }
    .c-content-pricing-2.c-opt-1-featured > .c-icon > i {
      color: #ffb1a7; }
    .c-content-pricing-2.c-opt-1-featured > .c-title {
      color: #ffffff; }
    .c-content-pricing-2.c-opt-1-featured > .c-price {
      color: #ffd5cf; }
    .c-content-pricing-2.c-opt-1-featured > .c-items {
      color: #ffd5cf; }
  .c-content-pricing-2.c-opt-2 {
    background: #3e4265; }
    .c-content-pricing-2.c-opt-2.c-bg-outline {
      border: 2px solid transparent; }
    .c-content-pricing-2.c-opt-2 > .c-icon > i {
      color: #505477; }
    .c-content-pricing-2.c-opt-2 > .c-title {
      color: #ffffff; }
    .c-content-pricing-2.c-opt-2 > .c-price {
      color: #969ab9; }
    .c-content-pricing-2.c-opt-2 > .c-items {
      color: #969ab9; }
  .c-content-pricing-2.c-opt-2-featured {
    background: #414567; }
    .c-content-pricing-2.c-opt-2-featured.c-bg-outline {
      border: 2px solid transparent; }
    .c-content-pricing-2.c-opt-2-featured > .c-icon > i {
      color: #ff6b57; }
    .c-content-pricing-2.c-opt-2-featured > .c-title {
      color: #ffffff; }
    .c-content-pricing-2.c-opt-2-featured > .c-price {
      color: #22afd7; }
    .c-content-pricing-2.c-opt-2-featured > .c-items {
      color: #969ab9; }
  .c-content-pricing-2.c-opt-3 {
    background: #ffffff; }
    .c-content-pricing-2.c-opt-3.c-bg-outline {
      border: 2px solid #dce2e7; }
    .c-content-pricing-2.c-opt-3 > .c-icon > i {
      color: #c8d1e1; }
    .c-content-pricing-2.c-opt-3 > .c-title {
      color: #5f6f77; }
    .c-content-pricing-2.c-opt-3 > .c-price {
      color: #8d9db6; }
    .c-content-pricing-2.c-opt-3 > .c-items {
      color: #aab5c6; }
  .c-content-pricing-2.c-opt-3-featured {
    background: #ffffff; }
    .c-content-pricing-2.c-opt-3-featured.c-bg-outline {
      border: 2px solid #53b0bb; }
    .c-content-pricing-2.c-opt-3-featured > .c-icon > i {
      color: #53b0bb; }
    .c-content-pricing-2.c-opt-3-featured > .c-title {
      color: #5f6f77; }
    .c-content-pricing-2.c-opt-3-featured > .c-price {
      color: #8d9db6; }
    .c-content-pricing-2.c-opt-3-featured > .c-items {
      color: #aab5c6; }
  .c-content-pricing-2.c-opt-4 {
    background: rgba(255, 255, 255, 0.05); }
    .c-content-pricing-2.c-opt-4.c-bg-outline {
      border: 2px solid transparent; }
    .c-content-pricing-2.c-opt-4 > .c-icon > i {
      color: #808ca4; }
    .c-content-pricing-2.c-opt-4 > .c-title {
      color: #ffffff; }
    .c-content-pricing-2.c-opt-4 > .c-price {
      color: #b5bdcc; }
    .c-content-pricing-2.c-opt-4 > .c-items {
      color: #b5bdcc; }
  .c-content-pricing-2.c-opt-4-featured {
    background: rgba(255, 255, 255, 0.07); }
    .c-content-pricing-2.c-opt-4-featured.c-bg-outline {
      border: 2px solid transparent; }
    .c-content-pricing-2.c-opt-4-featured > .c-icon > i {
      color: #22afd7; }
    .c-content-pricing-2.c-opt-4-featured > .c-title {
      color: #ffffff; }
    .c-content-pricing-2.c-opt-4-featured > .c-price {
      color: #b5bdcc; }
    .c-content-pricing-2.c-opt-4-featured > .c-items {
      color: #b5bdcc; }
  .c-content-pricing-2.c-opt-5 {
    background: #fafafa; }
    .c-content-pricing-2.c-opt-5.c-bg-outline {
      border: 2px solid #fafafa; }
    .c-content-pricing-2.c-opt-5 > .c-icon > i {
      color: #8d98a3; }
    .c-content-pricing-2.c-opt-5 > .c-title {
      color: #3d4e5e; }
    .c-content-pricing-2.c-opt-5 > .c-price {
      color: #8d98a3; }
    .c-content-pricing-2.c-opt-5 > .c-items {
      color: #afb6bc; }
  .c-content-pricing-2.c-opt-5-featured {
    background: #22272c; }
    .c-content-pricing-2.c-opt-5-featured.c-bg-outline {
      border: 2px solid #2a333c; }
    .c-content-pricing-2.c-opt-5-featured > .c-icon > i {
      color: #30363b; }
    .c-content-pricing-2.c-opt-5-featured > .c-title {
      color: #fbfefe; }
    .c-content-pricing-2.c-opt-5-featured > .c-price {
      color: #525960; }
    .c-content-pricing-2.c-opt-5-featured > .c-items {
      color: #525960; }

.c-title-pricing-2 > h4 {
  margin: 15px 0; }

.c-title-pricing-2 > p {
  margin-bottom: 100px; }

.c-title-pricing-2.c-opt-title-1 > h4 {
  color: #455055; }
  .c-title-pricing-2.c-opt-title-1 > h4 > span {
    color: #22afd7; }

.c-title-pricing-2.c-opt-title-1 > p {
  color: #a0b0b8; }

.c-title-pricing-2.c-opt-title-2 > h4 {
  color: #fbfefe; }
  .c-title-pricing-2.c-opt-title-2 > h4 > span {
    color: #22afd7; }

.c-title-pricing-2.c-opt-title-2 > p {
  color: #969ab9; }

.c-title-pricing-2.c-opt-title-3 > h4 {
  color: #455055; }
  .c-title-pricing-2.c-opt-title-3 > h4 > span {
    color: #53b0bb; }

.c-title-pricing-2.c-opt-title-3 > p {
  color: #a0b0b8; }

.c-title-pricing-2.c-opt-title-4 > h4 {
  color: #ffffff; }
  .c-title-pricing-2.c-opt-title-4 > h4 > span {
    color: #ffffff; }

.c-title-pricing-2.c-opt-title-4 > p {
  color: #b5bdcc; }

.c-title-pricing-2.c-opt-title-5 > h4 {
  color: #3d4e5e; }
  .c-title-pricing-2.c-opt-title-5 > h4 > span {
    color: #3d4e5e; }

.c-title-pricing-2.c-opt-title-5 > p {
  color: #a0b0b8; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-pricing-2.c-padding-first {
    margin-right: -15px;
    margin-top: 0px; }
  .c-content-pricing-2.c-featured-no-padding, .c-content-pricing-2.c-featured-extra-padding, .c-content-pricing-2.c-featured-overlap {
    border-radius: 0px;
    margin: 0px 0px 0px -10px;
    padding: 50px 0; }
  .c-content-pricing-2.c-featured-overlap {
    padding: 52px 0; }
  .c-content-pricing-2.c-padding-last {
    margin-left: 0px;
    margin-top: 5px; } }

@media (max-width: 767px) {
  /* 766px */
  .c-content-pricing-2.c-padding-first {
    margin: 0px; }
  .c-content-pricing-2.c-featured-no-padding, .c-content-pricing-2.c-featured-extra-padding, .c-content-pricing-2.c-featured-overlap {
    margin-top: 5px;
    margin-left: 0px;
    border-radius: 0px;
    padding: 50px 0; }
  .c-content-pricing-2.c-padding-last {
    margin-left: 0px;
    margin-top: 5px; } }

.c-content-product-1 {
  padding: 0;
  margin: 0;
  width: 100%; }
  .c-content-product-1 .row {
    position: relative; }
    .c-content-product-1 .row .c-media > img {
      width: 100%; }
    .c-content-product-1 .row .c-body {
      padding: 80px 0 20px 20px; }
      .c-content-product-1 .row .c-body > .c-row {
        padding: 0 0 0 40px; }
        .c-content-product-1 .row .c-body > .c-row > li {
          width: 50%;
          display: inline-block;
          list-style: none;
          float: left;
          padding: 0 50px 0 0;
          margin-bottom: 35px; }
          .c-content-product-1 .row .c-body > .c-row > li:last-child {
            padding: 0 0 0 50px; }
          .c-content-product-1 .row .c-body > .c-row > li > h4 {
            font-size: 20px;
            color: #3f444a;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase; }
          .c-content-product-1 .row .c-body > .c-row > li > p {
            color: #5c6873;
            font-weight: 300; }
      .c-content-product-1 .row .c-body > .btn {
        display: block;
        margin: 0 auto 60px auto;
        clear: both; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-product-1 .row .c-media > img {
    width: 40%;
    margin: 0 auto;
    display: block; }
  .c-content-product-1 .row .c-body {
    padding: 30px 0 10px; }
    .c-content-product-1 .row .c-body > .c-row {
      padding: 0; }
      .c-content-product-1 .row .c-body > .c-row > li {
        width: 100%;
        margin: 40px 0;
        float: none; }
        .c-content-product-1 .row .c-body > .c-row > li:last-child {
          padding: 0; } }

.c-content-product-2 .c-info {
  padding: 10px 20px; }
  .c-content-product-2 .c-info .c-price {
    margin-bottom: 0; }

.c-content-product-2 .c-label {
  padding: 5px 15px;
  display: inline-block;
  position: absolute;
  z-index: 9; }
  .c-content-product-2 .c-label.c-label-right {
    right: 0;
    top: 0; }

.c-content-product-2 .c-btn-product {
  border: none;
  color: #a5b0bc; }
  .c-content-product-2 .c-btn-product.btn-lg {
    font-size: 12px;
    padding-top: 14px;
    padding-bottom: 13px; }
  .c-content-product-2 .c-btn-product.btn-sm {
    font-size: 11px;
    padding-top: 10px;
    padding-bottom: 8px; }

.c-content-product-2 .btn + .btn {
  margin-left: 5px; }

@media (max-width: 991px) {
  /* 991px */ }

.c-content-product-3 {
  padding: 0;
  margin: 0; }
  .c-content-product-3 .c-content {
    padding: 40px; }
    .c-content-product-3 .c-content .c-title {
      margin: 0 0 25px;
      font-weight: 500; }
    .c-content-product-3 .c-content .c-price {
      margin-top: 10px;
      font-weight: lighter; }
    .c-content-product-3 .c-content .btn {
      position: absolute;
      bottom: 40px; }
  .c-content-product-3 .c-border-padding {
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    position: absolute;
    z-index: 1; }

@media (max-width: 767px) {
  /* 767px */ }

.c-content-product-4 {
  padding: 0;
  margin: 0;
  height: 500px; }
  .c-content-product-4.c-content-bg-1 {
    background-color: #eff3f5; }
  .c-content-product-4.c-content-bg-2 {
    background-color: #f0ece8; }
  .c-content-product-4 .c-content .c-title {
    margin: 0 0 25px;
    font-weight: 500; }
  .c-content-product-4 .c-content .c-price {
    margin-top: 20px; }
  .c-content-product-4 .c-content .btn {
    margin-top: 15px; }
  .c-content-product-4 .c-content.c-align-right {
    padding: 100px 100px 0 0;
    text-align: right; }
  .c-content-product-4 .c-content.c-align-left {
    padding: 100px 0 0 100px; }
  .c-content-product-4 .c-border-padding {
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    position: absolute;
    z-index: 1; }
  .c-content-product-4 .c-side-image {
    height: 500px;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: bottom; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-product-4 .c-side-image {
    background-size: contain; }
  .c-content-product-4 .c-content.c-align-right {
    padding: 40px 20px 0 0; }
  .c-content-product-4 .c-content.c-align-left {
    padding: 40px 0 0 20px; } }

@media (max-width: 767px) {
  /* 767px */
  .c-content-product-4 {
    height: 760px; }
    .c-content-product-4 .c-wrapper {
      padding-top: 30px; }
    .c-content-product-4 .c-side-image {
      height: 350px; } }

.c-content-product-5 {
  padding: 0;
  margin: 0; }
  .c-content-product-5 h3 {
    padding: 0;
    margin: 0; }
  .c-content-product-5 .c-title.c-margin-tb-30 {
    line-height: 1.5em;
    margin: 30px 0; }
  .c-content-product-5 .c-line {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
  .c-content-product-5 .c-detail {
    position: absolute;
    bottom: 0;
    padding: 30px 45px; }
    .c-content-product-5 .c-detail .c-desc {
      margin: 10px 0; }
    .c-content-product-5 .c-detail .btn {
      float: right;
      margin: 30px 0; }
  .c-content-product-5 .c-wrapper.c-center-vertical {
    padding: 15% 0; }

@media (max-width: 767px) {
  /* 767px */
  .c-content-product-5 .c-detail {
    padding: 10px 10px; } }

.c-content-contact-1 {
  padding: 0;
  margin: 0;
  width: 100%; }
  .c-content-contact-1:before {
    background-color: rgba(255, 255, 255, 0.5); }
  .c-content-contact-1:after {
    background-color: rgba(255, 255, 255, 0.5); }
  .c-content-contact-1 > .row .c-body {
    position: relative;
    z-index: 100;
    background: #ffffff;
    margin: 40px 0;
    padding: 60px 40px; }
    .c-content-contact-1 > .row .c-body > .c-section {
      margin-bottom: 15px;
      text-align: right; }
      .c-content-contact-1 > .row .c-body > .c-section > h3 {
        font-size: 30px;
        color: #3f444a;
        font-weight: bold;
        margin: 0 0 30px 0;
        text-transform: uppercase; }
      .c-content-contact-1 > .row .c-body > .c-section > p {
        font-size: 16px;
        line-height: 24px;
        color: #7f8c97;
        font-weight: 300; }
      .c-content-contact-1 > .row .c-body > .c-section > p,
      .c-content-contact-1 > .row .c-body > .c-section > .c-content-iconlist-1 {
        margin-top: 20px; }

.c-content-contact-1-gmap {
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute !important;
  width: 100%; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-contact-1-gmap {
    display: block;
    position: relative !important;
    width: 100%;
    height: 300px !important; }
  .c-content-contact-1 > .row > div {
    width: 100%; }
    .c-content-contact-1 > .row > div .c-body {
      position: static;
      display: block;
      padding: 30px 20px 10px 20px;
      background: #fafafa;
      margin: 0 0 20px 0;
      text-align: left; }
      .c-content-contact-1 > .row > div .c-body:after {
        content: "";
        display: table;
        clear: both; } }

.c-content-feedback-1 {
  padding: 0;
  margin: 0;
  width: 100%; }
  .c-content-feedback-1 > .row > div .c-content-title-1 > .c-line-left {
    margin-bottom: 30px; }
  .c-content-feedback-1 > .row > div .c-content-title-1 > p {
    margin-bottom: 30px;
    font-weight: 300; }
  .c-content-feedback-1 > .row > div > .c-container {
    background-size: auto;
    padding: 30px;
    margin: 0 30px 60px 0; }
    .c-content-feedback-1 > .row > div > .c-container > .c-inverse > h3 {
      color: #ffffff; }
    .c-content-feedback-1 > .row > div > .c-container > .c-inverse > .c-line-left {
      background-color: #ffffff; }
    .c-content-feedback-1 > .row > div > .c-container > .c-inverse > p {
      color: #ffffff; }
    .c-content-feedback-1 > .row > div > .c-container:last-child {
      margin-bottom: 0; }
      .c-content-feedback-1 > .row > div > .c-container:last-child p {
        margin-bottom: 0; }
  .c-content-feedback-1 > .row > div > .c-contact {
    margin-left: 30px; }
  .c-content-feedback-1 > .row > div form {
    margin-bottom: 20px; }
    .c-content-feedback-1 > .row > div form .input-group {
      width: 340px; }
  .c-content-feedback-1 .input-group {
    border: 0; }
    .c-content-feedback-1 .input-group .input-group-addon,
    .c-content-feedback-1 .input-group .btn {
      border: 0; }
  .c-content-feedback-1.c-option-1 .c-contact .form-group > .c-form-borderless {
    border: none; }
  .c-content-feedback-1.c-option-2 {
    padding: 60px 0; }
    .c-content-feedback-1.c-option-2 > .c-content-title-1 > h3 {
      margin-left: -18px; }
      .c-content-feedback-1.c-option-2 > .c-content-title-1 > h3.c-feedback-rtl-title {
        margin-left: 18px; }
    .c-content-feedback-1.c-option-2 > .c-content-title-1 > .c-left {
      margin-bottom: 0;
      left: -7.5px;
      background-color: #ffffff; }
    .c-content-feedback-1.c-option-2 > .c-content-title-1 > .c-right {
      display: block;
      text-align: center;
      position: relative;
      left: 7.5px;
      top: -3px; }
    .c-content-feedback-1.c-option-2 > .c-content-title-1 > .c-line-center {
      position: relative;
      display: block;
      text-align: center;
      width: 15px; }
    .c-content-feedback-1.c-option-2 > .c-content-title-1 > p {
      margin-left: 18px; }
      .c-content-feedback-1.c-option-2 > .c-content-title-1 > p.c-feedback-rtl-subtitle {
        margin-left: -18px; }
      .c-content-feedback-1.c-option-2 > .c-content-title-1 > p > span {
        color: #7f8b96; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feedback-1 > .row > div > .c-container {
    margin-right: 0;
    margin-bottom: 40px; }
  .c-content-feedback-1 > .row > div > .c-contact {
    padding: 40px 30px 0 30px;
    margin: 0; }
  .c-content-feedback-1 > .row > div form .input-group {
    width: 100%; }
  .c-content-feedback-1.c-option-2 > .row > div > .c-contact {
    padding: 30px;
    margin-top: 40px;
    background-color: #ffffff; } }

.c-content-recent-posts-1 {
  padding: 0;
  margin: 0; }
  .c-content-recent-posts-1 > li {
    padding: 15px;
    list-style: none;
    border: 1px solid #eeeeee;
    border-bottom: 0; }
    .c-content-recent-posts-1 > li:last-child {
      border-bottom: 1px solid #eeeeee; }
    .c-content-recent-posts-1 > li > .c-image {
      width: 60px;
      display: inline-block;
      margin-right: 10px;
      float: left; }
    .c-content-recent-posts-1 > li > .c-post {
      padding: 5px 0; }
      .c-content-recent-posts-1 > li > .c-post .c-title {
        font-weight: 400; }
      .c-content-recent-posts-1 > li > .c-post .c-date {
        font-size: 15px;
        color: #5c6873; }
    .c-content-recent-posts-1 > li:after {
      content: "";
      display: table;
      clear: both; }

.c-content-blog-post-1:after {
  content: "";
  display: table;
  clear: both; }

.c-content-blog-post-1 .c-title {
  font-size: 30px;
  color: #3f444a;
  font-weight: 300;
  margin: 30px 0 20px 0; }

.c-content-blog-post-1 .c-desc {
  font-size: 17px;
  color: #5c6873;
  font-weight: 300;
  margin: 0px 0 30px 0; }

.c-content-blog-post-1 .c-panel {
  padding: 5px 10px;
  border: 1px solid #eeeeee; }
  .c-content-blog-post-1 .c-panel:after {
    content: "";
    display: table;
    clear: both; }
  .c-content-blog-post-1 .c-panel .c-author,
  .c-content-blog-post-1 .c-panel .c-date,
  .c-content-blog-post-1 .c-panel .c-comments {
    float: left;
    display: inline-block;
    font-size: 14px;
    color: #5c6873;
    font-weight: 400;
    margin: 6px 10px 3px 0; }
  .c-content-blog-post-1 .c-panel .c-comments {
    float: right; }
    .c-content-blog-post-1 .c-panel .c-comments i {
      position: relative;
      top: 2px;
      color: #8f9ba6; }
  .c-content-blog-post-1 .c-panel .c-tags {
    padding: 0;
    margin: 3px 0px 5px 0;
    float: right;
    display: inline-block; }
    .c-content-blog-post-1 .c-panel .c-tags > li {
      font-size: 13px;
      text-transform: uppercase;
      display: inline-block;
      list-style: none;
      padding: 2px 6px 1px 6px;
      margin: 0 2px; }
      .c-content-blog-post-1 .c-panel .c-tags > li:last-child {
        margin-right: 0; }
  .c-content-blog-post-1 .c-panel .c-author {
    display: inline-block; }

.c-content-blog-post-1 .c-comments {
  margin: 40px 0; }
  .c-content-blog-post-1 .c-comments .c-comment-list {
    margin-bottom: 60px; }
    .c-content-blog-post-1 .c-comments .c-comment-list .media {
      margin-bottom: 30px; }
      .c-content-blog-post-1 .c-comments .c-comment-list .media .media-body > .media:last-child {
        margin-bottom: 0; }
    .c-content-blog-post-1 .c-comments .c-comment-list .media-object {
      height: 50px;
      width: 50px;
      border-radius: 50px !important; }
    .c-content-blog-post-1 .c-comments .c-comment-list .media-heading > a {
      text-transform: uppercase; }
    .c-content-blog-post-1 .c-comments .c-comment-list .media-heading > .c-date {
      text-transform: uppercase;
      font-size: 16px; }

.c-content-blog-post-1-list {
  padding-right: 30px; }
  .c-content-blog-post-1-list:after {
    content: "";
    display: table;
    clear: both; }
  .c-content-blog-post-1-list .c-content-blog-post-1 {
    margin-bottom: 80px; }
  .c-content-blog-post-1-list .c-pagination {
    text-align: center; }

.c-content-blog-post-1-view {
  padding-right: 30px; }
  .c-content-blog-post-1-view:after {
    content: "";
    display: table;
    clear: both; }
  .c-content-blog-post-1-view .c-navigation {
    text-align: center; }

.c-content-blog-post-card-1 .c-body {
  padding: 20px 0; }
  .c-content-blog-post-card-1 .c-body .c-title {
    font-size: 19px;
    font-weight: 500;
    color: #3f444a;
    margin-bottom: 10px; }
  .c-content-blog-post-card-1 .c-body .c-author {
    font-size: 14px;
    font-weight: 400;
    color: #5c6873;
    margin-bottom: 10px; }
  .c-content-blog-post-card-1 .c-body .c-panel {
    padding: 5px 0;
    border-top: 1px solid #eeeeee; }
    .c-content-blog-post-card-1 .c-body .c-panel:after {
      content: "";
      display: table;
      clear: both; }
    .c-content-blog-post-card-1 .c-body .c-panel .c-comments {
      float: left;
      display: inline-block;
      font-size: 15px;
      color: #5c6873;
      font-weight: 400;
      margin: 6px 10px 3px 0; }
      .c-content-blog-post-card-1 .c-body .c-panel .c-comments i {
        position: relative;
        top: 2px;
        color: #8f9ba6; }
    .c-content-blog-post-card-1 .c-body .c-panel .c-tags {
      padding: 0;
      margin: 3px 0px 5px 0;
      float: right;
      display: inline-block; }
      .c-content-blog-post-card-1 .c-body .c-panel .c-tags > li {
        font-size: 13px;
        text-transform: uppercase;
        display: inline-block;
        list-style: none;
        padding: 2px 6px 1px 6px;
        margin: 0 2px; }
        .c-content-blog-post-card-1 .c-body .c-panel .c-tags > li:last-child {
          margin-right: 0; }
    .c-content-blog-post-card-1 .c-body .c-panel .c-author {
      display: inline-block; }
  .c-content-blog-post-card-1 .c-body p {
    display: block;
    clear: both;
    padding: 10px 0 0 0;
    color: #5c6873; }

.c-content-blog-post-card-1.c-option-2 .c-body {
  padding: 30px;
  background: #fff; }
  .c-content-blog-post-card-1.c-option-2 .c-body p {
    padding-bottom: 0; }

.c-content-blog-post-card-1.c-bordered {
  border: 1px solid #eeeeee; }

.c-content-blog-post-card-1-grid {
  padding-right: 40px; }
  .c-content-blog-post-card-1-grid .c-content-blog-post-card-1 {
    margin-bottom: 30px; }
  .c-content-blog-post-card-1-grid .c-pagination {
    margin-top: 30px;
    text-align: center; }

.c-content-blog-post-card-1-slider .c-content-label {
  padding: 6px 10px 2px 10px;
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 10; }

.c-content-counter-1 > .row > div {
  text-align: center; }
  .c-content-counter-1 > .row > div > .c-title {
    font-weight: 300;
    font-size: 20px;
    color: #3f444a;
    margin: 20px 0 15px 0; }
  .c-content-counter-1 > .row > div > .c-counter {
    font-size: 45px;
    font-weight: 300;
    color: #32c5d2;
    margin: 10px auto 30px auto;
    background-color: #fff;
    width: 200px;
    height: 200px;
    padding: 65px 0;
    display: block;
    border-radius: 200px;
    border: 1px solid transparent; }
    .c-content-counter-1 > .row > div > .c-counter.c-bordered {
      border: 4px solid transparent;
      background: none; }
  .c-content-counter-1 > .row > div > .c-content {
    color: #5c6873;
    padding: 0 30px; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-counter-1 > .row > div > .c-title {
    margin-top: 5px; }
  .c-content-counter-1 > .row > div > .c-first {
    margin-top: 0; }
  .c-content-counter-1 > .row > div > .c-content {
    margin-bottom: 60px; } }

.c-content-feature-1 {
  padding-right: 40px; }
  .c-content-feature-1 > h4 {
    font-size: 18px;
    color: #3f444a;
    margin-top: 0;
    font-weight: 500;
    text-transform: uppercase; }
  .c-content-feature-1 p {
    font-size: 18px;
    color: #5c6873; }
  .c-content-feature-1 > h3 {
    font-size: 30px;
    color: #3f444a;
    font-weight: 500;
    margin: 30px 0 25px 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-1 {
    padding-right: 20px; } }

.c-content-feature-2 {
  padding: 40px 40px 40px 40px;
  margin-bottom: 20px;
  background: #ffffff; }
  .c-content-feature-2 .c-icon-wrapper {
    width: 70px;
    height: 70px;
    padding: 10px 0 10px 0;
    float: left;
    margin-right: 25px; }
    .c-content-feature-2 .c-icon-wrapper > .c-content-line-icon {
      width: 60px;
      height: 60px;
      float: left; }
  .c-content-feature-2 .c-title {
    font-size: 20px;
    color: #3f444a;
    margin-top: 0;
    font-weight: 500;
    text-transform: uppercase; }
  .c-content-feature-2 p {
    font-size: 17px;
    color: #5c6873;
    font-weight: 300;
    padding-left: 95px;
    margin: 0; }
  .c-content-feature-2.c-option-2 {
    cursor: pointer;
    padding: 20px 0; }
    .c-content-feature-2.c-option-2 .c-icon-wrapper {
      background: none;
      padding: 15px;
      border: 1px solid #eeeeee; }
      .c-content-feature-2.c-option-2 .c-icon-wrapper > .c-content-line-icon {
        width: 40px;
        height: 40px;
        float: left; }
    .c-content-feature-2.c-option-2:hover .c-icon-wrapper {
      border: 0; }
      .c-content-feature-2.c-option-2:hover .c-icon-wrapper > .c-content-line-icon {
        background-image: url(/public/c825d71be0ba46a3cb15bab040082549.png); }

.c-content-feature-2-grid .c-content-v-center {
  margin-bottom: 20px; }

.c-content-feature-3 {
  padding: 0;
  margin-bottom: 70px;
  text-align: center; }
  .c-content-feature-3 > p {
    color: #ffffff;
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    padding: 40px;
    margin: 0; }
  .c-content-feature-3 > .btn {
    margin-top: 5px; }

.c-content-feature-3-grid {
  text-align: center; }
  .c-content-feature-3-grid > .c-title {
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    font-size: 40px;
    margin: 100px auto 20px auto;
    display: inline-block; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-3 {
    margin-bottom: 40px; }
    .c-content-feature-3 > p {
      padding: 20px; }
    .c-content-feature-3 > .btn {
      margin-top: 5px; }
  .c-content-feature-3-grid > .c-title {
    margin: 70px auto 10px auto; } }

.c-content-feature-4 .c-content-area {
  width: 40%; }

.c-content-feature-4 .c-feature-bg {
  width: 60%; }

.c-content-feature-4 .c-feature-bg,
.c-content-feature-4 .c-content-area {
  height: 750px;
  margin-bottom: -750px; }

.c-content-feature-4 .c-content-left {
  float: left; }
  .c-content-feature-4 .c-content-left.c-semi-circle {
    border-top-right-radius: 35% 50%;
    border-bottom-right-radius: 35% 50%; }
  .c-content-feature-4 .c-content-left.c-diagonal {
    border-right: 200px solid;
    border-top: 750px solid transparent; }
  .c-content-feature-4 .c-content-left.c-arrow {
    border-right: 200px solid;
    border-top: 375px solid transparent;
    border-bottom: 375px solid transparent; }

.c-content-feature-4 .c-content-right {
  float: right; }
  .c-content-feature-4 .c-content-right.c-semi-circle {
    border-top-left-radius: 35% 50%;
    border-bottom-left-radius: 35% 50%; }
  .c-content-feature-4 .c-content-right.c-diagonal {
    border-left: 200px solid;
    border-top: 750px solid transparent; }
  .c-content-feature-4 .c-content-right.c-arrow {
    border-left: 200px solid;
    border-top: 375px solid transparent;
    border-bottom: 375px solid transparent; }

.c-content-feature-4 .c-feature-content {
  padding: 0;
  width: 30%; }
  .c-content-feature-4 .c-feature-content.c-left {
    float: left;
    position: relative; }
  .c-content-feature-4 .c-feature-content.c-right {
    float: right;
    position: relative; }
  .c-content-feature-4 .c-feature-content .c-content-v-center {
    height: 750px; }

@media only screen and (max-width: 1024px) {
  .c-content-feature-4 .c-content-left.c-arrow {
    background-position: center center !important; }
  .c-content-feature-4 .c-content-right.c-arrow {
    background-position: center center !important; } }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-4 {
    height: auto;
    margin-bottom: 0; }
    .c-content-feature-4 .c-content-area {
      width: 0px; }
    .c-content-feature-4 .c-feature-bg {
      width: 100%;
      height: 350px;
      margin-bottom: -350px; }
    .c-content-feature-4 .c-content-left {
      float: left; }
      .c-content-feature-4 .c-content-left.c-semi-circle {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
      .c-content-feature-4 .c-content-left.c-diagonal {
        border-right: 0;
        border-top: 0; }
      .c-content-feature-4 .c-content-left.c-arrow {
        border-right: 0;
        border-top: 0;
        border-bottom: 0; }
    .c-content-feature-4 .c-content-right {
      float: right; }
      .c-content-feature-4 .c-content-right.c-semi-circle {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
      .c-content-feature-4 .c-content-right.c-diagonal {
        border-left: 0;
        border-top: 0; }
      .c-content-feature-4 .c-content-right.c-arrow {
        border-left: 0;
        border-top: 0;
        border-bottom: 0; }
    .c-content-feature-4 .c-feature-content {
      padding: 60px 0;
      height: auto;
      width: 100%; }
      .c-content-feature-4 .c-feature-content > .c-content-v-center {
        height: auto;
        padding-top: 350px; }
      .c-content-feature-4 .c-feature-content.c-left {
        float: left; }
      .c-content-feature-4 .c-feature-content.c-right {
        float: right; } }

.c-content-feature-5 .c-content-title-1 {
  margin-top: 25px; }

.c-content-feature-5 .c-text {
  position: relative;
  background-color: #ffffff;
  width: 40%;
  padding: 25px;
  z-index: 1; }

.c-content-feature-5 .c-photo {
  position: absolute;
  top: 0;
  right: 65px; }

@media (max-width: 1199px) {
  /* 991px */
  .c-content-feature-5 .c-content-title-1 {
    margin: 0; }
  .c-content-feature-5 .c-text {
    position: static;
    width: 100%;
    z-index: auto; }
  .c-content-feature-5 .c-photo {
    position: static;
    margin: 20px 0px; } }

.c-content-feature-6 {
  padding: 0;
  margin: 0;
  width: 100%; }
  .c-content-feature-6 > .c-list {
    margin: 70px 0 0 0;
    display: table;
    width: 100%;
    padding: 0; }
    .c-content-feature-6 > .c-list > li {
      padding: 0 1px 0 0;
      display: table-cell;
      width: 33.3333%; }
      .c-content-feature-6 > .c-list > li > .c-card {
        padding: 40px 40px;
        margin-right: 2px;
        text-align: left; }
        .c-content-feature-6 > .c-list > li > .c-card > h3 {
          margin: 5px 0;
          color: #3f444a; }
        .c-content-feature-6 > .c-list > li > .c-card > p {
          padding: 10px 0;
          margin: 0;
          color: #5c6873; }
      .c-content-feature-6 > .c-list > li > .c-bg-opacity-1 {
        background-color: rgba(255, 255, 255, 0.63); }
      .c-content-feature-6 > .c-list > li > .c-bg-opacity-2 {
        background-color: rgba(255, 255, 255, 0.04); }
    .c-content-feature-6 > .c-list > li:last-child {
      padding: 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-6 > .c-list {
    margin: 40px 0 0 0; }
    .c-content-feature-6 > .c-list > li {
      padding: 0 0 1px 0;
      width: 100%;
      float: left; }
      .c-content-feature-6 > .c-list > li > .c-card {
        padding: 30px;
        margin-right: 0;
        margin-bottom: 2px; } }

.c-content-feature-7 {
  padding: 0;
  margin: 0; }
  .c-content-feature-7 h3 {
    color: #3f444a; }
  .c-content-feature-7 h4 {
    color: #5c6873; }
  .c-content-feature-7 p {
    color: #5c6873; }
  .c-content-feature-7 > li {
    display: table-cell;
    width: 1%; }
    .c-content-feature-7 > li > .c-card {
      padding: 50px 40px; }
      .c-content-feature-7 > li > .c-card > h3 {
        font-size: 23px; }
      .c-content-feature-7 > li > .c-card > h4 {
        font-size: 21px; }
      .c-content-feature-7 > li > .c-card > p {
        padding: 20px 0 40px 0;
        font-size: 16px; }
    .c-content-feature-7 > li > .c-first {
      padding: 50px 40px 50px 0; }
    .c-content-feature-7 > li > .c-last {
      padding: 50px 0 50px 40px; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-7 > li {
    display: block;
    width: 100%; }
    .c-content-feature-7 > li > .c-card {
      padding: 20px 20px 40px 20px;
      margin-right: 0;
      margin-bottom: 2px; } }

.c-content-feature-8 {
  padding: 0;
  margin: 0; }
  .c-content-feature-8 h3 {
    color: #3f444a; }
  .c-content-feature-8 p {
    color: #5c6873; }
  .c-content-feature-8 > .c-grid {
    display: table;
    padding: 0;
    width: 100%; }
    .c-content-feature-8 > .c-grid > li {
      display: table-cell;
      width: 50%;
      padding: 0 5px 0 0;
      float: left; }
      .c-content-feature-8 > .c-grid > li > .c-card {
        padding: 80px; }
        .c-content-feature-8 > .c-grid > li > .c-card.c-bg-opacity-1 {
          background-color: rgba(255, 255, 255, 0.1); }
        .c-content-feature-8 > .c-grid > li > .c-card.c-bg-opacity-2 {
          background-color: rgba(255, 255, 255, 0.8); }
        .c-content-feature-8 > .c-grid > li > .c-card > h3 {
          margin: 0 0 20px 0; }
        .c-content-feature-8 > .c-grid > li > .c-card > p {
          margin: 0;
          line-height: 22px; }
      .c-content-feature-8 > .c-grid > li:last-child {
        padding: 0 0 0 5px; }
  .c-content-feature-8.c-opt-1 > .c-grid > li > .c-img {
    background-color: #7e8daa;
    padding: 128px 80px 129px 80px; }
    .c-content-feature-8.c-opt-1 > .c-grid > li > .c-img h3 {
      margin: 0; }
  .c-content-feature-8.c-opt-2 > .c-grid > li > .c-img {
    background-color: #7e8daa;
    padding: 156px 80px;
    position: relative; }
    .c-content-feature-8.c-opt-2 > .c-grid > li > .c-img h3 {
      margin: 0;
      letter-spacing: 0.5px;
      position: absolute;
      bottom: 20px;
      right: 20px; }

@media (max-width: 1199px) {
  /* 1199px */
  .c-content-feature-8 > .c-grid > li > .c-card {
    padding: 70px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-8 > .c-grid > li {
    padding: 0 0 10px 0;
    width: 100%; }
    .c-content-feature-8 > .c-grid > li:last-child {
      padding: 0 0 10px 0; }
  .c-content-feature-8 > .c-img {
    padding: 0 0 10px 0; } }

@media (max-width: 480px) {
  /* 480px */
  .c-content-feature-8 > .c-grid > li > .c-card {
    padding: 50px; } }

.c-content-feature-9 {
  padding: 0;
  margin: 0;
  width: 100%;
  padding: 20px 0; }
  .c-content-feature-9 h3 {
    color: #3f444a; }
  .c-content-feature-9 p {
    color: #5c6873; }
  .c-content-feature-9 > .c-list {
    display: table;
    width: 100%;
    padding: 0;
    position: relative; }
    .c-content-feature-9 > .c-list > li {
      display: table-cell;
      width: 33.33333%;
      padding: 0 5px 0 0;
      position: relative; }
      .c-content-feature-9 > .c-list > li > .c-card {
        padding: 40px;
        margin-right: 2px;
        position: relative; }
        .c-content-feature-9 > .c-list > li > .c-card > i {
          width: 54px;
          height: 54px;
          border-radius: 27px;
          text-align: center;
          padding: 14px;
          position: absolute;
          z-index: 5; }
        .c-content-feature-9 > .c-list > li > .c-card > .c-float-left {
          float: left;
          margin-right: 22px; }
        .c-content-feature-9 > .c-list > li > .c-card > .c-content-left {
          padding-left: 76px; }
        .c-content-feature-9 > .c-list > li > .c-card .c-content > h3 {
          margin: 0 0 15px 0; }
        .c-content-feature-9 > .c-list > li > .c-card > .c-bg-opacity-4 {
          background-color: rgba(255, 191, 182, 0.2); }
      .c-content-feature-9 > .c-list > li > .c-bg-opacity-2 {
        background-color: rgba(255, 255, 255, 0.63); }
      .c-content-feature-9 > .c-list > li > .c-bg-opacity-3 {
        background-color: rgba(255, 191, 182, 0.11); }
      .c-content-feature-9 > .c-list > li > .c-border-bottom {
        width: 95%;
        height: 1px;
        position: absolute;
        bottom: -1px;
        margin-left: 2.5%; }
      .c-content-feature-9 > .c-list > li > .c-mobile {
        display: none; }
      .c-content-feature-9 > .c-list > li:last-child {
        padding: 0 0 0 5px; }
    .c-content-feature-9 > .c-list > .c-border-middle {
      height: 90%;
      width: 1px;
      position: absolute;
      margin-top: 0.5%;
      top: 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-9 > .c-list > li {
    display: block;
    width: 100%;
    padding: 0 15px 10px 15px; }
    .c-content-feature-9 > .c-list > li > .c-card {
      padding: 40px 20px;
      margin-right: 0;
      margin-bottom: 2px; }
    .c-content-feature-9 > .c-list > li > .c-border-bottom {
      width: 100%;
      height: 1px;
      position: inherit;
      bottom: 0;
      margin-left: 0; }
    .c-content-feature-9 > .c-list > li > .c-mobile {
      display: block; }
    .c-content-feature-9 > .c-list > li:last-child {
      padding: 0 15px; }
  .c-content-feature-9 > .c-list > .c-border-middle {
    display: none; } }

.c-content-feature-10 {
  padding: 0;
  margin: 0;
  width: 100%;
  padding: 20px 0; }
  .c-content-feature-10 h3 {
    color: #3f444a; }
  .c-content-feature-10 p {
    color: #5c6873; }
  .c-content-feature-10 i {
    color: #3f444a; }
  .c-content-feature-10 .c-bg-opacity-1 {
    background-color: rgba(255, 255, 255, 0.1);
    border: none; }
  .c-content-feature-10 .c-bg-opacity-2 {
    background-color: rgba(0, 0, 0, 0.1); }
  .c-content-feature-10 .c-border-opacity {
    border: 1px solid rgba(0, 0, 0, 0.1); }
  .c-content-feature-10 > .c-list {
    display: table;
    width: 100%;
    padding: 0;
    position: relative; }
    .c-content-feature-10 > .c-list > li {
      display: table-cell;
      width: 50%;
      padding: 0 5px 0 0;
      position: relative; }
      .c-content-feature-10 > .c-list > li > .c-card {
        padding: 40px;
        margin-right: 2px; }
        .c-content-feature-10 > .c-list > li > .c-card > i {
          width: 67px;
          height: 67px;
          border-radius: 33.5px;
          text-align: center;
          padding: 20px; }
        .c-content-feature-10 > .c-list > li > .c-card > .c-float-right {
          float: right;
          margin-left: 40px; }
        .c-content-feature-10 > .c-list > li > .c-card > .c-float-left {
          float: left;
          margin-right: 40px; }
        .c-content-feature-10 > .c-list > li > .c-card > .c-content-right {
          padding-right: 107px; }
        .c-content-feature-10 > .c-list > li > .c-card > .c-content-left {
          padding-left: 107px; }
        .c-content-feature-10 > .c-list > li > .c-card .c-content > h3 {
          margin: 0 0 15px 0; }
      .c-content-feature-10 > .c-list > li > .c-border-bottom {
        width: 95%;
        height: 1px;
        position: absolute;
        bottom: -1px;
        margin-left: 2.5%; }
      .c-content-feature-10 > .c-list > li > .c-mobile {
        display: none; }
      .c-content-feature-10 > .c-list > li:last-child {
        padding: 0 0 0 5px; }
    .c-content-feature-10 > .c-list > .c-border-middle {
      height: 90%;
      width: 1px;
      position: absolute;
      margin-top: 0.5%;
      top: 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-10 > .c-list > li {
    display: block;
    width: 100%;
    padding: 0 15px 10px 15px; }
    .c-content-feature-10 > .c-list > li > .c-card {
      padding: 40px 20px;
      margin-right: 0;
      margin-bottom: 2px; }
    .c-content-feature-10 > .c-list > li > .c-border-bottom {
      width: 100%;
      height: 1px;
      position: inherit;
      bottom: 0;
      margin-left: 0; }
    .c-content-feature-10 > .c-list > li > .c-mobile {
      display: block; }
    .c-content-feature-10 > .c-list > li:last-child {
      padding: 0 15px; }
  .c-content-feature-10 > .c-list > .c-border-middle {
    display: none; } }

.c-content-feature-11 {
  padding: 0;
  margin: 0; }
  .c-content-feature-11 .c-grid {
    padding-right: 35px; }
    .c-content-feature-11 .c-grid > .c-grid-row {
      display: table;
      padding: 0;
      width: 100%; }
      .c-content-feature-11 .c-grid > .c-grid-row:last-child {
        margin: 0; }
      .c-content-feature-11 .c-grid > .c-grid-row > li {
        display: table-cell;
        width: 50%;
        padding-right: 10px; }
        .c-content-feature-11 .c-grid > .c-grid-row > li > .c-card {
          padding: 40px;
          text-align: left; }
          .c-content-feature-11 .c-grid > .c-grid-row > li > .c-card > h3 {
            margin: 0 0 20px 0;
            color: #3f444a; }
          .c-content-feature-11 .c-grid > .c-grid-row > li > .c-card > p {
            margin: 0;
            line-height: 22px;
            color: #5c6873; }
        .c-content-feature-11 .c-grid > .c-grid-row > li > .c-bg-opacity-1 {
          background-color: rgba(255, 255, 255, 0.7); }
        .c-content-feature-11 .c-grid > .c-grid-row > li > .c-bg-opacity-2 {
          background-color: rgba(255, 255, 255, 0.04); }
  .c-content-feature-11 .c-video {
    padding-left: 45px; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-11 .c-grid {
    padding: 0 15px; }
    .c-content-feature-11 .c-grid > .c-grid-row {
      margin: 0; }
      .c-content-feature-11 .c-grid > .c-grid-row > li {
        display: block;
        width: 100%;
        padding: 0 0 10px 0; }
        .c-content-feature-11 .c-grid > .c-grid-row > li > .c-card {
          padding: 30px; }
        .c-content-feature-11 .c-grid > .c-grid-row > li:last-child {
          padding: 0 0 10px 0; }
  .c-content-feature-11 .c-video {
    padding: 10px 15px 0 15px; } }

.c-content-feature-13 .c-feature-13-container {
  padding: 80px; }

.c-content-feature-13 .c-feature-13-tile {
  padding: 20px; }
  .c-content-feature-13 .c-feature-13-tile > i {
    float: left; }
  .c-content-feature-13 .c-feature-13-tile > .c-feature-13-content {
    padding-left: 45px; }
    .c-content-feature-13 .c-feature-13-tile > .c-feature-13-content > h4 {
      margin-top: 0;
      font-size: 18px; }

.c-content-feature-14 {
  padding: 80px 0;
  overflow: auto; }
  .c-content-feature-14 img {
    max-width: 100%; }
  .c-content-feature-14 .c-feature-14-title {
    margin-top: 4em; }
  .c-content-feature-14 .c-feature-gallery {
    margin: 20px 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-14 {
    padding: 60px 0;
    border-bottom: 1px solid #eee; }
    .c-content-feature-14:last-child {
      border-bottom: none; }
    .c-content-feature-14 img {
      display: block;
      margin: 0 auto; }
    .c-content-feature-14 .c-feature-14-title {
      margin-top: 0; }
    .c-content-feature-14 .c-feature-14-btn {
      text-align: center;
      margin-bottom: 20px; }
      .c-content-feature-14 .c-feature-14-btn a {
        margin: 0 0 10px 0; } }

.c-content-feature-15 .c-feature-15-container {
  padding: 60px;
  margin: 80px 0; }
  .c-content-feature-15 .c-feature-15-container .c-feature-15-title {
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 3px solid; }
  .c-content-feature-15 .c-feature-15-container .c-feature-15-desc {
    margin-bottom: 30px; }
  .c-content-feature-15 .c-feature-15-container .c-feature-15-img {
    width: 100%;
    height: auto; }

.c-content-feature-15.c-content-feature-15-5 .c-feature-15-container {
  border-radius: 15px;
  padding: 80px;
  overflow: hidden; }
  .c-content-feature-15.c-content-feature-15-5 .c-feature-15-container .c-feature-15-title {
    border: none;
    padding-left: 0;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 600; }
  .c-content-feature-15.c-content-feature-15-5 .c-feature-15-container .c-feature-15-desc {
    margin-bottom: 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-feature-15 .c-feature-15-container .c-feature-15-img {
    margin-bottom: 30px; }
  .c-content-feature-15.c-content-feature-15-5 .c-feature-15-container {
    border-radius: 15px;
    padding: 30px;
    margin: 20px; } }

.c-content-feature-16 .c-feature-16-container {
  padding: 80px 60px; }
  .c-content-feature-16 .c-feature-16-container .c-feature-16-line {
    width: 3em;
    height: 1px;
    margin-bottom: 20px; }
  .c-content-feature-16 .c-feature-16-container .c-feature-16-title {
    margin-bottom: 30px; }
  .c-content-feature-16 .c-feature-16-container .c-feature-16-desc {
    margin-bottom: 30px; }

.c-content-feature-17 {
  height: 600px; }
  .c-content-feature-17 .c-content-feature-container {
    text-align: center; }
    .c-content-feature-17 .c-content-feature-container > .c-content-feature-title {
      padding: 120px 0 60px 0;
      letter-spacing: -1px;
      font-weight: 700;
      font-size: 60px; }
    .c-content-feature-17 .c-content-feature-container > .c-content-feature-btn .btn {
      border: 1px solid rgba(255, 255, 255, 0.5);
      font-size: 16px;
      font-weight: 500;
      padding: 15px 35px; }

@media (max-width: 768px) {
  .c-content-feature-17 {
    height: 650px; }
    .c-content-feature-17 .c-content-feature-container > .c-content-feature-title {
      font-size: 40px; } }

.c-content-person-1 .c-body {
  padding: 20px 0; }
  .c-content-person-1 .c-body .c-head .c-name {
    display: inline-block;
    float: left;
    font-size: 20px;
    font-weight: 400;
    color: #3f444a; }
  .c-content-person-1 .c-body .c-head .c-socials {
    display: inline-block;
    float: right;
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0; }
    .c-content-person-1 .c-body .c-head .c-socials > li {
      padding: 0;
      margin: 0;
      display: inline-block; }
      .c-content-person-1 .c-body .c-head .c-socials > li > a:hover {
        text-decoration: none; }
      .c-content-person-1 .c-body .c-head .c-socials > li > a > i {
        color: #a3aeb9;
        padding: 4px;
        font-size: 16px;
        border-radius: 100%; }
        .c-content-person-1 .c-body .c-head .c-socials > li > a > i:hover {
          color: #fff; }
  .c-content-person-1 .c-body .c-position {
    display: block;
    clear: both;
    margin-top: 0px;
    display: inline-block;
    float: left;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #7a838e; }
  .c-content-person-1 .c-body p {
    display: block;
    clear: both;
    padding: 10px 0 0 0;
    color: #5c6873; }

.c-content-person-1.c-option-2 .c-body {
  padding: 30px;
  background: #fff; }
  .c-content-person-1.c-option-2 .c-body p {
    padding-bottom: 0; }

.c-content-person-1.c-bordered {
  border: 1px solid #eeeeee;
  padding: 20px; }

.c-content-person-1.c-shadow {
  box-shadow: 0px 3px 18px -5px rgba(0, 0, 0, 0.3); }

.c-content-client-logos-1 {
  padding-left: 20px; }
  .c-content-client-logos-1 .c-logos {
    padding-left: 20px; }
    .c-content-client-logos-1 .c-logos .row > div {
      padding: 0; }
  .c-content-client-logos-1 .c-logo {
    display: block;
    overflow: hidden; }
  .c-content-client-logos-1 .c-logo-1 {
    border-right: 1px solid #edeff0;
    border-bottom: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logo-2 {
    border-right: 1px solid #edeff0;
    border-bottom: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logo-3 {
    border-bottom: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logo-4 {
    border-right: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logo-5 {
    border-right: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-img-pos {
    position: relative;
    left: 50%;
    margin-left: -90px; }

@media (max-width: 1199px) {
  /* <= 1199px */
  .c-content-client-logos-1 .c-logo-2 {
    border-right: 1px solid #edeff0;
    border-bottom: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logo-3 {
    border-right: none;
    border-bottom: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logo-4 {
    border-right: 1px solid #edeff0;
    border-bottom: none; } }

@media (max-width: 991px) {
  /* <= 991px */
  .c-content-client-logos-1 .c-logos .c-logo-2 {
    border-right: none;
    border-bottom: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logos .c-logo-3 {
    border-right: 1px solid #edeff0;
    border-bottom: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logos .c-logo-4 {
    border-right: none;
    border-bottom: 1px solid #edeff0; } }

@media (max-width: 768px) {
  /* >= 768px */
  .c-content-client-logos-1 .c-logo-2 {
    border-right: none;
    border-bottom: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logo-3 {
    border-bottom: 1px solid #edeff0;
    border-right: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logo-4 {
    border-right: none;
    border-bottom: 1px solid #edeff0; } }

@media (max-width: 767px) {
  /* <= 767px */
  .c-content-client-logos-1 {
    padding: 0;
    margin-top: 40px; }
    .c-content-client-logos-1 .c-logos {
      padding: 0; }
    .c-content-client-logos-1 .c-logo-2 {
      border-right: 1px solid #edeff0;
      border-bottom: 1px solid #edeff0; }
    .c-content-client-logos-1 .c-logo-3 {
      border-bottom: 1px solid #edeff0;
      border-right: none; }
    .c-content-client-logos-1 .c-logo-4 {
      border-right: 1px solid #edeff0;
      border-bottom: none; } }

@media (max-width: 480px) {
  /* >= 480px */
  .c-content-client-logos-1 .c-logo-2 {
    border-right: none;
    border-bottom: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logo-3 {
    border-right: 1px solid #edeff0;
    border-bottom: 1px solid #edeff0; }
  .c-content-client-logos-1 .c-logo-4 {
    border-right: none;
    border-bottom: 1px solid #edeff0; } }

.c-content-client-logos-slider-1 .item {
  text-align: center; }
  .c-content-client-logos-slider-1 .item img {
    max-width: 230px;
    opacity: 0.8;
    filter: alpha(opacity=80);
    transition: all 0.2s; }
    .c-content-client-logos-slider-1 .item img:hover {
      opacity: 1;
      filter: alpha(opacity=100);
      transition: all 0.2s; }

.c-content-client-logos-slider-3 .owl-item {
  padding: 0 20px; }

.c-content-client-logos-slider-3 .item {
  text-align: center;
  padding: 20px 0; }
  .c-content-client-logos-slider-3 .item img {
    max-width: 230px;
    opacity: 0.8;
    filter: alpha(opacity=80);
    transition: all 0.2s;
    border-radius: 15px; }
    .c-content-client-logos-slider-3 .item img:hover {
      opacity: 1;
      filter: alpha(opacity=100);
      transition: all 0.2s;
      box-shadow: 0 0 30px 0 #eee; }

.c-content-client-logos-slider-3 .owl-controls {
  opacity: 0;
  transition: all 0.2s;
  margin-top: 0; }

.c-content-client-logos-slider-3:hover .owl-controls {
  opacity: 1; }

.c-content-subscribe-form-1 {
  padding: 5px 0 13px 0; }
  .c-content-subscribe-form-1 .c-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 10px; }
  .c-content-subscribe-form-1 .c-body {
    color: #6a7887; }
  .c-content-subscribe-form-1 form {
    padding-top: 30px; }
  .c-content-subscribe-form-1 .input-group > .form-control {
    color: #6f7b89;
    font-size: 17px;
    font-weight: 300;
    border-radius: 0;
    box-shadow: none;
    border-color: #41464c;
    background: transparent;
    padding: 8px 16px; }
    .c-content-subscribe-form-1 .input-group > .form-control::-moz-placeholder {
      color: #58626d; }
    .c-content-subscribe-form-1 .input-group > .form-control:-moz-placeholder {
      color: #58626d; }
    .c-content-subscribe-form-1 .input-group > .form-control:-ms-input-placeholder {
      color: #58626d; }
    .c-content-subscribe-form-1 .input-group > .form-control::-webkit-input-placeholder {
      color: #58626d; }
    .c-content-subscribe-form-1 .input-group > .form-control:focus {
      box-shadow: none;
      border-color: #474f59; }
  .c-content-subscribe-form-1 .input-group .btn {
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0;
    border: 0; }
  .c-content-subscribe-form-1.c-subscribe-form-light .c-title {
    color: #3f444a; }
  .c-content-subscribe-form-1.c-subscribe-form-light .c-body {
    color: #5c6873; }
  .c-content-subscribe-form-1.c-subscribe-form-light .input-group > .form-control {
    background: #ffffff;
    color: #5c6873;
    border-color: transparent; }
    .c-content-subscribe-form-1.c-subscribe-form-light .input-group > .form-control::-moz-placeholder {
      color: #73828f; }
    .c-content-subscribe-form-1.c-subscribe-form-light .input-group > .form-control:-moz-placeholder {
      color: #73828f; }
    .c-content-subscribe-form-1.c-subscribe-form-light .input-group > .form-control:-ms-input-placeholder {
      color: #73828f; }
    .c-content-subscribe-form-1.c-subscribe-form-light .input-group > .form-control::-webkit-input-placeholder {
      color: #73828f; }
    .c-content-subscribe-form-1.c-subscribe-form-light .input-group > .form-control:focus {
      border-color: transparent; }
  .c-content-subscribe-form-1 div[aria-hidden="true"] {
    display: none; }

@media (max-width: 991px) {
  /* 991px */ }

.c-content-subscribe-form-3 {
  display: table;
  margin: 10px auto;
  width: 500px;
  border-radius: 25px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 0 15px;
  vertical-align: middle; }
  .c-content-subscribe-form-3 .c-content-subscribe-form-3-input,
  .c-content-subscribe-form-3 .c-content-subscribe-form-3-btn {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 300; }
  .c-content-subscribe-form-3 .c-content-subscribe-form-3-input {
    border: none;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 12px;
    font-weight: 300; }
    .c-content-subscribe-form-3 .c-content-subscribe-form-3-input::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #fff;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 12px;
      font-weight: 300; }
    .c-content-subscribe-form-3 .c-content-subscribe-form-3-input::-moz-placeholder {
      /* Firefox 19+ */
      color: #fff;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 12px;
      font-weight: 300; }
    .c-content-subscribe-form-3 .c-content-subscribe-form-3-input:-ms-input-placeholder {
      /* IE 10+ */
      color: #fff;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 12px;
      font-weight: 300; }
    .c-content-subscribe-form-3 .c-content-subscribe-form-3-input:-moz-placeholder {
      /* Firefox 18- */
      color: #fff;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 12px;
      font-weight: 300; }
  .c-content-subscribe-form-3 .c-content-subscribe-form-3-btn {
    width: 28px;
    padding-right: 15px; }
    .c-content-subscribe-form-3 .c-content-subscribe-form-3-btn .btn {
      padding: 0; }
      .c-content-subscribe-form-3 .c-content-subscribe-form-3-btn .btn:hover, .c-content-subscribe-form-3 .c-content-subscribe-form-3-btn .btn:active {
        background-color: transparent;
        border-color: transparent; }
  .c-content-subscribe-form-3 div[aria-hidden="true"] {
    display: none; }

@media (max-width: 480px) {
  /* 480px */
  .c-content-subscribe-form-3 {
    width: 100%; } }

.c-content-subscribe-form-4 {
  display: table;
  margin: 100px auto;
  width: 500px;
  border-radius: 55px;
  overflow: hidden;
  padding: 20px 23px;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.15); }
  .c-content-subscribe-form-4 .c-content-subscribe-form-input,
  .c-content-subscribe-form-4 .c-content-subscribe-form-btn {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 300;
    background-color: transparent;
    border: none; }
  .c-content-subscribe-form-4 .c-content-subscribe-form-input {
    border: none;
    color: #bcbdc7;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px; }
    .c-content-subscribe-form-4 .c-content-subscribe-form-input::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #bcbdc7;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.5px; }
    .c-content-subscribe-form-4 .c-content-subscribe-form-input::-moz-placeholder {
      /* Firefox 19+ */
      color: #bcbdc7;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.5px; }
    .c-content-subscribe-form-4 .c-content-subscribe-form-input:-ms-input-placeholder {
      /* IE 10+ */
      color: #bcbdc7;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.5px; }
    .c-content-subscribe-form-4 .c-content-subscribe-form-input:-moz-placeholder {
      /* Firefox 18- */
      color: #bcbdc7;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.5px; }
  .c-content-subscribe-form-4 .c-content-subscribe-form-btn {
    width: 28px;
    padding-right: 15px; }
    .c-content-subscribe-form-4 .c-content-subscribe-form-btn .btn {
      padding: 0;
      background-color: transparent; }
  .c-content-subscribe-form-4 div[aria-hidden="true"] {
    display: none; }

@media (max-width: 480px) {
  /* 480px */
  .c-content-subscribe-form-4 {
    width: 100%;
    padding: 15px 5px; } }

.c-content-events-1 .c-content-events-1-item {
  background-color: transparent; }
  .c-content-events-1 .c-content-events-1-item.c-events-1-featured {
    background-color: #fff;
    box-shadow: 0 0 30px 0 #eee;
    padding: 40px 35px;
    border-radius: 15px; }
    .c-content-events-1 .c-content-events-1-item.c-events-1-featured > .c-content-events-1-content-container > .c-content-events-1-link {
      font-size: 12px;
      font-weight: 600;
      color: #fff;
      padding: 15px 30px; }
  .c-content-events-1 .c-content-events-1-item > .c-content-events-1-img-container {
    margin: 0 0 30px 0; }
    .c-content-events-1 .c-content-events-1-item > .c-content-events-1-img-container > .c-content-events-1-img {
      width: 100%;
      height: auto; }
  .c-content-events-1 .c-content-events-1-item > .c-content-events-1-content-container > .c-content-events-1-cat {
    color: #aaa;
    font-size: 15px;
    font-weight: 300;
    margin: 0 0 20px 0; }
  .c-content-events-1 .c-content-events-1-item > .c-content-events-1-content-container > .c-content-events-1-title {
    font-size: 20px;
    color: #181816;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin: 0 0 30px 0; }
  .c-content-events-1 .c-content-events-1-item > .c-content-events-1-content-container > .c-content-events-1-desc {
    font-weight: 300;
    color: #7c8387;
    letter-spacing: 0.5px;
    line-height: 1.7em;
    margin: 0 0 35px 0; }
  .c-content-events-1 .c-content-events-1-item > .c-content-events-1-content-container > .c-content-events-1-link {
    color: #6aaaf4;
    font-weight: 400; }
    .c-content-events-1 .c-content-events-1-item > .c-content-events-1-content-container > .c-content-events-1-link:hover {
      border-bottom: 1px solid #eee; }
  .c-content-events-1 .c-content-events-1-item > .c-content-events-1-content-container > .c-content-events-1-list {
    line-height: 1.7em;
    margin: -10px 0 30px 0;
    padding-left: 1.3em; }
    .c-content-events-1 .c-content-events-1-item > .c-content-events-1-content-container > .c-content-events-1-list > .c-content-events-1-list-item {
      list-style-type: disc;
      color: #428de4; }
      .c-content-events-1 .c-content-events-1-item > .c-content-events-1-content-container > .c-content-events-1-list > .c-content-events-1-list-item > span {
        color: #7c8387; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-events-1 .c-content-events-1-item {
    margin-bottom: 40px; }
    .c-content-events-1 .c-content-events-1-item.c-events-1-featured {
      margin-bottom: 0; } }

.c-content-quote-1 > .c-quote-title {
  color: #404148;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px; }

.c-content-quote-1 > .c-quote-desc-container {
  display: table; }
  .c-content-quote-1 > .c-quote-desc-container > .c-quote-btn {
    display: table-cell;
    width: 1px;
    box-shadow: 0 0 20px 0 rgba(90, 131, 249, 0.28);
    padding: 20px 30px;
    border-radius: 40px !important;
    vertical-align: middle; }
  .c-content-quote-1 > .c-quote-desc-container > .c-quote-desc {
    display: table-cell;
    vertical-align: middle;
    color: #a7a8af;
    font-size: 15px;
    font-weight: 300;
    padding-left: 50px; }

@media (max-width: 480px) {
  /* 480px */
  .c-content-quote-1 > .c-quote-title {
    text-align: center; }
  .c-content-quote-1 > .c-quote-desc-container {
    display: block; }
    .c-content-quote-1 > .c-quote-desc-container > .c-quote-btn {
      display: block;
      width: auto;
      margin-bottom: 40px; }
    .c-content-quote-1 > .c-quote-desc-container > .c-quote-desc {
      display: block;
      padding-left: 0;
      text-align: center; } }

.c-content-tab-1 .nav,
.c-content-tab-1 .nav.nav-justified {
  border: 0;
  border-bottom: 3px solid none; }
  .c-content-tab-1 .nav > li > a,
  .c-content-tab-1 .nav.nav-justified > li > a {
    color: #3f444a;
    border: 0;
    border-bottom: 3px solid none; }
  .c-content-tab-1 .nav > li:hover, .c-content-tab-1 .nav > li:focus, .c-content-tab-1 .nav > li:active, .c-content-tab-1 .nav > li.active,
  .c-content-tab-1 .nav.nav-justified > li:hover,
  .c-content-tab-1 .nav.nav-justified > li:focus,
  .c-content-tab-1 .nav.nav-justified > li:active,
  .c-content-tab-1 .nav.nav-justified > li.active {
    background: none; }
    .c-content-tab-1 .nav > li:hover > a, .c-content-tab-1 .nav > li:focus > a, .c-content-tab-1 .nav > li:active > a, .c-content-tab-1 .nav > li.active > a,
    .c-content-tab-1 .nav.nav-justified > li:hover > a,
    .c-content-tab-1 .nav.nav-justified > li:focus > a,
    .c-content-tab-1 .nav.nav-justified > li:active > a,
    .c-content-tab-1 .nav.nav-justified > li.active > a {
      background: none;
      transition: none;
      border: 0;
      border-bottom: 3px solid #32c5d2; }
  .c-content-tab-1 .nav.tabs-left,
  .c-content-tab-1 .nav.nav-justified.tabs-left {
    border: 0;
    border-right: 1px solid #eeeeee; }
    .c-content-tab-1 .nav.tabs-left > li > a,
    .c-content-tab-1 .nav.nav-justified.tabs-left > li > a {
      border: 0;
      border-right: 3px solid transparent; }
    .c-content-tab-1 .nav.tabs-left > li:hover, .c-content-tab-1 .nav.tabs-left > li:focus, .c-content-tab-1 .nav.tabs-left > li:active, .c-content-tab-1 .nav.tabs-left > li.active,
    .c-content-tab-1 .nav.nav-justified.tabs-left > li:hover,
    .c-content-tab-1 .nav.nav-justified.tabs-left > li:focus,
    .c-content-tab-1 .nav.nav-justified.tabs-left > li:active,
    .c-content-tab-1 .nav.nav-justified.tabs-left > li.active {
      background: #f7f7f7; }
      .c-content-tab-1 .nav.tabs-left > li:hover > a, .c-content-tab-1 .nav.tabs-left > li:focus > a, .c-content-tab-1 .nav.tabs-left > li:active > a, .c-content-tab-1 .nav.tabs-left > li.active > a,
      .c-content-tab-1 .nav.nav-justified.tabs-left > li:hover > a,
      .c-content-tab-1 .nav.nav-justified.tabs-left > li:focus > a,
      .c-content-tab-1 .nav.nav-justified.tabs-left > li:active > a,
      .c-content-tab-1 .nav.nav-justified.tabs-left > li.active > a {
        border-radius: 0;
        background: none;
        transition: none;
        border: 0;
        border-right: 3px solid #32c5d2; }
    .c-content-tab-1 .nav.tabs-left > li:last-child > a,
    .c-content-tab-1 .nav.nav-justified.tabs-left > li:last-child > a {
      border-bottom: 0; }
  .c-content-tab-1 .nav.tabs-right,
  .c-content-tab-1 .nav.nav-justified.tabs-right {
    border: 0;
    border-left: 1px solid #eeeeee; }
    .c-content-tab-1 .nav.tabs-right > li > a,
    .c-content-tab-1 .nav.nav-justified.tabs-right > li > a {
      border: 0;
      border-left: 3px solid transparent; }
    .c-content-tab-1 .nav.tabs-right > li:hover, .c-content-tab-1 .nav.tabs-right > li:focus, .c-content-tab-1 .nav.tabs-right > li:active, .c-content-tab-1 .nav.tabs-right > li.active,
    .c-content-tab-1 .nav.nav-justified.tabs-right > li:hover,
    .c-content-tab-1 .nav.nav-justified.tabs-right > li:focus,
    .c-content-tab-1 .nav.nav-justified.tabs-right > li:active,
    .c-content-tab-1 .nav.nav-justified.tabs-right > li.active {
      background: #f7f7f7; }
      .c-content-tab-1 .nav.tabs-right > li:hover > a, .c-content-tab-1 .nav.tabs-right > li:focus > a, .c-content-tab-1 .nav.tabs-right > li:active > a, .c-content-tab-1 .nav.tabs-right > li.active > a,
      .c-content-tab-1 .nav.nav-justified.tabs-right > li:hover > a,
      .c-content-tab-1 .nav.nav-justified.tabs-right > li:focus > a,
      .c-content-tab-1 .nav.nav-justified.tabs-right > li:active > a,
      .c-content-tab-1 .nav.nav-justified.tabs-right > li.active > a {
        border-radius: 0;
        background: none;
        transition: none;
        border: 0;
        border-left: 3px solid #32c5d2; }
    .c-content-tab-1 .nav.tabs-right > li:last-child > a,
    .c-content-tab-1 .nav.nav-justified.tabs-right > li:last-child > a {
      border-bottom: 0; }
  .c-content-tab-1 .nav.tabs-below,
  .c-content-tab-1 .nav.nav-justified.tabs-below {
    border: 0;
    border-top: 0; }
    .c-content-tab-1 .nav.tabs-below > li > a,
    .c-content-tab-1 .nav.nav-justified.tabs-below > li > a {
      border: 0;
      border-top: 3px solid transparent; }
    .c-content-tab-1 .nav.tabs-below > li:hover, .c-content-tab-1 .nav.tabs-below > li:focus, .c-content-tab-1 .nav.tabs-below > li:active, .c-content-tab-1 .nav.tabs-below > li.active,
    .c-content-tab-1 .nav.nav-justified.tabs-below > li:hover,
    .c-content-tab-1 .nav.nav-justified.tabs-below > li:focus,
    .c-content-tab-1 .nav.nav-justified.tabs-below > li:active,
    .c-content-tab-1 .nav.nav-justified.tabs-below > li.active {
      background: none; }
      .c-content-tab-1 .nav.tabs-below > li:hover > a, .c-content-tab-1 .nav.tabs-below > li:focus > a, .c-content-tab-1 .nav.tabs-below > li:active > a, .c-content-tab-1 .nav.tabs-below > li.active > a,
      .c-content-tab-1 .nav.nav-justified.tabs-below > li:hover > a,
      .c-content-tab-1 .nav.nav-justified.tabs-below > li:focus > a,
      .c-content-tab-1 .nav.nav-justified.tabs-below > li:active > a,
      .c-content-tab-1 .nav.nav-justified.tabs-below > li.active > a {
        border-radius: 0;
        background: none;
        transition: none;
        border: 0;
        border-top: 3px solid #32c5d2; }

.c-content-tab-1 .tab-content {
  padding: 0; }
  .c-content-tab-1 .tab-content.c-bordered {
    border: 1px solid #eeeeee; }
  .c-content-tab-1 .tab-content.c-left-bordered {
    border-left: 1px solid #eeeeee; }
  .c-content-tab-1 .tab-content.c-right-bordered {
    border-right: 1px solid #eeeeee; }
  .c-content-tab-1 .tab-content.c-padding-sm {
    padding: 5px; }
  .c-content-tab-1 .tab-content.c-padding {
    padding: 15px; }
  .c-content-tab-1 .tab-content.c-padding-lg {
    padding: 30px; }

.c-content-tab-2 > .nav {
  text-align: center; }
  .c-content-tab-2 > .nav > li {
    float: none;
    display: inline-block; }
    .c-content-tab-2 > .nav > li > a > i {
      font-size: 38px; }
    .c-content-tab-2 > .nav > li > a > .c-title {
      display: block;
      margin: 20px 0;
      color: #525e64; }
    .c-content-tab-2 > .nav > li > a > .c-content-line-icon {
      width: 55px;
      height: 55px; }
    .c-content-tab-2 > .nav > li.active > .c-arrow {
      position: relative; }
      .c-content-tab-2 > .nav > li.active > .c-arrow:before {
        bottom: 100%;
        left: 50%;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border: 13px solid transparent;
        margin-left: -13px; }
    .c-content-tab-2 > .nav > li:not(.active) > a > .c-content-line-icon {
      opacity: 0.9;
      filter: alpha(opacity=90);
      background-image: url(/public/e7115c0d439c58741658077af3b5da98.png); }
    .c-content-tab-2 > .nav > li + li {
      margin-left: 20px; }

.c-content-tab-2 > .c-tab-content .tab-content {
  padding: 80px 0;
  overflow: auto; }

.c-content-tab-2 > .c-tab-content .c-tab-pane > h4 {
  margin-bottom: 16px; }

.c-content-tab-2 > .c-tab-content .c-tab-pane > img {
  float: right;
  margin-left: 100px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1); }

.c-content-tab-2 > .c-tab-content .c-tab-pane > .c-title {
  line-height: 1.6em; }

.c-content-tab-2 > .c-tab-content .c-tab-pane p {
  color: #838e9a; }

.c-content-tab-2 > .c-tab-content .c-tab-pane > .btn {
  margin-top: 12px; }

.c-content-tab-2.c-opt-1 > .nav li > a {
  color: #cfd9e6;
  background-color: transparent;
  transition: all 0.2s; }
  .c-content-tab-2.c-opt-1 > .nav li > a:hover {
    color: #32c5d2;
    transition: all 0.2s; }

.c-content-tab-2.c-opt-1 > .nav li:hover > a {
  color: #32c5d2; }

.c-content-tab-2.c-opt-1 > .nav li.active > a {
  color: #32c5d2; }
  .c-content-tab-2.c-opt-1 > .nav li.active > a:hover {
    color: #32c5d2; }

.c-content-tab-2.c-opt-1 > .nav li.active > .c-arrow:before {
  border-bottom-color: #2f353b; }

.c-content-tab-2.c-opt-1 > .nav.c-hover-lighten a:hover {
  opacity: 1; }

.c-content-tab-2.c-opt-1 > .c-tab-content {
  background-color: #2f353b; }
  .c-content-tab-2.c-opt-1 > .c-tab-content .c-tab-pane > h4 {
    color: #ffffff; }
  .c-content-tab-2.c-opt-1 > .c-tab-content .c-tab-pane > .c-title {
    color: #97a1ac; }

.c-title-tab-2 > h4 {
  margin: 15px 0 36px;
  font-weight: 400; }
  .c-title-tab-2 > h4 > .c-title-border {
    width: 65px;
    height: 2px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px; }

.c-title-tab-2.c-opt-title-1 > h4 {
  color: #455055; }
  .c-title-tab-2.c-opt-title-1 > h4 > .c-title-border {
    background-color: #22afd7; }

.c-title-tab-2.c-opt-title-2 > h4 {
  color: #455055; }
  .c-title-tab-2.c-opt-title-2 > h4 > .c-title-border {
    background-color: #71c9ce; }

.c-title-tab-2.c-opt-title-3 > h4 {
  color: #ffffff; }
  .c-title-tab-2.c-opt-title-3 > h4 > .c-title-border {
    background-color: #ff6b57; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-tab-2 > .nav a > i {
    font-size: 40px; }
  .c-content-tab-2 > .nav a > .c-title {
    margin: 10px 0; } }

@media (max-width: 767px) {
  /* 766px */
  .c-content-tab-2 > .nav li.active > .c-arrow {
    position: static; }
    .c-content-tab-2 > .nav li.active > .c-arrow:before {
      border: 0; }
  .c-content-tab-2 > .c-tab-content img {
    width: 100%;
    float: none;
    clear: both;
    padding: 0;
    margin-bottom: 20px; }
  .c-content-tab-2 > .c-tab-content h4 {
    margin: 20px 0; } }

.c-content-tab-3 .nav {
  text-align: center;
  width: 1170px;
  margin: auto; }
  .c-content-tab-3 .nav > li {
    float: left;
    display: inline-block; }
    .c-content-tab-3 .nav > li > a {
      border-radius: 0px;
      padding: 20px 50px; }
    .c-content-tab-3 .nav > li + li {
      margin-left: 2px; }
      .c-content-tab-3 .nav > li + li > .c-separator {
        top: 20px;
        left: -2px;
        width: 2px;
        height: 21px;
        position: absolute; }
    .c-content-tab-3 .nav > li.active > .c-separator {
      visibility: hidden; }
    .c-content-tab-3 .nav > li.active + li > .c-separator {
      visibility: hidden; }

.c-content-tab-3 > .c-tab-content {
  padding: 85px 0 60px 0; }
  .c-content-tab-3 > .c-tab-content ul.c-items {
    margin: 0;
    padding: 0; }
    .c-content-tab-3 > .c-tab-content ul.c-items > li {
      margin: 0 0 0 -13px;
      list-style: none; }
      .c-content-tab-3 > .c-tab-content ul.c-items > li + li {
        padding-top: 25px; }
      .c-content-tab-3 > .c-tab-content ul.c-items > li > h4 {
        margin: 0 0 15px; }
        .c-content-tab-3 > .c-tab-content ul.c-items > li > h4 > i {
          margin-right: 10px; }
  .c-content-tab-3 > .c-tab-content .btn {
    margin: 32px 0 0 -13px; }
  .c-content-tab-3 > .c-tab-content ul.c-photos {
    margin-right: -30px; }
    .c-content-tab-3 > .c-tab-content ul.c-photos > li {
      list-style: none; }
      .c-content-tab-3 > .c-tab-content ul.c-photos > li + li {
        margin-bottom: 20px; }

.c-content-tab-3.c-opt-1 .nav > li > a {
  color: #7f96b2;
  background-color: #edf1f5; }
  .c-content-tab-3.c-opt-1 .nav > li > a:hover {
    background-color: #ffffff; }

.c-content-tab-3.c-opt-1 .nav > li.active > a {
  color: #32c5d2;
  background-color: #ffffff; }

.c-content-tab-3.c-opt-1 > .c-tab-content {
  background-color: #ffffff; }
  .c-content-tab-3.c-opt-1 > .c-tab-content ul.c-items > li > h4 {
    color: #5f6f77; }
    .c-content-tab-3.c-opt-1 > .c-tab-content ul.c-items > li > h4 > i {
      color: #78a2c9; }
  .c-content-tab-3.c-opt-1 > .c-tab-content ul.c-items > li > p {
    color: #7d929d; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-tab-3 .nav > li {
    width: 100%;
    border-bottom: 1px solid #fff; }
    .c-content-tab-3 .nav > li > .c-separator {
      display: none; }
    .c-content-tab-3 .nav > li + li {
      margin: 0; }
    .c-content-tab-3 .nav > li > a {
      text-align: left; }
  .c-content-tab-3 > .c-tab-content {
    padding: 25px 0 20px 0; }
    .c-content-tab-3 > .c-tab-content .c-photos {
      margin: 50px -28px 0;
      padding: 0; }
      .c-content-tab-3 > .c-tab-content .c-photos + .c-photos {
        margin: 0 -28px 0; }
        .c-content-tab-3 > .c-tab-content .c-photos + .c-photos > li + li {
          margin-top: 20px; } }

.c-content-tab-4 > .nav > li {
  text-align: center; }
  .c-content-tab-4 > .nav > li > a {
    font-weight: 600;
    padding: 20px 15px;
    border: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
  .c-content-tab-4 > .nav > li + li {
    padding-left: 1px; }
  .c-content-tab-4 > .nav > li:last-child {
    margin-left: 0.03px; }

.c-content-tab-4 > .tab-content .c-tab-items {
  list-style-type: none;
  margin: 0;
  padding: 30px 20px 30px 0; }
  .c-content-tab-4 > .tab-content .c-tab-items > li .c-photo {
    padding-left: 27px; }
  .c-content-tab-4 > .tab-content .c-tab-items > li h4 {
    margin: 0;
    padding-bottom: 8px; }
  .c-content-tab-4 > .tab-content .c-tab-items > li p, .c-content-tab-4 > .tab-content .c-tab-items > li h4 {
    margin-left: -6px; }
  .c-content-tab-4 > .tab-content .c-tab-items > li:nth-child(even) {
    padding: 25px 0; }
  .c-content-tab-4 > .tab-content .c-tab-items > li:last-child {
    padding-bottom: 0; }

.c-content-tab-4.c-tab-bordered > .tab-content {
  border: 1px solid #eef1f3;
  border-top: 0; }

.c-content-tab-4.c-opt-1 > .nav > li > a {
  color: #ffffff;
  background-color: #d5e0ea; }
  .c-content-tab-4.c-opt-1 > .nav > li > a:hover, .c-content-tab-4.c-opt-1 > .nav > li > a:focus {
    background-color: #6f95b7; }

.c-content-tab-4.c-opt-1 > .nav > li.active > a, .c-content-tab-4.c-opt-1 > .nav > li:active > a {
  color: #ffffff;
  background-color: #5bc2ce; }

.c-content-tab-4.c-opt-1 > .nav > li:nth-child(even) > a {
  background-color: #d5e0ea; }
  .c-content-tab-4.c-opt-1 > .nav > li:nth-child(even) > a:hover, .c-content-tab-4.c-opt-1 > .nav > li:nth-child(even) > a:focus {
    background-color: #6f95b7; }

.c-content-tab-4.c-opt-1 > .nav > li:nth-child(even).active > a, .c-content-tab-4.c-opt-1 > .nav > li:nth-child(even):active > a {
  color: #ffffff;
  background-color: #5bc2ce; }

.c-content-tab-4.c-opt-1 > .tab-content {
  background-color: #ffffff; }
  .c-content-tab-4.c-opt-1 > .tab-content .c-tab-items > li h4 {
    color: #5f6f77; }
  .c-content-tab-4.c-opt-1 > .tab-content .c-tab-items > li p {
    color: #9aaab3; }

.c-content-tab-4.c-opt-2 > .nav > li > a {
  color: #ffffff;
  background-color: #d5e0ea; }
  .c-content-tab-4.c-opt-2 > .nav > li > a:hover, .c-content-tab-4.c-opt-2 > .nav > li > a:focus {
    background-color: #6f95b7; }

.c-content-tab-4.c-opt-2 > .nav > li.active > a, .c-content-tab-4.c-opt-2 > .nav > li:active > a {
  color: #ffffff;
  background-color: #5bc2ce; }

.c-content-tab-4.c-opt-2 > .nav > li:nth-child(even) > a {
  background-color: #cfdae4; }
  .c-content-tab-4.c-opt-2 > .nav > li:nth-child(even) > a:hover, .c-content-tab-4.c-opt-2 > .nav > li:nth-child(even) > a:focus {
    background-color: #6d8fad; }

.c-content-tab-4.c-opt-2 > .nav > li:nth-child(even).active > a, .c-content-tab-4.c-opt-2 > .nav > li:nth-child(even):active > a {
  color: #ffffff;
  background-color: #5bc2ce; }

.c-content-tab-4.c-opt-2 > .tab-content {
  background-color: #ffffff; }
  .c-content-tab-4.c-opt-2 > .tab-content .c-tab-items > li h4 {
    color: #5f6f77; }
  .c-content-tab-4.c-opt-2 > .tab-content .c-tab-items > li p {
    color: #9aaab3; }

.c-content-tab-4.c-opt-3 > .nav > li > a {
  color: #ffffff;
  background-color: #d5e0ea; }
  .c-content-tab-4.c-opt-3 > .nav > li > a:hover, .c-content-tab-4.c-opt-3 > .nav > li > a:focus {
    background-color: #6f95b7; }

.c-content-tab-4.c-opt-3 > .nav > li.active > a, .c-content-tab-4.c-opt-3 > .nav > li:active > a {
  color: #ffffff;
  background-color: #5bc2ce; }

.c-content-tab-4.c-opt-3 > .nav > li:nth-child(even) > a {
  background-color: #cfdae4; }
  .c-content-tab-4.c-opt-3 > .nav > li:nth-child(even) > a:hover, .c-content-tab-4.c-opt-3 > .nav > li:nth-child(even) > a:focus {
    background-color: #6d8fad; }

.c-content-tab-4.c-opt-3 > .nav > li:nth-child(even).active > a, .c-content-tab-4.c-opt-3 > .nav > li:nth-child(even):active > a {
  color: #ffffff;
  background-color: #5bc2ce; }

.c-content-tab-4.c-opt-3 > .tab-content {
  background-color: #f6f9fb; }
  .c-content-tab-4.c-opt-3 > .tab-content .c-tab-items > li h4 {
    color: #5f6f77; }
  .c-content-tab-4.c-opt-3 > .tab-content .c-tab-items > li p {
    color: #9aaab3; }

.c-content-tab-4.c-opt-4 > .nav > li > a {
  color: #ffffff;
  background-color: #d5e0ea; }
  .c-content-tab-4.c-opt-4 > .nav > li > a:hover, .c-content-tab-4.c-opt-4 > .nav > li > a:focus {
    background-color: #6f95b7; }

.c-content-tab-4.c-opt-4 > .nav > li.active > a, .c-content-tab-4.c-opt-4 > .nav > li:active > a {
  color: #ff6b57;
  background-color: #3e495e; }

.c-content-tab-4.c-opt-4 > .nav > li:nth-child(even) > a {
  background-color: #cfdae4; }
  .c-content-tab-4.c-opt-4 > .nav > li:nth-child(even) > a:hover, .c-content-tab-4.c-opt-4 > .nav > li:nth-child(even) > a:focus {
    background-color: #6d8fad; }

.c-content-tab-4.c-opt-4 > .nav > li:nth-child(even).active > a, .c-content-tab-4.c-opt-4 > .nav > li:nth-child(even):active > a {
  color: #ff6b57;
  background-color: #3e495e; }

.c-content-tab-4.c-opt-4 > .tab-content {
  background-color: #3e495e; }
  .c-content-tab-4.c-opt-4 > .tab-content .c-tab-items > li h4 {
    color: #ffffff; }
  .c-content-tab-4.c-opt-4 > .tab-content .c-tab-items > li p {
    color: #616b7f; }

.c-content-tab-4.c-opt-5 > .nav > li > a {
  color: #ffffff;
  background-color: #d5e0ea; }
  .c-content-tab-4.c-opt-5 > .nav > li > a:hover, .c-content-tab-4.c-opt-5 > .nav > li > a:focus {
    background-color: #6f95b7; }

.c-content-tab-4.c-opt-5 > .nav > li.active > a, .c-content-tab-4.c-opt-5 > .nav > li:active > a {
  color: #ffffff;
  background-color: #5bc2ce; }

.c-content-tab-4.c-opt-5 > .nav > li:nth-child(even) > a {
  background-color: #d5e0ea; }
  .c-content-tab-4.c-opt-5 > .nav > li:nth-child(even) > a:hover, .c-content-tab-4.c-opt-5 > .nav > li:nth-child(even) > a:focus {
    background-color: #6f95b7; }

.c-content-tab-4.c-opt-5 > .nav > li:nth-child(even).active > a, .c-content-tab-4.c-opt-5 > .nav > li:nth-child(even):active > a {
  color: #ffffff;
  background-color: #5bc2ce; }

.c-content-tab-4.c-opt-5 > .tab-content {
  background-color: #ffffff; }
  .c-content-tab-4.c-opt-5 > .tab-content .c-tab-items > li h4 {
    color: #5f6f77; }
  .c-content-tab-4.c-opt-5 > .tab-content .c-tab-items > li p {
    color: #9aaab3; }

@media (max-width: 1199px) {
  /* 1199px */
  .c-content-tab-4 > .nav > li:last-child {
    margin-left: 0.06px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-content-tab-4 > .nav > li:last-child {
    margin-left: 0.01px; } }

@media (max-width: 767px) {
  /* 766px */
  .c-content-tab-4 > .tab-content .c-tab-items > li .c-photo {
    padding-bottom: 15px; }
  .c-content-tab-4 > .tab-content .c-tab-items > li h4, .c-content-tab-4 > .tab-content .c-tab-items > li p {
    padding: 0 25px; } }

.c-content-tab-5 .c-nav-tab {
  text-align: center;
  margin-bottom: 45px; }
  .c-content-tab-5 .c-nav-tab > li {
    display: inline-block;
    float: none;
    margin-bottom: 15px; }
    .c-content-tab-5 .c-nav-tab > li > a {
      background-color: #eff4f6;
      border-radius: 0;
      padding: 10px 20px; }
    .c-content-tab-5 .c-nav-tab > li + li {
      margin-left: 0px; }
  .c-content-tab-5 .c-nav-tab.c-arrow a {
    position: relative; }
    .c-content-tab-5 .c-nav-tab.c-arrow a:after {
      left: 0;
      top: 80%;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      margin-top: 0;
      border: 8px solid transparent; }
    .c-content-tab-5 .c-nav-tab.c-arrow a:hover:after {
      -webkit-transition: back 0.4s ease-out;
      -moz-transition: all 0.4s ease-out;
      -o-transition: all 0.4s ease-out;
      -ms-transition: all 0.4s ease-out; }

.c-content-tab-5 .c-nav-tab > li.active > a,
.c-content-tab-5 .c-nav-tab > li a:hover {
  color: #fff;
  background-color: #d05163; }

.c-content-tab-5 .c-nav-tab.c-arrow a:hover:after {
  border-left-color: #d05163; }

.c-content-tab-5 .c-nav-tab.c-arrow .active > a:after {
  border-left-color: #d05163; }

.c-content-tab-5 .c-space {
  margin: 15px 0; }

@media (max-width: 991px) {
  /* 991px */ }

@media (max-width: 767px) {
  /* 766px */
  .c-content-tab-5 .c-no-left {
    padding-left: 15px; }
  .c-content-tab-5 .c-no-right {
    padding-right: 15px; } }

.c-content-tab-6 .nav {
  padding: 0;
  margin-top: 40px; }
  .c-content-tab-6 .nav > li {
    margin-bottom: 15px;
    border-left: 3px solid transparent; }
    .c-content-tab-6 .nav > li > a {
      padding: 5px 0 5px 15px;
      border: 0;
      overflow: hidden;
      font-weight: 400;
      white-space: nowrap;
      text-overflow: ellipsis;
      color: #9fa5ac;
      font-size: 17px;
      font-weight: 500; }
    .c-content-tab-6 .nav > li + li {
      padding-left: 1px; }
    .c-content-tab-6 .nav > li:last-child {
      margin-left: 0.03px; }
    .c-content-tab-6 .nav > li.active, .c-content-tab-6 .nav > li:hover {
      border-left: 3px solid #428de4; }
      .c-content-tab-6 .nav > li.active > a, .c-content-tab-6 .nav > li:hover > a {
        color: #343a3d; }

.c-content-tab-6 .tab-content {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px; }
  .c-content-tab-6 .tab-content .c-tab-items {
    list-style-type: none;
    margin: 0;
    padding: 40px; }
    .c-content-tab-6 .tab-content .c-tab-items > li .c-photo {
      padding-left: 27px; }
    .c-content-tab-6 .tab-content .c-tab-items > li h4 {
      font-size: 24px;
      margin: 0;
      font-weight: 600;
      margin-bottom: 30px; }
    .c-content-tab-6 .tab-content .c-tab-items > li p {
      line-height: 1.7em;
      padding-bottom: 35px; }
    .c-content-tab-6 .tab-content .c-tab-items > li a {
      color: #6aaaf4;
      font-weight: 400; }
      .c-content-tab-6 .tab-content .c-tab-items > li a:hover {
        border-bottom: 1px solid #eee; }
    .c-content-tab-6 .tab-content .c-tab-items > li:nth-child(even) {
      padding: 25px 0; }
    .c-content-tab-6 .tab-content .c-tab-items > li:last-child {
      padding-bottom: 0; }

.c-content-tab-6.c-opt-1 .nav > li > a {
  color: #eee; }

.c-content-tab-6.c-opt-1 .nav > li.active > a, .c-content-tab-6.c-opt-1 .nav > li:hover > a {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1); }

@media (max-width: 1199px) {
  /* 1199px */
  .c-content-tab-6 .nav > li:last-child {
    margin-left: 0.06px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-content-tab-6 .nav > li:last-child {
    margin-left: 0.01px; } }

@media (max-width: 767px) {
  /* 766px */
  .c-content-tab-6 .tab-content .c-tab-items > li .img-responsive {
    margin-bottom: 30px; } }

.c-content-tab-7 .nav {
  padding: 0;
  margin-top: 40px;
  margin-bottom: 60px; }
  .c-content-tab-7 .nav > li {
    display: inline-block;
    margin: 0 15px; }
    .c-content-tab-7 .nav > li > a {
      padding: 15px 55px;
      border: 1px solid #428de4;
      font-weight: 500;
      color: #428de4;
      font-size: 16px;
      background-color: #fff; }
    .c-content-tab-7 .nav > li + li {
      padding-left: 1px; }
    .c-content-tab-7 .nav > li.active > a, .c-content-tab-7 .nav > li:hover > a {
      background-color: #428de4;
      color: #fff;
      box-shadow: 0 0 15px 0 #1e73d5; }

.c-content-tab-7 .tab-content .c-item-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.2s; }
  .c-content-tab-7 .tab-content .c-item-container .c-item-thumb {
    width: 100%;
    height: auto;
    transition: all 5s; }
  .c-content-tab-7 .tab-content .c-item-container:hover .c-item-thumb {
    transform: translateY(-70%); }

@media (max-width: 1199px) {
  /* 1199px */
  .c-content-tab-6 .nav > li:last-child {
    margin-left: 0.06px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-content-tab-6 .nav > li:last-child {
    margin-left: 0.01px; } }

@media (max-width: 767px) {
  /* 766px */
  .c-content-tab-6 .tab-content .c-tab-items > li .img-responsive {
    margin-bottom: 30px; } }

.c-content-step-1 {
  text-align: center;
  padding-bottom: 20px; }
  .c-content-step-1 > .c-icon {
    padding-bottom: 30px; }
    .c-content-step-1 > .c-icon > .c-hr {
      display: inline-block; }
      .c-content-step-1 > .c-icon > .c-hr:before, .c-content-step-1 > .c-icon > .c-hr:after {
        border-top: 1px solid black;
        display: block;
        height: 1px;
        content: " ";
        width: 38%;
        position: absolute;
        left: 0;
        top: 2.2em; }
      .c-content-step-1 > .c-icon > .c-hr:after {
        right: 0;
        left: auto; }
      .c-content-step-1 > .c-icon > .c-hr.c-hr-first:before {
        width: 34%;
        left: 4%; }
      .c-content-step-1 > .c-icon > .c-hr.c-hr-last:after {
        width: 34%;
        right: 4%; }
      .c-content-step-1 > .c-icon > .c-hr > i {
        font-size: 4.2em; }
  .c-content-step-1 > .c-title {
    margin-top: 20px; }
  .c-content-step-1 > .c-description {
    padding: 0px 60px;
    margin: 20px 0 30px 0; }
  .c-content-step-1.c-opt-1 > .c-icon {
    color: #7d90b0; }
    .c-content-step-1.c-opt-1 > .c-icon > .c-hr:before, .c-content-step-1.c-opt-1 > .c-icon > .c-hr:after {
      border-color: #919191; }
  .c-content-step-1.c-opt-1 > .c-description {
    color: #5c6873; }

.c-title-step-1 > h4 {
  margin: 15px 0; }

.c-title-step-1 > p {
  margin-bottom: 68px; }

.c-title-step-1.c-opt-title-1 > h4 {
  color: #455055; }
  .c-title-step-1.c-opt-title-1 > h4 > span {
    color: #455055; }

.c-title-step-1.c-opt-title-1 > p {
  color: #a0b0b8; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-step-1 {
    padding-bottom: 60px; }
    .c-content-step-1 > .c-icon > .c-hr:after {
      width: 34%;
      right: 4%; }
    .c-content-step-1 > .c-icon > .c-hr.c-hr-first:after {
      width: 38%;
      right: 0;
      left: auto; }
    .c-content-step-1 > .c-icon > .c-hr.c-hr-last:before {
      width: 41%;
      left: 2%; }
    .c-content-step-1 > .c-icon > .c-hr.c-hr-last:after {
      width: 42%;
      right: 2%; } }

@media (max-width: 767px) {
  /* 766px */
  .c-content-step-1 {
    padding-bottom: 60px; }
    .c-content-step-1 > .c-icon > .c-hr:before {
      width: 34%;
      left: 4%; }
    .c-content-step-1 > .c-icon > .c-hr.c-hr-first:after {
      width: 35%;
      right: 4%; }
    .c-content-step-1 > .c-icon > .c-hr.c-hr-last:before {
      width: 35%;
      left: 4%; }
    .c-content-step-1 > .c-icon > .c-hr.c-hr-last:after {
      width: 35%;
      right: 4%; }
    .c-content-step-1 > .c-explore {
      padding-bottom: 60px; } }

.c-content-step-3 .c-steps-3-block i {
  font-size: 30px;
  border: solid 2px #fff;
  border-radius: 30px;
  width: 60px;
  height: 60px;
  text-align: center;
  vertical-align: middle;
  padding-top: 13px;
  margin-right: 11px;
  float: left; }

.c-content-step-3 .c-steps-3-block h2 {
  margin-top: 15px; }

.c-content-step-3 .c-steps-3-block span {
  width: 36px;
  height: 71px;
  background: url(/public/782a937c7df413c27ed31eddd8bd8e88.png) no-repeat 100% 50%;
  position: absolute;
  top: 0;
  right: 10px; }

.c-content-step-3 .c-steps-3-block > .c-steps-3-title {
  padding-right: 10%;
  padding-left: 71px; }

@media (max-width: 991px) {
  .c-content-step-3 {
    padding: 15px; }
    .c-content-step-3 .c-steps-3-block {
      padding: 15px;
      border: 1px solid;
      border-color: rgba(255, 255, 255, 0.7);
      margin-bottom: 20px; }
      .c-content-step-3 .c-steps-3-block:last-child {
        margin-bottom: 0; }
    .c-content-step-3 span {
      display: none;
      background: none; } }

.c-content-tile-1 {
  overflow: hidden; }
  .c-content-tile-1 .c-tile-content {
    overflow: hidden; }
    .c-content-tile-1 .c-tile-content.c-arrow-left, .c-content-tile-1 .c-tile-content.c-arrow-right {
      position: relative; }
      .c-content-tile-1 .c-tile-content.c-arrow-left:after, .c-content-tile-1 .c-tile-content.c-arrow-right:after {
        top: calc(50% - 13px);
        border: solid transparent;
        content: " ";
        position: absolute;
        pointer-events: none;
        border-width: 13px;
        z-index: 99; }
    .c-content-tile-1 .c-tile-content.c-arrow-left:after {
      right: 0;
      border-right-color: #ffffff; }
    .c-content-tile-1 .c-tile-content.c-arrow-right:after {
      left: 0;
      border-left-color: #ffffff; }
    .c-content-tile-1 .c-tile-content.c-arrow-green.c-arrow-left:after {
      border-right-color: #32c5d2; }
    .c-content-tile-1 .c-tile-content.c-arrow-green.c-arrow-right:after {
      border-left-color: #32c5d2; }
    .c-content-tile-1 .c-tile-content.c-arrow-red-2.c-arrow-left:after {
      border-right-color: #e7505a; }
    .c-content-tile-1 .c-tile-content.c-arrow-red-2.c-arrow-right:after {
      border-left-color: #e7505a; }
    .c-content-tile-1 .c-tile-content.c-arrow-brown-2.c-arrow-left:after {
      border-right-color: #7a6a61; }
    .c-content-tile-1 .c-tile-content.c-arrow-brown-2.c-arrow-right:after {
      border-left-color: #7a6a61; }
    .c-content-tile-1 .c-tile-content.c-arrow-blue-3.c-arrow-left:after {
      border-right-color: #57bfe1; }
    .c-content-tile-1 .c-tile-content.c-arrow-blue-3.c-arrow-right:after {
      border-left-color: #57bfe1; }
    .c-content-tile-1 .c-tile-content .btn {
      margin: 10px 0; }
  .c-content-tile-1 .c-wrapper {
    padding: 10%; }
    .c-content-tile-1 .c-wrapper .c-tile-title {
      color: #3f444a;
      margin-top: 0;
      font-size: 20px; }
    .c-content-tile-1 .c-wrapper .c-tile-body {
      color: #5c6873;
      font-size: 17px; }
  .c-content-tile-1 .c-image {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center; }

@media (max-width: 767px) {
  /* 767px */
  .c-content-tile-1 .c-tile-content.c-arrow-left:after, .c-content-tile-1 .c-tile-content.c-arrow-right:after {
    left: calc(50% - 13px); }
  .c-content-tile-1 .c-tile-content.c-arrow-left:after {
    bottom: 0;
    border-bottom-color: #ffffff;
    right: auto;
    top: auto;
    border-right-color: transparent; }
  .c-content-tile-1 .c-tile-content.c-arrow-right:after {
    top: 0;
    border-top-color: #ffffff;
    border-left-color: transparent; }
  .c-content-tile-1 .c-tile-content.c-arrow-green.c-arrow-left:after {
    border-right-color: transparent;
    border-bottom-color: #32c5d2; }
  .c-content-tile-1 .c-tile-content.c-arrow-green.c-arrow-right:after {
    border-left-color: transparent;
    border-top-color: #32c5d2; }
  .c-content-tile-1 .c-tile-content.c-arrow-red-2.c-arrow-left:after {
    border-right-color: transparent;
    border-bottom-color: #e7505a; }
  .c-content-tile-1 .c-tile-content.c-arrow-red-2.c-arrow-right:after {
    border-left-color: transparent;
    border-top-color: #e7505a; }
  .c-content-tile-1 .c-tile-content.c-arrow-brown-2.c-arrow-left:after {
    border-right-color: transparent;
    border-bottom-color: #7a6a61; }
  .c-content-tile-1 .c-tile-content.c-arrow-brown-2.c-arrow-right:after {
    border-left-color: transparent;
    border-top-color: #7a6a61; }
  .c-content-tile-1 .c-tile-content.c-arrow-blue-3.c-arrow-left:after {
    border-right-color: transparent;
    border-bottom-color: #57bfe1; }
  .c-content-tile-1 .c-tile-content.c-arrow-blue-3.c-arrow-right:after {
    border-left-color: transparent;
    border-top-color: #57bfe1; } }

.c-content-accordion-1 .panel-group {
  margin-bottom: 0; }

.c-content-accordion-1 .panel {
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  margin-bottom: 10px; }
  .c-content-accordion-1 .panel:last-child {
    margin-bottom: 0; }
  .c-content-accordion-1 .panel:last-child {
    margin-bottom: 0; }
  .c-content-accordion-1 .panel > .panel-heading {
    padding: 0;
    color: #ffffff; }
    .c-content-accordion-1 .panel > .panel-heading > .panel-title {
      padding: 0;
      margin: 0; }
      .c-content-accordion-1 .panel > .panel-heading > .panel-title > a {
        transition: all 0.2s;
        color: #fff;
        display: block;
        padding: 30px 30px 25px 30px;
        border-radius: 0;
        box-shadow: none; }
        .c-content-accordion-1 .panel > .panel-heading > .panel-title > a > i {
          margin-right: 5px;
          font-size: 17px; }
        .c-content-accordion-1 .panel > .panel-heading > .panel-title > a.collapsed {
          background-color: #fff;
          color: #3f444a; }
          .c-content-accordion-1 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1 .panel > .panel-heading > .panel-title > a.collapsed:focus {
            color: #fff;
            transition: all 0.2s; }
  .c-content-accordion-1 .panel > .panel-collapse > .panel-body {
    border-top: none;
    padding: 0px 30px 35px 30px;
    color: #ffffff; }

.c-content-accordion-1.c-accordion-white .panel > .panel-heading > .panel-title > a {
  background-color: #FFFFFF; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-white .panel > .panel-heading > .panel-title > a {
    border: 2px solid #e6e6e6 !important; }
  .c-content-accordion-1.c-accordion-white .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-white .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-white .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #FFFFFF; }

.c-content-accordion-1.c-accordion-white .panel > .panel-collapse > .panel-body {
  background-color: #FFFFFF; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-white .panel > .panel-collapse > .panel-body {
    border: 2px solid #e6e6e6 !important; }

.c-content-accordion-1.c-accordion-black .panel > .panel-heading > .panel-title > a {
  background-color: #000000; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-black .panel > .panel-heading > .panel-title > a {
    border: 2px solid black !important; }
  .c-content-accordion-1.c-accordion-black .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-black .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-black .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #000000; }

.c-content-accordion-1.c-accordion-black .panel > .panel-collapse > .panel-body {
  background-color: #000000; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-black .panel > .panel-collapse > .panel-body {
    border: 2px solid black !important; }

.c-content-accordion-1.c-accordion-regular .panel > .panel-heading > .panel-title > a {
  background-color: #7f8c97; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-regular .panel > .panel-heading > .panel-title > a {
    border: 2px solid #66727d !important; }
  .c-content-accordion-1.c-accordion-regular .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-regular .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-regular .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #7f8c97; }

.c-content-accordion-1.c-accordion-regular .panel > .panel-collapse > .panel-body {
  background-color: #7f8c97; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-regular .panel > .panel-collapse > .panel-body {
    border: 2px solid #66727d !important; }

.c-content-accordion-1.c-accordion-green .panel > .panel-heading > .panel-title > a {
  background-color: #32c5d2; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-green .panel > .panel-heading > .panel-title > a {
    border: 2px solid #26a1ab !important; }
  .c-content-accordion-1.c-accordion-green .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-green .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-green .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #32c5d2; }

.c-content-accordion-1.c-accordion-green .panel > .panel-collapse > .panel-body {
  background-color: #32c5d2; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-green .panel > .panel-collapse > .panel-body {
    border: 2px solid #26a1ab !important; }

.c-content-accordion-1.c-accordion-green-1 .panel > .panel-heading > .panel-title > a {
  background-color: #52c9ba; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-green-1 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #37b1a1 !important; }
  .c-content-accordion-1.c-accordion-green-1 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-green-1 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-green-1 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #52c9ba; }

.c-content-accordion-1.c-accordion-green-1 .panel > .panel-collapse > .panel-body {
  background-color: #52c9ba; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-green-1 .panel > .panel-collapse > .panel-body {
    border: 2px solid #37b1a1 !important; }

.c-content-accordion-1.c-accordion-green-2 .panel > .panel-heading > .panel-title > a {
  background-color: #5dc09c; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-green-2 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #42a883 !important; }
  .c-content-accordion-1.c-accordion-green-2 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-green-2 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-green-2 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #5dc09c; }

.c-content-accordion-1.c-accordion-green-2 .panel > .panel-collapse > .panel-body {
  background-color: #5dc09c; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-green-2 .panel > .panel-collapse > .panel-body {
    border: 2px solid #42a883 !important; }

.c-content-accordion-1.c-accordion-green-3 .panel > .panel-heading > .panel-title > a {
  background-color: #84c68f; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-green-3 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #61b66f !important; }
  .c-content-accordion-1.c-accordion-green-3 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-green-3 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-green-3 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #84c68f; }

.c-content-accordion-1.c-accordion-green-3 .panel > .panel-collapse > .panel-body {
  background-color: #84c68f; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-green-3 .panel > .panel-collapse > .panel-body {
    border: 2px solid #61b66f !important; }

.c-content-accordion-1.c-accordion-green-4 .panel > .panel-heading > .panel-title > a {
  background-color: #3cb878; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-green-4 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #2f925f !important; }
  .c-content-accordion-1.c-accordion-green-4 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-green-4 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-green-4 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #3cb878; }

.c-content-accordion-1.c-accordion-green-4 .panel > .panel-collapse > .panel-body {
  background-color: #3cb878; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-green-4 .panel > .panel-collapse > .panel-body {
    border: 2px solid #2f925f !important; }

.c-content-accordion-1.c-accordion-red .panel > .panel-heading > .panel-title > a {
  background-color: #eb5d68; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-red .panel > .panel-heading > .panel-title > a {
    border: 2px solid #e5303e !important; }
  .c-content-accordion-1.c-accordion-red .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-red .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-red .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #eb5d68; }

.c-content-accordion-1.c-accordion-red .panel > .panel-collapse > .panel-body {
  background-color: #eb5d68; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-red .panel > .panel-collapse > .panel-body {
    border: 2px solid #e5303e !important; }

.c-content-accordion-1.c-accordion-red-1 .panel > .panel-heading > .panel-title > a {
  background-color: #cd6262; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-red-1 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #bf3d3d !important; }
  .c-content-accordion-1.c-accordion-red-1 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-red-1 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-red-1 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #cd6262; }

.c-content-accordion-1.c-accordion-red-1 .panel > .panel-collapse > .panel-body {
  background-color: #cd6262; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-red-1 .panel > .panel-collapse > .panel-body {
    border: 2px solid #bf3d3d !important; }

.c-content-accordion-1.c-accordion-red-2 .panel > .panel-heading > .panel-title > a {
  background-color: #e7505a; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-red-2 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #e12330 !important; }
  .c-content-accordion-1.c-accordion-red-2 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-red-2 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-red-2 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #e7505a; }

.c-content-accordion-1.c-accordion-red-2 .panel > .panel-collapse > .panel-body {
  background-color: #e7505a; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-red-2 .panel > .panel-collapse > .panel-body {
    border: 2px solid #e12330 !important; }

.c-content-accordion-1.c-accordion-red-3 .panel > .panel-heading > .panel-title > a {
  background-color: #d05163; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-red-3 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #bb3346 !important; }
  .c-content-accordion-1.c-accordion-red-3 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-red-3 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-red-3 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #d05163; }

.c-content-accordion-1.c-accordion-red-3 .panel > .panel-collapse > .panel-body {
  background-color: #d05163; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-red-3 .panel > .panel-collapse > .panel-body {
    border: 2px solid #bb3346 !important; }

.c-content-accordion-1.c-accordion-yellow .panel > .panel-heading > .panel-title > a {
  background-color: #FF6B57; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-yellow .panel > .panel-heading > .panel-title > a {
    border: 2px solid #ff3e24 !important; }
  .c-content-accordion-1.c-accordion-yellow .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-yellow .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-yellow .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #FF6B57; }

.c-content-accordion-1.c-accordion-yellow .panel > .panel-collapse > .panel-body {
  background-color: #FF6B57; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-yellow .panel > .panel-collapse > .panel-body {
    border: 2px solid #ff3e24 !important; }

.c-content-accordion-1.c-accordion-yellow-1 .panel > .panel-heading > .panel-title > a {
  background-color: #c8d046; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-yellow-1 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #adb52e !important; }
  .c-content-accordion-1.c-accordion-yellow-1 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-yellow-1 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-yellow-1 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #c8d046; }

.c-content-accordion-1.c-accordion-yellow-1 .panel > .panel-collapse > .panel-body {
  background-color: #c8d046; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-yellow-1 .panel > .panel-collapse > .panel-body {
    border: 2px solid #adb52e !important; }

.c-content-accordion-1.c-accordion-yellow-2 .panel > .panel-heading > .panel-title > a {
  background-color: #c5bf66; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-yellow-2 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #b4ad44 !important; }
  .c-content-accordion-1.c-accordion-yellow-2 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-yellow-2 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-yellow-2 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #c5bf66; }

.c-content-accordion-1.c-accordion-yellow-2 .panel > .panel-collapse > .panel-body {
  background-color: #c5bf66; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-yellow-2 .panel > .panel-collapse > .panel-body {
    border: 2px solid #b4ad44 !important; }

.c-content-accordion-1.c-accordion-yellow-3 .panel > .panel-heading > .panel-title > a {
  background-color: #c5b96b; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-yellow-3 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #b6a747 !important; }
  .c-content-accordion-1.c-accordion-yellow-3 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-yellow-3 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-yellow-3 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #c5b96b; }

.c-content-accordion-1.c-accordion-yellow-3 .panel > .panel-collapse > .panel-body {
  background-color: #c5b96b; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-yellow-3 .panel > .panel-collapse > .panel-body {
    border: 2px solid #b6a747 !important; }

.c-content-accordion-1.c-accordion-yellow-4 .panel > .panel-heading > .panel-title > a {
  background-color: #fff200; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-yellow-4 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #ccc200 !important; }
  .c-content-accordion-1.c-accordion-yellow-4 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-yellow-4 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-yellow-4 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #fff200; }

.c-content-accordion-1.c-accordion-yellow-4 .panel > .panel-collapse > .panel-body {
  background-color: #fff200; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-yellow-4 .panel > .panel-collapse > .panel-body {
    border: 2px solid #ccc200 !important; }

.c-content-accordion-1.c-accordion-blue .panel > .panel-heading > .panel-title > a {
  background-color: #3498DB; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-blue .panel > .panel-heading > .panel-title > a {
    border: 2px solid #217dbb !important; }
  .c-content-accordion-1.c-accordion-blue .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-blue .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-blue .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #3498DB; }

.c-content-accordion-1.c-accordion-blue .panel > .panel-collapse > .panel-body {
  background-color: #3498DB; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-blue .panel > .panel-collapse > .panel-body {
    border: 2px solid #217dbb !important; }

.c-content-accordion-1.c-accordion-blue-1 .panel > .panel-heading > .panel-title > a {
  background-color: #5e9cd1; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-blue-1 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #3883c4 !important; }
  .c-content-accordion-1.c-accordion-blue-1 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-blue-1 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-blue-1 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #5e9cd1; }

.c-content-accordion-1.c-accordion-blue-1 .panel > .panel-collapse > .panel-body {
  background-color: #5e9cd1; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-blue-1 .panel > .panel-collapse > .panel-body {
    border: 2px solid #3883c4 !important; }

.c-content-accordion-1.c-accordion-blue-2 .panel > .panel-heading > .panel-title > a {
  background-color: #5893dd; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-blue-2 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #2e78d4 !important; }
  .c-content-accordion-1.c-accordion-blue-2 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-blue-2 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-blue-2 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #5893dd; }

.c-content-accordion-1.c-accordion-blue-2 .panel > .panel-collapse > .panel-body {
  background-color: #5893dd; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-blue-2 .panel > .panel-collapse > .panel-body {
    border: 2px solid #2e78d4 !important; }

.c-content-accordion-1.c-accordion-blue-3 .panel > .panel-heading > .panel-title > a {
  background-color: #57bfe1; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-blue-3 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #2cafd9 !important; }
  .c-content-accordion-1.c-accordion-blue-3 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-blue-3 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-blue-3 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #57bfe1; }

.c-content-accordion-1.c-accordion-blue-3 .panel > .panel-collapse > .panel-body {
  background-color: #57bfe1; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-blue-3 .panel > .panel-collapse > .panel-body {
    border: 2px solid #2cafd9 !important; }

.c-content-accordion-1.c-accordion-blue-4 .panel > .panel-heading > .panel-title > a {
  background-color: #428de4; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-blue-4 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #1e73d5 !important; }
  .c-content-accordion-1.c-accordion-blue-4 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-blue-4 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-blue-4 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #428de4; }

.c-content-accordion-1.c-accordion-blue-4 .panel > .panel-collapse > .panel-body {
  background-color: #428de4; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-blue-4 .panel > .panel-collapse > .panel-body {
    border: 2px solid #1e73d5 !important; }

.c-content-accordion-1.c-accordion-purple .panel > .panel-heading > .panel-title > a {
  background-color: #b771b0; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-purple .panel > .panel-heading > .panel-title > a {
    border: 2px solid #a3529b !important; }
  .c-content-accordion-1.c-accordion-purple .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-purple .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-purple .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #b771b0; }

.c-content-accordion-1.c-accordion-purple .panel > .panel-collapse > .panel-body {
  background-color: #b771b0; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-purple .panel > .panel-collapse > .panel-body {
    border: 2px solid #a3529b !important; }

.c-content-accordion-1.c-accordion-purple-1 .panel > .panel-heading > .panel-title > a {
  background-color: #a962bb; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-purple-1 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #9147a3 !important; }
  .c-content-accordion-1.c-accordion-purple-1 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-purple-1 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-purple-1 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #a962bb; }

.c-content-accordion-1.c-accordion-purple-1 .panel > .panel-collapse > .panel-body {
  background-color: #a962bb; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-purple-1 .panel > .panel-collapse > .panel-body {
    border: 2px solid #9147a3 !important; }

.c-content-accordion-1.c-accordion-purple-2 .panel > .panel-heading > .panel-title > a {
  background-color: #aa67a3; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-purple-2 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #8e5088 !important; }
  .c-content-accordion-1.c-accordion-purple-2 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-purple-2 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-purple-2 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #aa67a3; }

.c-content-accordion-1.c-accordion-purple-2 .panel > .panel-collapse > .panel-body {
  background-color: #aa67a3; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-purple-2 .panel > .panel-collapse > .panel-body {
    border: 2px solid #8e5088 !important; }

.c-content-accordion-1.c-accordion-purple-3 .panel > .panel-heading > .panel-title > a {
  background-color: #ac3773; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-purple-3 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #852b59 !important; }
  .c-content-accordion-1.c-accordion-purple-3 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-purple-3 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-purple-3 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #ac3773; }

.c-content-accordion-1.c-accordion-purple-3 .panel > .panel-collapse > .panel-body {
  background-color: #ac3773; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-purple-3 .panel > .panel-collapse > .panel-body {
    border: 2px solid #852b59 !important; }

.c-content-accordion-1.c-accordion-brown .panel > .panel-heading > .panel-title > a {
  background-color: #8a7f68; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-brown .panel > .panel-heading > .panel-title > a {
    border: 2px solid #6d6452 !important; }
  .c-content-accordion-1.c-accordion-brown .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-brown .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-brown .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #8a7f68; }

.c-content-accordion-1.c-accordion-brown .panel > .panel-collapse > .panel-body {
  background-color: #8a7f68; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-brown .panel > .panel-collapse > .panel-body {
    border: 2px solid #6d6452 !important; }

.c-content-accordion-1.c-accordion-brown-1 .panel > .panel-heading > .panel-title > a {
  background-color: #685e47; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-brown-1 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #4a4332 !important; }
  .c-content-accordion-1.c-accordion-brown-1 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-brown-1 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-brown-1 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #685e47; }

.c-content-accordion-1.c-accordion-brown-1 .panel > .panel-collapse > .panel-body {
  background-color: #685e47; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-brown-1 .panel > .panel-collapse > .panel-body {
    border: 2px solid #4a4332 !important; }

.c-content-accordion-1.c-accordion-brown-2 .panel > .panel-heading > .panel-title > a {
  background-color: #7a6a61; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-brown-2 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #5e514a !important; }
  .c-content-accordion-1.c-accordion-brown-2 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-brown-2 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-brown-2 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #7a6a61; }

.c-content-accordion-1.c-accordion-brown-2 .panel > .panel-collapse > .panel-body {
  background-color: #7a6a61; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-brown-2 .panel > .panel-collapse > .panel-body {
    border: 2px solid #5e514a !important; }

.c-content-accordion-1.c-accordion-brown-3 .panel > .panel-heading > .panel-title > a {
  background-color: #9d8b81; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-brown-3 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #847167 !important; }
  .c-content-accordion-1.c-accordion-brown-3 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-brown-3 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-brown-3 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #9d8b81; }

.c-content-accordion-1.c-accordion-brown-3 .panel > .panel-collapse > .panel-body {
  background-color: #9d8b81; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-brown-3 .panel > .panel-collapse > .panel-body {
    border: 2px solid #847167 !important; }

.c-content-accordion-1.c-accordion-dark .panel > .panel-heading > .panel-title > a {
  background-color: #2f353b; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-dark .panel > .panel-heading > .panel-title > a {
    border: 2px solid #181c1f !important; }
  .c-content-accordion-1.c-accordion-dark .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-dark .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-dark .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #2f353b; }

.c-content-accordion-1.c-accordion-dark .panel > .panel-collapse > .panel-body {
  background-color: #2f353b; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-dark .panel > .panel-collapse > .panel-body {
    border: 2px solid #181c1f !important; }

.c-content-accordion-1.c-accordion-dark-1 .panel > .panel-heading > .panel-title > a {
  background-color: #525e64; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-dark-1 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #3b4448 !important; }
  .c-content-accordion-1.c-accordion-dark-1 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-dark-1 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-dark-1 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #525e64; }

.c-content-accordion-1.c-accordion-dark-1 .panel > .panel-collapse > .panel-body {
  background-color: #525e64; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-dark-1 .panel > .panel-collapse > .panel-body {
    border: 2px solid #3b4448 !important; }

.c-content-accordion-1.c-accordion-dark-2 .panel > .panel-heading > .panel-title > a {
  background-color: #31383c; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-dark-2 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #1a1e20 !important; }
  .c-content-accordion-1.c-accordion-dark-2 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-dark-2 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-dark-2 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #31383c; }

.c-content-accordion-1.c-accordion-dark-2 .panel > .panel-collapse > .panel-body {
  background-color: #31383c; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-dark-2 .panel > .panel-collapse > .panel-body {
    border: 2px solid #1a1e20 !important; }

.c-content-accordion-1.c-accordion-dark-3 .panel > .panel-heading > .panel-title > a {
  background-color: #41515b; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-dark-3 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #2c373d !important; }
  .c-content-accordion-1.c-accordion-dark-3 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-dark-3 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-dark-3 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #41515b; }

.c-content-accordion-1.c-accordion-dark-3 .panel > .panel-collapse > .panel-body {
  background-color: #41515b; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-dark-3 .panel > .panel-collapse > .panel-body {
    border: 2px solid #2c373d !important; }

.c-content-accordion-1.c-accordion-dark-4 .panel > .panel-heading > .panel-title > a {
  background-color: #24272b; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-dark-4 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #0d0e0f !important; }
  .c-content-accordion-1.c-accordion-dark-4 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-dark-4 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-dark-4 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #24272b; }

.c-content-accordion-1.c-accordion-dark-4 .panel > .panel-collapse > .panel-body {
  background-color: #24272b; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-dark-4 .panel > .panel-collapse > .panel-body {
    border: 2px solid #0d0e0f !important; }

.c-content-accordion-1.c-accordion-grey .panel > .panel-heading > .panel-title > a {
  background-color: #eeeeee; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-grey .panel > .panel-heading > .panel-title > a {
    border: 2px solid #d5d5d5 !important; }
  .c-content-accordion-1.c-accordion-grey .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-grey .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-grey .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #eeeeee; }

.c-content-accordion-1.c-accordion-grey .panel > .panel-collapse > .panel-body {
  background-color: #eeeeee; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-grey .panel > .panel-collapse > .panel-body {
    border: 2px solid #d5d5d5 !important; }

.c-content-accordion-1.c-accordion-grey-1 .panel > .panel-heading > .panel-title > a {
  background-color: #f7f7f7; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-grey-1 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #dedede !important; }
  .c-content-accordion-1.c-accordion-grey-1 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-grey-1 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-grey-1 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #f7f7f7; }

.c-content-accordion-1.c-accordion-grey-1 .panel > .panel-collapse > .panel-body {
  background-color: #f7f7f7; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-grey-1 .panel > .panel-collapse > .panel-body {
    border: 2px solid #dedede !important; }

.c-content-accordion-1.c-accordion-grey-2 .panel > .panel-heading > .panel-title > a {
  background-color: #677083; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-grey-2 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #515866 !important; }
  .c-content-accordion-1.c-accordion-grey-2 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-grey-2 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-grey-2 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #677083; }

.c-content-accordion-1.c-accordion-grey-2 .panel > .panel-collapse > .panel-body {
  background-color: #677083; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-grey-2 .panel > .panel-collapse > .panel-body {
    border: 2px solid #515866 !important; }

.c-content-accordion-1.c-accordion-grey-3 .panel > .panel-heading > .panel-title > a {
  background-color: #7f8c97; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-grey-3 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #66727d !important; }
  .c-content-accordion-1.c-accordion-grey-3 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-grey-3 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-grey-3 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #7f8c97; }

.c-content-accordion-1.c-accordion-grey-3 .panel > .panel-collapse > .panel-body {
  background-color: #7f8c97; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-grey-3 .panel > .panel-collapse > .panel-body {
    border: 2px solid #66727d !important; }

.c-content-accordion-1.c-accordion-grey-4 .panel > .panel-heading > .panel-title > a {
  background-color: #a0a6ab; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-grey-4 .panel > .panel-heading > .panel-title > a {
    border: 2px solid #858d93 !important; }
  .c-content-accordion-1.c-accordion-grey-4 .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #fff; }
    .c-content-accordion-1.c-accordion-grey-4 .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-accordion-grey-4 .panel > .panel-heading > .panel-title > a.collapsed:focus {
      color: #fff;
      background-color: #a0a6ab; }

.c-content-accordion-1.c-accordion-grey-4 .panel > .panel-collapse > .panel-body {
  background-color: #a0a6ab; }
  .c-accordion-bordered .c-content-accordion-1.c-accordion-grey-4 .panel > .panel-collapse > .panel-body {
    border: 2px solid #858d93 !important; }

@media (max-width: 1199px) {
  /* 991px */
  .c-content-accordion-1 .c-accordion {
    margin: 0;
    padding: 0; } }

.c-content-login-form .modal-dialog {
  width: 450px; }
  .c-content-login-form .modal-dialog .modal-content {
    margin-top: 125px; }
    .c-content-login-form .modal-dialog .modal-content .modal-body {
      padding: 10px 40px 30px 40px; }
      .c-content-login-form .modal-dialog .modal-content .modal-body .form-group {
        margin: 20px 0; }
      .c-content-login-form .modal-dialog .modal-content .modal-body .c-btn-login {
        padding-left: 40px;
        padding-right: 40px; }
      .c-content-login-form .modal-dialog .modal-content .modal-body .c-btn-forgot {
        margin-top: 8px;
        float: right;
        display: inline-block; }
      .c-content-login-form .modal-dialog .modal-content .modal-body .c-content-list-adjusted {
        margin-top: 30px; }
      .c-content-login-form .modal-dialog .modal-content .modal-body .c-content-divider {
        text-align: center; }
        .c-content-login-form .modal-dialog .modal-content .modal-body .c-content-divider > span {
          display: inline-block;
          background: #fff;
          padding: 5px 8px;
          position: relative;
          top: -1.05em;
          margin: auto; }
    .c-content-login-form .modal-dialog .modal-content .modal-footer {
      background: #f7f7f7;
      padding: 20px 40px;
      text-align: left; }
      .c-content-login-form .modal-dialog .modal-content .modal-footer .c-text-account {
        display: inline-block;
        margin-top: 5px; }
      .c-content-login-form .modal-dialog .modal-content .modal-footer .c-btn-signup {
        float: right;
        padding-left: 30px;
        padding-right: 30px; }

@media (max-width: 1390px) {
  .c-content-login-form .modal-dialog .modal-content {
    margin-top: 85px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-content-login-form {
    top: 0px; }
    .c-content-login-form .modal-dialog .modal-content .modal-body {
      padding: 10px 20px 10px 20px; }
      .c-content-login-form .modal-dialog .modal-content .modal-body .form-group {
        margin: 15px 0; }
      .c-content-login-form .modal-dialog .modal-content .modal-body .c-btn-login {
        padding-left: 15px;
        padding-right: 15px; }
      .c-content-login-form .modal-dialog .modal-content .modal-body .c-content-list-adjusted > li {
        width: 100%;
        display: block;
        padding: 0;
        margin: 5px 0 0 0; } }

@media (max-width: 768px) {
  /* 768px */
  .c-content-login-form {
    top: 0px; }
    .c-content-login-form .modal-dialog {
      width: auto; } }

.c-content-app-1 {
  padding: 0;
  margin: 0;
  width: 100%; }
  .c-content-app-1 > .c-diagram {
    width: 100%;
    position: relative;
    min-height: 420px;
    margin-top: 150px; }
    .c-content-app-1 > .c-diagram > .c-wireframe {
      position: absolute;
      width: 207px;
      height: 420px;
      /*rtl:begin:ignore*/
      left: 50%;
      margin-left: -103.5px;
      /*rtl:end:ignore*/ }
    .c-content-app-1 > .c-diagram > .c-lines-1 {
      position: absolute;
      height: 368px;
      width: 428px;
      /*rtl:begin:ignore*/
      left: 50%;
      margin-left: -224px;
      /*rtl:end:ignore*/
      top: -60px; }
    .c-content-app-1 > .c-diagram > .c-lines-2 {
      position: absolute;
      height: 362px;
      width: 422px;
      /*rtl:begin:ignore*/
      left: 50%;
      margin-left: -220px;
      /*rtl:end:ignore*/
      top: -56px; }
    .c-content-app-1 > .c-diagram > .c-phone-img {
      position: absolute;
      background-color: #ffffff;
      width: 182px;
      height: 324px;
      /*rtl:begin:ignore*/
      left: 50%;
      margin-left: -91px;
      /*rtl:end:ignore*/
      top: 48px; }
    .c-content-app-1 > .c-diagram > .c-box {
      width: 250px; }
      .c-content-app-1 > .c-diagram > .c-box > h3 {
        font-weight: bold;
        letter-spacing: 1px; }
    .c-content-app-1 > .c-diagram > .c-point-1 {
      position: absolute;
      /*rtl:begin:ignore*/
      left: 50%;
      margin-left: -450px;
      /*rtl:end:ignore*/
      top: 7px;
      text-align: right; }
    .c-content-app-1 > .c-diagram > .c-point-2 {
      position: absolute;
      /*rtl:begin:ignore*/
      left: 50%;
      margin-left: 180px;
      /*rtl:end:ignore*/
      top: -67px; }
    .c-content-app-1 > .c-diagram > .c-point-3 {
      position: absolute;
      /*rtl:begin:ignore*/
      left: 50%;
      margin-left: -490px;
      /*rtl:end:ignore*/
      top: 280px;
      text-align: right; }
    .c-content-app-1 > .c-diagram > .c-point-4 {
      position: absolute;
      /*rtl:begin:ignore*/
      left: 50%;
      margin-left: 220px;
      /*rtl:end:ignore*/
      top: 180px; }

@media (max-width: 991px) {
  /* 991px */
  .c-content-app-1 > .c-diagram {
    margin-top: 60px; }
    .c-content-app-1 > .c-diagram > .c-lines-1 {
      display: none; }
    .c-content-app-1 > .c-diagram > .c-lines-2 {
      display: none; }
    .c-content-app-1 > .c-diagram > .c-wireframe {
      position: relative;
      margin: auto;
      top: auto;
      left: auto; }
    .c-content-app-1 > .c-diagram > .c-box {
      position: relative;
      margin: auto;
      top: auto;
      left: auto;
      padding: 40px 0;
      text-align: left; }
      .c-content-app-1 > .c-diagram > .c-box.c-app-left {
        width: 48%;
        float: left; }
      .c-content-app-1 > .c-diagram > .c-box.c-app-right {
        width: 48%;
        float: right; } }

@media (max-width: 767px) {
  /* 767px */
  .c-content-app-1 > .c-diagram > .c-box.c-app-left {
    width: 100%; }
  .c-content-app-1 > .c-diagram > .c-box.c-app-right {
    width: 100%; } }

.c-bg-splash {
  position: absolute;
  top: 0;
  bottom: 0; }
  .c-bg-splash.c-splash-left {
    left: 0;
    right: 50%;
    background-color: #d6b4b4; }
  .c-bg-splash.c-splash-right {
    right: 0;
    left: 50%;
    background-color: #b9d3d5; }

.c-shop-banner-height {
  height: 700px; }

.c-shop-banner-1 .c-shop-banner-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%; }
  .c-shop-banner-1 .c-shop-banner-content > .c-shop-banner-img {
    position: absolute;
    bottom: 0;
    width: 70%;
    right: -50px; }
  .c-shop-banner-1 .c-shop-banner-content > .c-shop-banner-title {
    position: absolute;
    top: 40%;
    left: 20px; }
    .c-shop-banner-1 .c-shop-banner-content > .c-shop-banner-title > h1 {
      font-size: 70px;
      color: #ffffff;
      margin-bottom: 60px; }

@media (max-width: 991px) {
  /* 991px */
  .c-bg-splash {
    display: none; }
  .c-shop-banner-height {
    height: 1400px; }
  .c-shop-banner-1 .c-shop-banner-m-bg {
    background-color: #d6b4b4;
    overflow: hidden;
    height: 700px; }
    .c-shop-banner-1 .c-shop-banner-m-bg:last-child {
      background-color: #b9d3d5; } }

.c-shop-banner-2 .c-line {
  padding: 15px 0;
  border-top: 1px solid #d8dde1;
  border-bottom: 1px solid #d8dde1; }

.c-shop-banner-2 .btn {
  margin-top: 50px; }

.c-shop-banner-2 .c-image {
  height: 470px;
  background-size: contain; }

.c-shop-banner-2 .c-ad {
  margin: 164px 0; }

@media (max-width: 991px) {
  /* 991px */
  .c-shop-banner-2 .c-ad {
    margin: 58px 0 40px; }
  .c-shop-banner-2 .c-image {
    height: 300px;
    background-position: bottom; } }

@media (max-width: 767px) {
  /* 767px */
  .c-shop-banner-2 .c-image {
    height: 250px; } }

.c-shop-banner-3 .c-title {
  margin: 0; }

.c-shop-banner-3 .c-desc {
  margin: 30px 0; }

@media (max-width: 991px) {
  /* 991px */ }

.c-cookies-bar-1 {
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  right: 0;
  top: auto;
  bottom: auto;
  z-index: 10000;
  opacity: 0; }
  .c-cookies-bar-1.c-cookies-bar-top {
    top: 0; }
  .c-cookies-bar-1.c-cookies-bar-bottom {
    bottom: 0; }
  .c-cookies-bar-1 > .c-cookies-bar-container {
    margin: 20px; }
    .c-cookies-bar-1 > .c-cookies-bar-container .c-cookies-bar-content {
      margin: 5px; }
    .c-cookies-bar-1 > .c-cookies-bar-container .c-cookies-bar-btn {
      text-align: right; }

.c-cookies-bar-2 {
  display: block;
  max-width: 800px;
  height: auto;
  position: fixed;
  z-index: 10000;
  left: 0;
  right: 0;
  margin: 20px auto;
  opacity: 0; }
  .c-cookies-bar-2.c-cookies-bar-top {
    top: 20px; }
  .c-cookies-bar-2.c-cookies-bar-top-left {
    left: 20px;
    top: 20px;
    right: auto; }
  .c-cookies-bar-2.c-cookies-bar-top-right {
    right: 20px;
    top: 20px;
    left: auto; }
  .c-cookies-bar-2.c-cookies-bar-bottom {
    bottom: 20px; }
  .c-cookies-bar-2.c-cookies-bar-bottom-left {
    left: 20px;
    bottom: 20px;
    right: auto; }
  .c-cookies-bar-2.c-cookies-bar-bottom-right {
    right: 20px;
    bottom: 20px;
    left: auto; }
  .c-cookies-bar-2 > .c-cookies-bar-container {
    margin: 20px; }
    .c-cookies-bar-2 > .c-cookies-bar-container .c-cookies-bar-content {
      margin: 5px; }
    .c-cookies-bar-2 > .c-cookies-bar-container .c-cookies-bar-btn {
      text-align: right;
      margin: 10px 0; }

@media (max-width: 991px) {
  .c-cookies-bar-1 > .c-cookies-bar-container .c-cookies-bar-content {
    margin-bottom: 25px; }
  .c-cookies-bar-1 > .c-cookies-bar-container .c-cookies-bar-content,
  .c-cookies-bar-1 > .c-cookies-bar-container .c-cookies-bar-btn {
    text-align: center; }
  .c-cookies-bar-2 {
    margin: 20px; }
    .c-cookies-bar-2.c-cookies-bar-top-left {
      left: 0;
      top: 20px;
      right: 0; }
    .c-cookies-bar-2.c-cookies-bar-top-right {
      left: 0;
      top: 20px;
      right: 0; }
    .c-cookies-bar-2.c-cookies-bar-bottom-left {
      left: 0;
      bottom: 20px;
      right: 0; }
    .c-cookies-bar-2.c-cookies-bar-bottom-right {
      left: 0;
      bottom: 20px;
      right: 0; }
    .c-cookies-bar-2 > .c-cookies-bar-container .c-cookies-bar-content {
      margin-bottom: 25px; }
    .c-cookies-bar-2 > .c-cookies-bar-container .c-cookies-bar-content,
    .c-cookies-bar-2 > .c-cookies-bar-container .c-cookies-bar-btn {
      text-align: center; } }

.c-shop-wishlist-1 {
  padding: 0;
  margin: 0; }
  .c-shop-wishlist-1 .c-row-item {
    padding: 35px 0; }
  .c-shop-wishlist-1 .btn + .btn {
    margin-left: 5px; }

.c-shop-cart-page-1 > .c-cart-table-title,
.c-shop-cart-page-1 > .c-cart-table-row {
  border-bottom: 1px solid;
  border-color: rgba(135, 151, 174, 0.15); }

.c-shop-cart-page-1 > .c-cart-table-row {
  padding: 15px 0; }
  .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-item-title {
    margin: 0 15px 20px 15px;
    padding: 10px;
    border: 2px solid;
    float: left; }
  .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-image {
    position: relative;
    clear: both; }
    .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-image > img {
      width: 65%; }
  .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-desc h3 {
    margin-top: 0; }
  .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-remove > .c-cart-remove-desktop {
    line-height: 1em;
    font-size: 24px; }

.c-shop-cart-page-1 > .c-cart-buttons {
  margin-top: 20px;
  clear: both; }
  .c-shop-cart-page-1 > .c-cart-buttons > a {
    display: inline-block; }
  .c-shop-cart-page-1 > .c-cart-buttons > .c-cart-float-l {
    float: left; }
  .c-shop-cart-page-1 > .c-cart-buttons > .c-cart-float-r {
    float: right; }

.c-shop-cart-page-1 .c-cart-subtotal-border {
  border-bottom: 1px solid;
  border-color: rgba(135, 151, 174, 0.15); }

.c-shop-cart-page-1 .c-cart-sub-title,
.c-shop-cart-page-1 .c-cart-remove-mobile,
.c-shop-cart-page-1 .c-cart-item-title {
  display: none; }

@media (max-width: 991px) {
  /* 991px */
  .c-shop-cart-page-1 .c-cart-table-title,
  .c-shop-cart-page-1 .c-cart-remove-desktop {
    display: none; }
  .c-shop-cart-page-1 .c-cart-sub-title,
  .c-shop-cart-page-1 .c-cart-remove-mobile {
    display: block; }
  .c-shop-cart-page-1 > .c-cart-table-row {
    box-shadow: 0px 4px 4px -4px #ccc;
    border: none; }
    .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-item-title {
      margin-top: 10px;
      display: block; }
      .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-item-title.c-cart-item-first {
        margin-top: 0; }
    .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-ref,
    .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-qty,
    .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-price,
    .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-total {
      margin: 20px 0; }
    .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-remove {
      text-align: center;
      margin: 20px 0; }
      .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-remove > .c-cart-remove-mobile {
        display: inline-block; } }

@media (max-width: 767px) {
  /* 767px */
  .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-image > img {
    width: 100%; }
  .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-ref,
  .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-price,
  .c-shop-cart-page-1 > .c-cart-table-row > .c-cart-remove {
    clear: both; } }

@media (max-width: 480px) {
  /* 480px */
  .c-shop-cart-page-1 > .c-cart-buttons > a {
    display: block;
    margin-bottom: 20px; }
    .c-shop-cart-page-1 > .c-cart-buttons > a:last-child {
      margin: 0; }
  .c-shop-cart-page-1 > .c-cart-buttons > .c-cart-float-l {
    float: none; }
  .c-shop-cart-page-1 > .c-cart-buttons > .c-cart-float-r {
    float: none; } }

.c-shop-advanced-search-1 {
  padding: 0;
  margin: 0; }
  .c-shop-advanced-search-1 .btn + .btn {
    margin-left: 5px; }

@media (max-width: 991px) {
  /* 991px */ }

@media (max-width: 767px) {
  /* 767px */ }

.c-shop-filter-search-1 li + li {
  margin-top: 30px; }

.c-shop-filter-search-1 .c-checkbox label > .box {
  top: 4px;
  height: 15px;
  width: 15px; }

.c-shop-filter-search-1 .c-checkbox label > .check {
  top: 2px;
  left: 4px;
  width: 8px;
  height: 15px; }

.c-shop-filter-search-1 .c-checkbox label > .inc {
  left: -12px;
  top: -8px; }

.c-shop-filter-search-1 .c-review-star {
  margin: 0; }

.c-shop-filter-search-1 .c-checkbox-height {
  height: 25px; }

.c-shop-filter-search-1 .c-price-range-box {
  width: 100%; }
  .c-shop-filter-search-1 .c-price-range-box .c-price {
    width: 50%; }

.c-shop-filter-search-1 .c-price-range-slider.c-theme-1 .slider .slider-selection {
  background: #32c5d2; }

.c-shop-filter-search-1 .c-price-range-slider.c-theme-1 .slider .slider-handle {
  background: #27A8B4; }

.c-shop-filter-search-1 .c-price-range-slider.c-theme-2 .slider .slider-selection {
  background: #e7505a; }

.c-shop-filter-search-1 .c-price-range-slider.c-theme-2 .slider .slider-handle {
  background: #E22C38; }

@media (max-width: 991px) {
  /* 991px */ }

@media (max-width: 767px) {
  /* 767px */ }

.c-shop-result-filter-1 .c-filter {
  float: right; }
  .c-shop-result-filter-1 .c-filter + .c-filter {
    padding-right: 20px; }
  .c-shop-result-filter-1 .c-filter .c-input {
    font-size: 12px;
    padding-left: 5px;
    padding-right: 0; }

@media (max-width: 991px) {
  /* 991px */ }

@media (max-width: 767px) {
  /* 767px */ }

.c-shop-order-complete-1 {
  padding: 0;
  margin: 0; }
  .c-shop-order-complete-1 .c-message {
    padding: 30px 10px; }
  .c-shop-order-complete-1 .c-order-summary {
    padding: 0 20%; }
  .c-shop-order-complete-1 .c-row-item {
    padding: 30px 0; }
  .c-shop-order-complete-1 .c-row-total {
    margin-right: 30px; }
  .c-shop-order-complete-1 .c-list li + li {
    margin-top: 10px; }
  .c-shop-order-complete-1 .c-list-inline li + li {
    margin-left: 20px; }

@media (max-width: 991px) {
  /* 991px */
  .c-shop-order-complete-1 .c-order-summary {
    padding: 0;
    margin: 0; }
  .c-shop-order-complete-1 .c-image {
    padding-bottom: 30px; } }

@media (max-width: 767px) {
  /* 767px */ }

.c-shop-login-register-1 {
  padding: 0;
  margin: 0; }
  .c-shop-login-register-1 .c-content-divider > span {
    display: table; }
  .c-shop-login-register-1 .c-panel {
    border-color: #ebebeb; }
  .c-shop-login-register-1 .c-panel-body {
    padding-top: 30px;
    padding-bottom: 30px; }
  .c-shop-login-register-1 .c-margin-fix {
    margin-bottom: 3px; }

@media (max-width: 991px) {
  /* 991px */ }

@media (max-width: 767px) {
  /* 767px */ }

.c-shop-form-1 {
  padding: 0;
  margin: 0; }
  .c-shop-form-1 .c-shipping-price {
    margin-left: 30px; }
  .c-shop-form-1 .btn + .btn {
    margin-left: 5px; }

.c-shop-product-details-2 .c-product-gallery {
  margin: 0 auto;
  width: 100%;
  overflow: hidden; }
  .c-shop-product-details-2 .c-product-gallery > .c-product-gallery-content {
    background: #fff;
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden; }
    .c-shop-product-details-2 .c-product-gallery > .c-product-gallery-content img {
      width: 100%; }
    .c-shop-product-details-2 .c-product-gallery > .c-product-gallery-content > .c-zoom {
      position: relative;
      width: 100%;
      height: 600px;
      overflow: hidden; }
  .c-shop-product-details-2 .c-product-gallery > .c-product-gallery-thumbnail {
    margin-top: 10px; }
    .c-shop-product-details-2 .c-product-gallery > .c-product-gallery-thumbnail > .c-product-thumb {
      cursor: pointer;
      padding: 0 5px;
      margin-bottom: 10px;
      overflow: hidden; }
      .c-shop-product-details-2 .c-product-gallery > .c-product-gallery-thumbnail > .c-product-thumb img {
        width: 100%; }
      .c-shop-product-details-2 .c-product-gallery > .c-product-gallery-thumbnail > .c-product-thumb.c-left-thumb {
        padding-left: 0; }
      .c-shop-product-details-2 .c-product-gallery > .c-product-gallery-thumbnail > .c-product-thumb.c-right-thumb {
        padding-right: 0; }

.c-shop-product-details-2.c-opt-1 .c-product-gallery-content {
  height: 520px;
  overflow: hidden; }
  .c-shop-product-details-2.c-opt-1 .c-product-gallery-content > .c-zoom {
    height: 520px; }

.c-shop-product-details-2 .c-product-meta > .c-content-title-1 {
  float: left; }

.c-shop-product-details-2 .c-product-meta > .c-product-badge {
  text-align: right; }
  .c-shop-product-details-2 .c-product-meta > .c-product-badge > .c-product-new {
    float: right;
    padding: 5px 10px;
    background-color: #32c5d2;
    color: #ffffff; }
  .c-shop-product-details-2 .c-product-meta > .c-product-badge > .c-product-sale {
    float: right;
    padding: 5px 10px;
    background-color: #eb5d68;
    color: #ffffff; }

.c-shop-product-details-2 .c-product-meta > .c-product-review {
  clear: both;
  margin-bottom: 2em; }
  .c-shop-product-details-2 .c-product-meta > .c-product-review > .c-product-rating {
    display: inline-block;
    padding-right: 1em;
    border-right: 1px solid;
    border-color: #cccccc; }
  .c-shop-product-details-2 .c-product-meta > .c-product-review > .c-product-write-review {
    display: inline-block;
    padding-left: 1em; }

.c-shop-product-details-2 .c-product-meta > .c-product-price {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 1em; }

.c-shop-product-details-2 .c-product-meta > .c-product-short-desc {
  margin-bottom: 1em; }

.c-shop-product-details-2 .c-product-meta > .c-product-variant select {
  border-color: #d0d7de;
  padding: 6px; }

.c-shop-product-details-2 .c-product-meta .c-product-meta-label {
  float: left;
  margin-right: 1em;
  margin-top: 0.25em; }

.c-shop-product-details-2 .c-product-meta .c-product-margin-1 {
  margin-right: 33px; }

.c-shop-product-details-2 .c-product-meta .c-product-margin-2 {
  margin-right: 36px; }

@media (max-width: 991px) {
  /* 991px */
  .c-shop-product-details-2 .c-product-gallery > .c-product-gallery-content {
    height: 460px; }
    .c-shop-product-details-2 .c-product-gallery > .c-product-gallery-content > .c-zoom {
      height: 460px; }
  .c-shop-product-details-2 .c-product-meta {
    margin-top: 1.5em; } }

.c-shop-product-details-4 .c-product-header > .c-content-title-1 {
  display: inline-block; }
  .c-shop-product-details-4 .c-product-header > .c-content-title-1 > h3 {
    margin-bottom: 0.5em; }

.c-shop-product-details-4 .c-product-header > .c-product-badge {
  display: inline-block; }
  .c-shop-product-details-4 .c-product-header > .c-product-badge > .c-product-sale,
  .c-shop-product-details-4 .c-product-header > .c-product-badge > .c-product-new {
    padding: 1em 0.9em;
    border-radius: 2em;
    margin: 0 0 0 1em;
    color: #ffffff;
    display: inline-block; }
  .c-shop-product-details-4 .c-product-header > .c-product-badge > .c-product-new {
    background-color: #32c5d2; }
  .c-shop-product-details-4 .c-product-header > .c-product-badge > .c-product-sale {
    background-color: #eb5d68; }

.c-shop-product-details-4 .c-product-header > .c-product-review {
  float: right;
  padding-top: 0.5em; }
  .c-shop-product-details-4 .c-product-header > .c-product-review > .c-product-rating {
    display: inline-block;
    padding-right: 1em;
    border-right: 1px solid;
    border-color: #cccccc; }
  .c-shop-product-details-4 .c-product-header > .c-product-review > .c-product-write-review {
    display: inline-block;
    padding-left: 1em; }

.c-shop-product-details-4 .c-product-gallery {
  overflow: hidden;
  clear: both;
  margin: 40px 0;
  height: 500px; }
  .c-shop-product-details-4 .c-product-gallery .c-product-gallery-content {
    background: #fff;
    height: 500px;
    overflow: hidden; }
    .c-shop-product-details-4 .c-product-gallery .c-product-gallery-content > .c-zoom {
      position: relative;
      height: 500px;
      overflow: hidden; }
  .c-shop-product-details-4 .c-product-gallery .c-product-gallery-thumbnail .c-product-thumb {
    cursor: pointer;
    overflow: hidden;
    height: 250px !important; }
  .c-shop-product-details-4 .c-product-gallery img {
    width: 100%; }

.c-shop-product-details-4.c-opt-1 .c-product-gallery-content {
  height: 520px;
  overflow: hidden; }
  .c-shop-product-details-4.c-opt-1 .c-product-gallery-content > .c-zoom {
    height: 520px; }

.c-shop-product-details-4 .c-product-meta .c-product-price {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1em;
  text-align: right;
  padding: 0.5em 0;
  float: right; }

.c-shop-product-details-4 .c-product-meta .c-product-short-desc {
  padding: 1em; }

.c-shop-product-details-4 .c-product-meta .c-product-variant select {
  border-color: #d0d7de;
  padding: 6px; }

.c-shop-product-details-4 .c-product-meta .c-product-meta-label {
  float: left;
  margin-right: 1em;
  margin-top: 0.25em; }

.c-shop-product-details-4 .c-product-meta .c-add-cart {
  display: block;
  float: right; }

@media (max-width: 991px) {
  /* 991px */
  .c-shop-product-details-4 .c-product-header > .c-content-title-1 {
    display: block;
    text-align: center; }
  .c-shop-product-details-4 .c-product-header > .c-product-badge {
    display: block;
    text-align: center;
    margin-bottom: 0.5em; }
    .c-shop-product-details-4 .c-product-header > .c-product-badge > .c-product-new,
    .c-shop-product-details-4 .c-product-header > .c-product-badge > .c-product-sale {
      margin: 0; }
  .c-shop-product-details-4 .c-product-header > .c-product-review {
    float: none;
    text-align: center; }
  .c-shop-product-details-4 .c-product-gallery {
    height: 1000px; }
  .c-shop-product-details-4 .c-product-meta {
    margin-top: 1.5em; }
    .c-shop-product-details-4 .c-product-meta .c-product-short-desc {
      margin-bottom: 1em; }
    .c-shop-product-details-4 .c-product-meta .c-add-cart {
      float: none;
      margin: 1em auto; } }

.c-shop-product-tab-1 {
  padding-bottom: 60px; }
  .c-shop-product-tab-1 .c-product-tab-container {
    width: 100%;
    position: relative; }
  .c-shop-product-tab-1 .nav {
    padding: 0 8em;
    margin-bottom: 1em; }
    .c-shop-product-tab-1 .nav > li {
      padding: 0 0.5em; }
      .c-shop-product-tab-1 .nav > li > a {
        color: #5c6873;
        background-color: #ffffff; }
        .c-shop-product-tab-1 .nav > li > a:hover, .c-shop-product-tab-1 .nav > li > a:focus {
          background-color: #ffffff;
          color: #eb5d68;
          border-top: 2px solid;
          border-color: #eb5d68; }
      .c-shop-product-tab-1 .nav > li.active > a, .c-shop-product-tab-1 .nav > li:active > a {
        color: #eb5d68;
        background-color: #ffffff;
        border-top: 2px solid;
        border-color: #eb5d68; }
  .c-shop-product-tab-1 .tab-content .c-product-tab-meta-bg {
    padding: 40px 0; }
    .c-shop-product-tab-1 .tab-content .c-product-tab-meta-bg .c-product-tab-meta {
      display: inline-block;
      margin: 0 auto;
      padding: 0 1em; }
  .c-shop-product-tab-1 .tab-content .c-product-desc {
    padding: 60px 0;
    overflow: auto; }
    .c-shop-product-tab-1 .tab-content .c-product-desc img {
      max-width: 100%; }
    .c-shop-product-tab-1 .tab-content .c-product-desc .c-content-title-1 {
      margin-top: 5em; }
    .c-shop-product-tab-1 .tab-content .c-product-desc .c-float-r {
      float: right; }
    .c-shop-product-tab-1 .tab-content .c-product-desc.c-opt-2 .c-content-title-1 {
      margin-top: 0; }
  .c-shop-product-tab-1 .tab-content .c-product-review-margin {
    padding: 1em 0; }
  .c-shop-product-tab-1 .tab-content .c-user-avatar {
    overflow: hidden;
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 60px;
    float: left;
    margin-right: 15px; }
    .c-shop-product-tab-1 .tab-content .c-user-avatar > img {
      width: 100%; }
  .c-shop-product-tab-1 .tab-content .c-product-review-name {
    display: inline-block;
    float: left; }
  .c-shop-product-tab-1 .tab-content .c-product-review-content {
    padding-left: 95px; }
  .c-shop-product-tab-1 .tab-content .c-product-review-input {
    margin-top: 2em;
    padding-top: 0.5em;
    border-top: 1px solid;
    border-color: rgba(0, 0, 0, 0.2); }
    .c-shop-product-tab-1 .tab-content .c-product-review-input > h3 {
      margin-bottom: 1em; }
    .c-shop-product-tab-1 .tab-content .c-product-review-input > .c-review-rating-input {
      color: #5c6873; }
      .c-shop-product-tab-1 .tab-content .c-product-review-input > .c-review-rating-input > i:hover {
        color: #eb5d68; }
    .c-shop-product-tab-1 .tab-content .c-product-review-input > textarea {
      width: 100%;
      height: 4em;
      margin-bottom: 1em; }

@media (max-width: 991px) {
  /* 1199px */
  .c-shop-product-tab-1 .nav {
    padding: 0; }
  .c-shop-product-tab-1 .tab-content .c-product-desc img {
    width: 100%; }
  .c-shop-product-tab-1 .tab-content .c-product-desc .c-content-title-1 {
    margin-top: 1em; }
  .c-shop-product-tab-1 .tab-content .c-product-review-content {
    padding-left: 0; } }

.c-shop-product-compare .c-product-compare-table {
  width: 100%; }
  .c-shop-product-compare .c-product-compare-table tr > th {
    border-top: 2px solid;
    border-bottom: 1px solid;
    border-color: #cccccc; }
  .c-shop-product-compare .c-product-compare-table tr > td {
    padding: 0.5em;
    border-bottom: 1px solid;
    border-color: #cccccc; }
  .c-shop-product-compare .c-product-compare-table .c-compare-info {
    background-color: #f2f2f2; }

.c-shop-product-compare .c-compare-item {
  text-align: center; }
  .c-shop-product-compare .c-compare-item > a > img {
    width: 80px; }

.c-order-history-2 > .c-cart-table-title,
.c-order-history-2 > .c-cart-table-row {
  border-bottom: 1px solid;
  border-color: rgba(135, 151, 174, 0.15); }

.c-order-history-2 > .c-cart-table-row {
  padding: 15px 0; }
  .c-order-history-2 > .c-cart-table-row > .c-cart-item-title {
    margin: 0 15px 20px 15px;
    padding: 10px;
    border: 2px solid;
    float: left; }
  .c-order-history-2 > .c-cart-table-row > .c-cart-image {
    position: relative;
    clear: both; }
    .c-order-history-2 > .c-cart-table-row > .c-cart-image > img {
      width: 100%; }
  .c-order-history-2 > .c-cart-table-row > .c-cart-desc p {
    margin-top: 0; }
  .c-order-history-2 > .c-cart-table-row > .c-cart-remove > .c-cart-remove-desktop {
    line-height: 1em;
    font-size: 24px; }

.c-order-history-2 > .c-cart-buttons {
  margin-top: 20px;
  clear: both; }
  .c-order-history-2 > .c-cart-buttons > a {
    display: inline-block; }
  .c-order-history-2 > .c-cart-buttons > .c-cart-float-l {
    float: left; }
  .c-order-history-2 > .c-cart-buttons > .c-cart-float-r {
    float: right; }

.c-order-history-2 .c-cart-subtotal-border {
  border-bottom: 1px solid;
  border-color: rgba(135, 151, 174, 0.15); }

.c-order-history-2 .c-cart-sub-title,
.c-order-history-2 .c-cart-remove-mobile,
.c-order-history-2 .c-cart-item-title {
  display: none; }

@media (max-width: 991px) {
  /* 991px */
  .c-order-history-2 .c-cart-table-title,
  .c-order-history-2 .c-cart-remove-desktop {
    display: none; }
  .c-order-history-2 .c-cart-sub-title,
  .c-order-history-2 .c-cart-remove-mobile {
    display: block; }
  .c-order-history-2 > .c-cart-table-row {
    box-shadow: 0px 4px 4px -4px #ccc;
    border: none;
    padding: 15px; }
    .c-order-history-2 > .c-cart-table-row > .c-cart-item-title {
      margin-top: 10px;
      display: block; }
      .c-order-history-2 > .c-cart-table-row > .c-cart-item-title.c-cart-item-first {
        margin-top: 0; }
    .c-order-history-2 > .c-cart-table-row > .c-cart-remove {
      text-align: center;
      margin: 20px 0; }
      .c-order-history-2 > .c-cart-table-row > .c-cart-remove > .c-cart-remove-mobile {
        display: inline-block; } }

@media (max-width: 767px) {
  /* 767px */
  .c-order-history-2 > .c-cart-table-row > .c-cart-image > img {
    width: 100%; }
  .c-order-history-2 > .c-cart-table-row > .c-cart-ref,
  .c-order-history-2 > .c-cart-table-row > .c-cart-price,
  .c-order-history-2 > .c-cart-table-row > .c-cart-remove {
    clear: both; } }

@media (max-width: 480px) {
  /* 480px */
  .c-order-history-2 > .c-cart-buttons > a {
    display: block;
    margin-bottom: 20px; }
    .c-order-history-2 > .c-cart-buttons > a:last-child {
      margin: 0; }
  .c-order-history-2 > .c-cart-buttons > .c-cart-float-l {
    float: none; }
  .c-order-history-2 > .c-cart-buttons > .c-cart-float-r {
    float: none; } }

.c-layout-header.c-layout-header-shop-1 .c-shop-topbar-offer {
  position: relative;
  padding: 10px;
  display: table;
  width: 100%;
  margin: -20px 0 20px 0; }
  .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-offer .c-shop-topbar-offer-title {
    width: 100%;
    display: table-cell;
    vertical-align: middle; }
  .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-offer .c-shop-topbar-close {
    display: table-cell;
    width: 1px;
    vertical-align: middle; }

.c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 {
  margin-top: 20px; }
  .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu {
    display: table;
    width: 100%;
    padding: 10px 0;
    margin: 0; }
    .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-shop-topbar-level-1-desc {
      display: table-cell;
      min-width: 100%;
      padding-right: 20px;
      vertical-align: middle;
      text-align: left; }
    .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-ext {
      display: table-cell;
      width: 65px;
      margin-right: 20px; }
      .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-ext > li.c-lang {
        margin-left: 0;
        margin-right: 0; }
      .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-ext > li > a {
        font-size: 14px;
        padding: 0 0 10px 0;
        height: auto; }
        .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-ext > li > a > i {
          top: 1px; }
      .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-ext > li .dropdown-menu {
        min-width: auto; }
      .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-ext > li .c-active {
        background-color: #eee; }
    .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-shop-topbar-search {
      width: 150px;
      display: table-cell;
      font-size: 14px; }
      .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-shop-topbar-search > .c-shop-topbar-search-input {
        width: 100%;
        padding: 0 25px 0 5px; }
        .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-shop-topbar-search > .c-shop-topbar-search-input:active {
          outline: none; }
      .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-shop-topbar-search > i {
        float: right;
        margin-top: -1.4em;
        position: relative;
        padding-right: 10px; }

.c-layout-header.c-layout-header-shop-1 .c-navbar .c-mega-menu-offers-img-set {
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
  width: 100%;
  position: relative; }
  .c-layout-header.c-layout-header-shop-1 .c-navbar .c-mega-menu-offers-img-set .c-mega-menu-offers-img {
    width: 50%;
    display: table-cell;
    position: relative; }
    .c-layout-header.c-layout-header-shop-1 .c-navbar .c-mega-menu-offers-img-set .c-mega-menu-offers-img img {
      width: 100%;
      height: auto;
      transition: all 0.2s; }
      .c-layout-header.c-layout-header-shop-1 .c-navbar .c-mega-menu-offers-img-set .c-mega-menu-offers-img img:hover {
        opacity: 0.8; }
    .c-layout-header.c-layout-header-shop-1 .c-navbar .c-mega-menu-offers-img-set .c-mega-menu-offers-img .c-mega-menu-offers-overlay {
      text-align: center;
      padding: 10px 15px 15px 15px; }
      .c-layout-header.c-layout-header-shop-1 .c-navbar .c-mega-menu-offers-img-set .c-mega-menu-offers-img .c-mega-menu-offers-overlay .c-mega-menu-offers-overlay-title,
      .c-layout-header.c-layout-header-shop-1 .c-navbar .c-mega-menu-offers-img-set .c-mega-menu-offers-img .c-mega-menu-offers-overlay .c-mega-menu-offers-overlay-desc {
        margin-bottom: 10px;
        line-height: 1em; }

.c-layout-header.c-layout-header-shop-1 .c-navbar .c-mega-menu-collections-col {
  width: 20% !important; }

.c-layout-header.c-layout-header-shop-1 .c-topbar .c-brand > .c-logo:after {
  background: transparent; }

.c-layout-header.c-layout-header-shop-1 .c-float-right {
  float: right !important; }

.c-layout-header.c-layout-header-shop-1 .c-navbar .c-mega-menu {
  text-align: left; }

.c-layout-header.c-layout-header-shop-1 .c-mega-menu-offers-mobile {
  display: none; }

.c-layout-header.c-layout-header-shop-1 .c-mega-menu-offers-desktop {
  display: block; }

@media (min-width: 1170px) {
  .c-layout-header.c-layout-header-shop-1 .c-navbar .container-fluid > .c-navbar-wrapper > .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega {
    right: 0;
    padding: 0 75px; } }

@media (min-width: 992px) {
  /* 992px */
  .c-layout-header.c-layout-header-shop-1 .c-topbar {
    height: auto;
    padding: 20px 0 0 0; }
  .c-layout-header.c-layout-header-shop-1 .c-navbar .container-fluid > .c-navbar-wrapper > .c-mega-menu > .nav.navbar-nav > li > .dropdown-menu.c-menu-type-mega {
    max-width: 100%;
    padding: 0 75px; }
  .c-layout-header.c-layout-header-shop-1 .c-layout-page {
    margin-top: 200px; }
  .c-layout-header-fixed.c-layout-header-mobile-fixed.c-shop-demo-1 .c-layout-page {
    margin-top: 257px; } }

@media (max-width: 991px) {
  /* 991px */
  .c-layout-header.c-layout-header-shop-1 .c-float-right {
    float: none !important; }
  .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 {
    text-align: left;
    margin-top: 0; }
  .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-offer {
    margin: 0; }
  .c-layout-header.c-layout-header-shop-1 .c-mega-menu-offers-mobile {
    display: block; }
  .c-layout-header.c-layout-header-shop-1 .c-mega-menu-offers-desktop {
    display: none !important; }
  .c-layout-header.c-layout-header-shop-1 .c-center {
    text-align: left !important; }
  .c-layout-header.c-layout-header-shop-1 .c-navbar .c-mega-menu-collections-col {
    width: 100% !important; }
  .c-layout-header-fixed.c-layout-header-mobile-fixed.c-shop-demo-1 .c-layout-page {
    margin-top: 208px; } }

@media (max-width: 767px) {
  /* 767px */
  .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-offer .c-shop-topbar-offer-title {
    padding-right: 20px; }
  .c-layout-header.c-layout-header-shop-1 .c-shop-topbar-level-1 .c-top-menu > .c-shop-topbar-level-1-desc span {
    display: none; }
  .c-layout-header-fixed.c-layout-header-mobile-fixed.c-shop-demo-1 .c-layout-page {
    margin-top: 211px; } }

.c-page-faq-2 .c-faq-tabs {
  border: 1px solid;
  border-color: #ddd; }
  .c-page-faq-2 .c-faq-tabs > li {
    float: none; }
    .c-page-faq-2 .c-faq-tabs > li > a {
      border: none; }
      .c-page-faq-2 .c-faq-tabs > li > a:hover, .c-page-faq-2 .c-faq-tabs > li > a:focus {
        border: none; }
    .c-page-faq-2 .c-faq-tabs > li.active {
      background-color: #eee; }
      .c-page-faq-2 .c-faq-tabs > li.active > a {
        background-color: transparent;
        color: #32c5d2; }

.c-page-faq-2 .c-content-accordion-1 .panel {
  border-bottom: 1px solid;
  border-color: #eee;
  margin: 0; }
  .c-page-faq-2 .c-content-accordion-1 .panel:last-child {
    border: none; }
  .c-page-faq-2 .c-content-accordion-1 .panel > .panel-heading > .panel-title > a {
    color: #3f444a;
    padding: 10px;
    font-size: 19px; }
    .c-page-faq-2 .c-content-accordion-1 .panel > .panel-heading > .panel-title > a > i {
      width: 17px; }
    .c-page-faq-2 .c-content-accordion-1 .panel > .panel-heading > .panel-title > a.collapsed {
      color: #3f444a; }
  .c-page-faq-2 .c-content-accordion-1 .panel > .panel-collapse > .panel-body {
    color: #3f444a;
    padding-bottom: 20px;
    padding-left: 35px;
    font-size: 15px; }

@media (max-width: 991px) {
  .c-page-faq-2 .c-content-title-1 {
    margin-top: 40px; } }

.c-content-isotope-gallery .c-content-isotope-item {
  height: auto;
  position: relative; }
  .c-content-isotope-gallery .c-content-isotope-item > .c-content-isotope-image-container {
    position: relative; }
    .c-content-isotope-gallery .c-content-isotope-item > .c-content-isotope-image-container > .c-content-isotope-image {
      width: 100%;
      height: auto; }
    .c-content-isotope-gallery .c-content-isotope-item > .c-content-isotope-image-container > .c-content-isotope-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      top: 0;
      left: 0;
      opacity: 0;
      webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      .c-content-isotope-gallery .c-content-isotope-item > .c-content-isotope-image-container > .c-content-isotope-overlay > .c-content-isotope-overlay-icon {
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%); }
      .c-content-isotope-gallery .c-content-isotope-item > .c-content-isotope-image-container > .c-content-isotope-overlay:hover {
        opacity: 1;
        cursor: pointer; }

.c-content-isotope-gallery.c-opt-1 .c-content-isotope-item, .c-content-isotope-gallery.c-opt-4 .c-content-isotope-item, .c-content-isotope-gallery.c-opt-5 .c-content-isotope-item {
  width: 20%; }
  .c-content-isotope-gallery.c-opt-1 .c-content-isotope-item.c-item-size-double, .c-content-isotope-gallery.c-opt-4 .c-content-isotope-item.c-item-size-double, .c-content-isotope-gallery.c-opt-5 .c-content-isotope-item.c-item-size-double {
    width: 40%; }

.c-content-isotope-gallery.c-opt-2 {
  margin: -10px; }
  .c-content-isotope-gallery.c-opt-2 .c-content-isotope-item {
    width: 20%;
    padding: 10px; }
    .c-content-isotope-gallery.c-opt-2 .c-content-isotope-item .c-content-isotope-image-container {
      padding: 7px;
      background-color: rgba(0, 0, 0, 0.1); }

.c-content-isotope-gallery.c-opt-3 {
  margin: -5px; }
  .c-content-isotope-gallery.c-opt-3 .c-content-isotope-item {
    width: 50%;
    padding: 5px; }

.c-content-isotope-gallery.c-opt-4 {
  margin: -5px; }
  .c-content-isotope-gallery.c-opt-4 .c-content-isotope-item {
    padding: 5px; }

.c-content-isotope-filter-1,
.c-content-isotope-filter-2 {
  margin: 20px auto;
  display: block; }
  .c-content-isotope-filter-1 > .c-isotope-filter-btn,
  .c-content-isotope-filter-2 > .c-isotope-filter-btn {
    border: none;
    background-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    opacity: 0.6;
    font-size: 15px;
    webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .c-content-isotope-filter-1 > .c-isotope-filter-btn.c-active, .c-content-isotope-filter-1 > .c-isotope-filter-btn:hover,
    .c-content-isotope-filter-2 > .c-isotope-filter-btn.c-active,
    .c-content-isotope-filter-2 > .c-isotope-filter-btn:hover {
      opacity: 1;
      border-bottom: 3px solid; }
    .c-content-isotope-filter-1 > .c-isotope-filter-btn:focus, .c-content-isotope-filter-1 > .c-isotope-filter-btn:active,
    .c-content-isotope-filter-2 > .c-isotope-filter-btn:focus,
    .c-content-isotope-filter-2 > .c-isotope-filter-btn:active {
      outline: none; }

@media (max-width: 991px) {
  .c-content-isotope-gallery.c-opt-1 .c-content-isotope-item, .c-content-isotope-gallery.c-opt-4 .c-content-isotope-item, .c-content-isotope-gallery.c-opt-5 .c-content-isotope-item {
    width: 50%; }
    .c-content-isotope-gallery.c-opt-1 .c-content-isotope-item.c-item-size-double, .c-content-isotope-gallery.c-opt-4 .c-content-isotope-item.c-item-size-double, .c-content-isotope-gallery.c-opt-5 .c-content-isotope-item.c-item-size-double {
      width: 100%; }
  .c-content-isotope-gallery.c-opt-2 .c-content-isotope-item {
    width: 50%; }
  .c-content-isotope-gallery.c-opt-3 .c-content-isotope-item {
    width: 100%; } }

@media (max-width: 480px) {
  .c-content-isotope-gallery.c-opt-2 .c-content-isotope-item {
    width: 100%; } }

.c-content-isotope-grid .c-content-isotope-item {
  height: auto;
  position: relative;
  overflow: hidden; }
  .c-content-isotope-grid .c-content-isotope-item > .c-content-isotope-image-container {
    position: relative;
    overflow: hidden; }
    .c-content-isotope-grid .c-content-isotope-item > .c-content-isotope-image-container .c-content-isotope-image {
      width: 100%;
      height: auto;
      webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .c-content-isotope-grid .c-content-isotope-item > .c-content-isotope-image-container > .c-content-isotope-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      padding: 30px;
      background-color: rgba(0, 0, 0, 0.7);
      top: 0;
      left: 0;
      opacity: 0;
      webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .c-content-isotope-grid .c-content-isotope-item > .c-content-isotope-image-container > .c-content-isotope-overlay > .c-content-isotope-overlay-content {
        text-align: center; }
        .c-content-isotope-grid .c-content-isotope-item > .c-content-isotope-image-container > .c-content-isotope-overlay > .c-content-isotope-overlay-content > .c-content-isotope-overlay-title {
          margin-top: 0;
          font-size: 18px;
          font-weight: 600; }
        .c-content-isotope-grid .c-content-isotope-item > .c-content-isotope-image-container > .c-content-isotope-overlay > .c-content-isotope-overlay-content > .c-content-isotope-overlay-desc {
          font-size: 14px; }
        .c-content-isotope-grid .c-content-isotope-item > .c-content-isotope-image-container > .c-content-isotope-overlay > .c-content-isotope-overlay-content > .c-content-isotope-overlay-price {
          font-size: 28px; }
    .c-content-isotope-grid .c-content-isotope-item > .c-content-isotope-image-container:hover > .c-content-isotope-overlay {
      opacity: 1; }

.c-content-isotope-grid.c-opt-1 {
  margin: -10px; }
  .c-content-isotope-grid.c-opt-1 .c-content-isotope-item {
    width: 25%;
    padding: 10px; }
    .c-content-isotope-grid.c-opt-1 .c-content-isotope-item.c-item-size-double {
      width: 50%; }
    .c-content-isotope-grid.c-opt-1 .c-content-isotope-item .c-content-isotope-image-container {
      padding: 7px;
      background-color: rgba(0, 0, 0, 0.1); }
      .c-content-isotope-grid.c-opt-1 .c-content-isotope-item .c-content-isotope-image-container > .c-content-isotope-overlay {
        width: auto;
        height: auto;
        left: 7px;
        right: 7px;
        top: auto;
        bottom: -100%; }
      .c-content-isotope-grid.c-opt-1 .c-content-isotope-item .c-content-isotope-image-container:hover > .c-content-isotope-overlay {
        bottom: 7px; }

.c-content-isotope-grid.c-opt-2 {
  margin: -10px; }
  .c-content-isotope-grid.c-opt-2 .c-content-isotope-item {
    width: 25%;
    padding: 10px; }
    .c-content-isotope-grid.c-opt-2 .c-content-isotope-item.c-item-size-double {
      width: 50%; }
    .c-content-isotope-grid.c-opt-2 .c-content-isotope-item .c-content-isotope-image-container {
      padding: 7px;
      background-color: rgba(0, 0, 0, 0.1); }
      .c-content-isotope-grid.c-opt-2 .c-content-isotope-item .c-content-isotope-image-container .c-content-isotope-overlay-content {
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%); }

.c-content-isotope-grid.c-opt-3 {
  margin: -10px; }
  .c-content-isotope-grid.c-opt-3 .c-content-isotope-item {
    width: 25%;
    padding: 10px; }
    .c-content-isotope-grid.c-opt-3 .c-content-isotope-item.c-item-size-double {
      width: 50%; }
    .c-content-isotope-grid.c-opt-3 .c-content-isotope-item .c-content-isotope-image-container {
      padding: 7px;
      background-color: #fff;
      border: 1px solid #ccc;
      width: 100%; }
      .c-content-isotope-grid.c-opt-3 .c-content-isotope-item .c-content-isotope-image-container .c-content-isotope-overlay-content {
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%); }
        .c-content-isotope-grid.c-opt-3 .c-content-isotope-item .c-content-isotope-image-container .c-content-isotope-overlay-content > .c-content-isotope-overlay-btn {
          margin: 10px 0 0 0; }
          .c-content-isotope-grid.c-opt-3 .c-content-isotope-item .c-content-isotope-image-container .c-content-isotope-overlay-content > .c-content-isotope-overlay-btn:first-child {
            margin-top: 0; }
      .c-content-isotope-grid.c-opt-3 .c-content-isotope-item .c-content-isotope-image-container:hover {
        box-shadow: 0px 0px 15px #000; }

@media (max-width: 991px) {
  .c-content-isotope-grid.c-opt-1 .c-content-isotope-item, .c-content-isotope-grid.c-opt-2 .c-content-isotope-item, .c-content-isotope-grid.c-opt-3 .c-content-isotope-item {
    width: 50%; }
    .c-content-isotope-grid.c-opt-1 .c-content-isotope-item.c-item-size-double, .c-content-isotope-grid.c-opt-2 .c-content-isotope-item.c-item-size-double, .c-content-isotope-grid.c-opt-3 .c-content-isotope-item.c-item-size-double {
      width: 100%; } }

@media (max-width: 480px) {
  .c-content-isotope-grid.c-opt-1 .c-content-isotope-item, .c-content-isotope-grid.c-opt-2 .c-content-isotope-item, .c-content-isotope-grid.c-opt-3 .c-content-isotope-item {
    width: 100%; } }

.c-progress-bar .c-progress-bar-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px; }

.c-progress-bar .c-progress-bar-container .c-progress-bar-icon-line {
  display: inline-block;
  font-size: 30px;
  width: 35px;
  margin-right: 15px; }

.c-progress-bar .c-progress-bar-container .c-progress-bar-line {
  position: relative; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line .progressbar-text {
    display: none; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-display-value='true'] .progressbar-text {
    display: block; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"].c-progress-bar-line-with-icon {
    margin: -37px 0 20px 50px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"] .progressbar-text {
    text-align: right; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"] .c-progress-bar-label {
    font-size: 16px;
    margin-bottom: 0; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="1"] svg {
    height: 5px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="2"] svg {
    height: 11px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="3"] svg {
    height: 17px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="4"] svg {
    height: 23px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="5"] svg {
    height: 29px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="6"] svg {
    height: 35px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="7"] svg {
    height: 41px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="8"] svg {
    height: 47px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="9"] svg {
    height: 53px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="10"] svg {
    height: 69px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="11"] svg {
    height: 75px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="12"] svg {
    height: 81px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="13"] svg {
    height: 87px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="14"] svg {
    height: 93px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"][data-stroke-width="15"] svg {
    height: 99px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"] svg {
    width: 100%; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="circle"] {
    padding: 20px 50px; }
    .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="circle"] .progressbar-text,
    .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="circle"] .c-progress-bar-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%); }
    .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="circle"] .progressbar-text {
      text-align: center;
      font-size: 40px; }
    .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="circle"] .c-progress-bar-icon {
      font-size: 45px; }
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="semicircle"] {
    padding: 20px 50px;
    margin-bottom: 30px; }
    .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="semicircle"] .progressbar-text,
    .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="semicircle"] .c-progress-bar-icon {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%); }
    .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="semicircle"] .progressbar-text {
      text-align: center;
      font-size: 40px; }
    .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="semicircle"] .c-progress-bar-icon {
      font-size: 45px; }

.c-progress-bar.c-progress-bar-rtl .c-progress-bar-container .c-progress-bar-line[data-progress-bar="semicircle"] .progressbar-text {
  /*rtl:ignore*/
  transform: translate(50%, 0px) !important; }

@media (max-width: 1024px) {
  .c-progress-bar .c-progress-bar-container .c-progress-bar-line {
    padding: 20px 10px !important; }
    .c-progress-bar .c-progress-bar-container .c-progress-bar-line[data-progress-bar="line"] {
      padding: 0 !important; } }

@media (max-width: 991px) {
  .c-progress-bar .c-progress-bar-container {
    margin: 0 20%; }
    .c-progress-bar .c-progress-bar-container .c-progress-bar-line {
      padding: 20px 50px !important; }
  .c-progress-bar .c-progress-bar-desc-container {
    margin: 0 20% 30px 20%; } }

@media (max-width: 480px) {
  .c-progress-bar .c-progress-bar-container {
    margin: 0; }
  .c-progress-bar .c-progress-bar-desc-container {
    margin: 0 0 30px 0; } }

.c-content-services-6 .c-content-services-6-item {
  padding: 20px 40px 30px 40px;
  border-radius: 15px;
  background-color: transparent;
  transition: all 0.2s; }
  .c-content-services-6 .c-content-services-6-item:hover {
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1); }
  .c-content-services-6 .c-content-services-6-item .c-content-services-6-item-icon {
    margin-bottom: 20px; }
  .c-content-services-6 .c-content-services-6-item .c-content-services-6-item-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #343a3d; }
  .c-content-services-6 .c-content-services-6-item .c-content-services-6-item-desc {
    font-weight: 300;
    color: #7c8387; }

/*********************************
COMPONENTS
*********************************/
code {
  border: 1px solid #d5d5d5;
  border-radius: 2px; }

.close {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #3f444a;
  font-size: 28px;
  outline: none !important;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-transition: back 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out; }
  .close:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -webkit-transition: back 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out; }

label {
  font-weight: 500;
  font-size: 18px; }

.badge {
  font-weight: 400;
  padding: 4px 7px; }

.pager li > a, .pager li > span {
  border-radius: 20px; }

.form-control {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  box-shadow: none;
  outline: none;
  font-weight: 300;
  background: white;
  border-color: #d0d7de; }
  .input-group-lg .form-control, .form-control.input-lg {
    font-weight: 300;
    font-size: 14px; }
  .form-control:active, .form-control:focus {
    box-shadow: none !important; }
  .form-control.c-square {
    border-radius: 0 !important; }
  .form-control.c-border-2px {
    border-color: white;
    border-width: 2px; }
  .form-control:focus, .form-control:active, .form-control.active {
    border-color: #94a4b4; }
    .form-control:focus.c-border-2px, .form-control:active.c-border-2px, .form-control.active.c-border-2px {
      border-color: #cccccc;
      border-width: 2px; }
  .form-control.form-control-transparent {
    background: none; }

.input-group .input-group-btn > .btn,
.input-group .input-group-addon {
  border-color: #d0d7de; }

.input-group.c-square .input-group-btn > .btn,
.input-group.c-square .input-group-addon {
  border-radius: 0 !important; }

.input-group.c-border-2px .input-group-btn > .btn,
.input-group.c-border-2px .input-group-addon {
  border-color: white;
  border-width: 2px; }

.help-block {
  color: #677581;
  font-size: 15px; }

label.control-label {
  padding-top: 5px;
  font-weight: 300;
  color: #2e353a; }

.checkbox label,
.radio label,
.c-checkbox label,
.c-radio label {
  color: #454e56;
  font-weight: 300; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #5dc09c; }

.has-success .form-control {
  border-color: #5dc09c;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .has-success .form-control:focus {
    border-color: #42a883;
    -webkit-box-shadow: none;
    box-shadow: none; }

.has-success .input-group-addon {
  color: #5dc09c;
  border-color: #5dc09c;
  background-color: #cbebdf; }

.has-success .form-control-feedback {
  color: #5dc09c; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #c8d046; }

.has-warning .form-control {
  border-color: #c8d046;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .has-warning .form-control:focus {
    border-color: #adb52e;
    -webkit-box-shadow: none;
    box-shadow: none; }

.has-warning .input-group-addon {
  color: #c8d046;
  border-color: #c8d046;
  background-color: #ecefc0; }

.has-warning .form-control-feedback {
  color: #c8d046; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #e7505a; }

.has-error .form-control {
  border-color: #e7505a;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .has-error .form-control:focus {
    border-color: #e12330;
    -webkit-box-shadow: none;
    box-shadow: none; }

.has-error .input-group-addon {
  color: #e7505a;
  border-color: #e7505a;
  background-color: #f9d7d9; }

.has-error .form-control-feedback {
  color: #e7505a; }

.btn {
  outline: none !important;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  padding: 6px 20px 4px 20px;
  font-size: 16px; }
  .btn > i {
    margin-right: 5px;
    text-align: center;
    font-weight: 300; }
  .btn.btn-sm {
    padding: 6px 18px 4px 18px; }
    .btn.btn-sm > i {
      margin-right: 5px;
      font-size: 14px; }
  .btn.btn-md {
    padding: 9px 20px 7px 20px; }
  .btn.btn-xs {
    padding: 1px 8px 1px 8px; }
    .btn.btn-xs > i {
      margin-right: 3px;
      font-size: 14px; }
  .btn.btn-lg {
    padding: 11px 26px 9px 26px; }
  .btn.btn-xlg {
    padding: 16px 44px 14px 44px; }

.btn.c-btn-border-2x {
  border-width: 2px;
  padding: 6px 20px 4px 20px; }
  .btn.c-btn-border-2x.btn-sm {
    padding: 5px 18px 3px 18px; }
  .btn.c-btn-border-2x.btn-xs {
    padding: 0px 8px 1px 8px; }
  .btn.c-btn-border-2x.btn-md {
    padding: 8px 20px 6px 20px; }
  .btn.c-btn-border-2x.btn-lg {
    padding: 10px 26px 8px 26px; }
  .btn.c-btn-border-2x.btn-xlg {
    padding: 16px 44px 14px 44px; }
  .btn.c-btn-border-2x.c-btn-uppercase {
    padding: 6px 20px 4px 20px; }
    .btn.c-btn-border-2x.c-btn-uppercase.btn-sm {
      padding: 5px 18px 3px 18px; }
    .btn.c-btn-border-2x.c-btn-uppercase.btn-xs {
      padding: 1px 8px 0px 8px; }
    .btn.c-btn-border-2x.c-btn-uppercase.btn-md {
      padding: 10px 20px 8px 20px; }
    .btn.c-btn-border-2x.c-btn-uppercase.btn-lg {
      padding: 12px 26px 12px 26px; }
    .btn.c-btn-border-2x.c-btn-uppercase.btn-xlg {
      padding: 18px 44px 16px 44px; }

.btn.c-btn-border-1x {
  border-width: 1px; }

.btn + .btn {
  margin-left: 10px; }

.btn.c-btn-icon {
  min-height: 56px;
  padding: 0;
  padding: 5px 20px 5px 20px; }
  .btn.c-btn-icon > i {
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -ms-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    margin: -5px 0 0 -20px;
    float: left;
    display: block;
    position: absolute;
    height: 56px;
    width: 56px;
    font-size: 32px;
    vertical-align: middle;
    padding-top: 10px; }
  .btn.c-btn-icon > .c-helper {
    margin: 4px 20px -2px 55px;
    text-align: left;
    display: block;
    font-size: 14px; }
  .btn.c-btn-icon > .c-caption {
    text-align: left;
    margin: 0px 20px 0px 55px;
    display: block;
    font-size: 18px;
    font-weight: 500; }

.c-btn-circle {
  border-radius: 30px !important; }

.c-btn-bold {
  font-weight: bold; }

.c-btn-sbold {
  font-weight: 500; }

.c-btn-square {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0; }

.c-btn-uppercase {
  text-transform: uppercase; }
  .c-btn-uppercase.btn {
    font-size: 14px;
    padding: 7px 20px 5px 20px; }
  .c-btn-uppercase.btn-md {
    font-size: 16px;
    padding: 10px 20px 9px 20px; }
  .c-btn-uppercase.btn-lg {
    font-size: 16px;
    padding: 12px 26px 11px 26px; }
  .c-btn-uppercase.btn-xlg {
    font-size: 18px;
    padding: 20px 44px 15px 44px; }
  .c-btn-uppercase.btn-sm {
    padding: 6px 18px 4px 18px; }
  .c-btn-uppercase.btn-xs {
    padding: 2px 8px 0px 8px; }

.btn-default {
  color: #99a5b9;
  background: #ffffff;
  border-color: #e1e6ee; }
  .btn-default.btn-no-focus:focus, .btn-default.btn-no-focus.focus {
    color: #99a5b9;
    background: #ffffff;
    border-color: #e1e6ee; }
  .btn-default.btn-no-focus:hover, .btn-default:hover, .btn-default.btn-no-focus:active, .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #ffffff;
    background: #8998b5;
    border-color: #8998b5; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:not(.btn-no-focus):focus, .btn-default.disabled:not(.btn-no-focus).focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:not(.btn-no-focus):focus, .btn-default[disabled]:not(.btn-no-focus).focus, .btn-default[disabled]:active, .btn-default[disabled].active,
  fieldset[disabled] .btn-default,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:not(.btn-no-focus):focus,
  fieldset[disabled] .btn-default:not(.btn-no-focus).focus,
  fieldset[disabled] .btn-default:active,
  fieldset[disabled] .btn-default.active {
    background: #ffffff;
    border-color: #e1e6ee; }
  .btn-default .badge {
    color: #ffffff;
    background: #99a5b9; }

.btn-primary {
  color: #ffffff;
  background: #5e9cd1;
  border-color: #5e9cd1; }
  .btn-primary.btn-no-focus:focus, .btn-primary.btn-no-focus.focus {
    color: #ffffff;
    background: #5e9cd1;
    border-color: #5e9cd1; }
  .btn-primary.btn-no-focus:hover, .btn-primary:hover, .btn-primary.btn-no-focus:active, .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #ffffff;
    background: #3883c4;
    border-color: #3883c4; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:not(.btn-no-focus):focus, .btn-primary.disabled:not(.btn-no-focus).focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:not(.btn-no-focus):focus, .btn-primary[disabled]:not(.btn-no-focus).focus, .btn-primary[disabled]:active, .btn-primary[disabled].active,
  fieldset[disabled] .btn-primary,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:not(.btn-no-focus):focus,
  fieldset[disabled] .btn-primary:not(.btn-no-focus).focus,
  fieldset[disabled] .btn-primary:active,
  fieldset[disabled] .btn-primary.active {
    background: #5e9cd1;
    border-color: #5e9cd1; }
  .btn-primary .badge {
    color: #5e9cd1;
    background: #ffffff; }

.btn-success {
  color: #ffffff;
  background: #5dc09c;
  border-color: #5dc09c; }
  .btn-success.btn-no-focus:focus, .btn-success.btn-no-focus.focus {
    color: #ffffff;
    background: #5dc09c;
    border-color: #5dc09c; }
  .btn-success.btn-no-focus:hover, .btn-success:hover, .btn-success.btn-no-focus:active, .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #ffffff;
    background: #42a883;
    border-color: #42a883; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:not(.btn-no-focus):focus, .btn-success.disabled:not(.btn-no-focus).focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:not(.btn-no-focus):focus, .btn-success[disabled]:not(.btn-no-focus).focus, .btn-success[disabled]:active, .btn-success[disabled].active,
  fieldset[disabled] .btn-success,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:not(.btn-no-focus):focus,
  fieldset[disabled] .btn-success:not(.btn-no-focus).focus,
  fieldset[disabled] .btn-success:active,
  fieldset[disabled] .btn-success.active {
    background: #5dc09c;
    border-color: #5dc09c; }
  .btn-success .badge {
    color: #5dc09c;
    background: #ffffff; }

.btn-danger {
  color: #ffffff;
  background: #e7505a;
  border-color: #e7505a; }
  .btn-danger.btn-no-focus:focus, .btn-danger.btn-no-focus.focus {
    color: #ffffff;
    background: #e7505a;
    border-color: #e7505a; }
  .btn-danger.btn-no-focus:hover, .btn-danger:hover, .btn-danger.btn-no-focus:active, .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #ffffff;
    background: #e12330;
    border-color: #e12330; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:not(.btn-no-focus):focus, .btn-danger.disabled:not(.btn-no-focus).focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:not(.btn-no-focus):focus, .btn-danger[disabled]:not(.btn-no-focus).focus, .btn-danger[disabled]:active, .btn-danger[disabled].active,
  fieldset[disabled] .btn-danger,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:not(.btn-no-focus):focus,
  fieldset[disabled] .btn-danger:not(.btn-no-focus).focus,
  fieldset[disabled] .btn-danger:active,
  fieldset[disabled] .btn-danger.active {
    background: #e7505a;
    border-color: #e7505a; }
  .btn-danger .badge {
    color: #e7505a;
    background: #ffffff; }

.btn-warning {
  color: #ffffff;
  background: #c8d046;
  border-color: #c8d046; }
  .btn-warning.btn-no-focus:focus, .btn-warning.btn-no-focus.focus {
    color: #ffffff;
    background: #c8d046;
    border-color: #c8d046; }
  .btn-warning.btn-no-focus:hover, .btn-warning:hover, .btn-warning.btn-no-focus:active, .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #ffffff;
    background: #adb52e;
    border-color: #adb52e; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:not(.btn-no-focus):focus, .btn-warning.disabled:not(.btn-no-focus).focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:not(.btn-no-focus):focus, .btn-warning[disabled]:not(.btn-no-focus).focus, .btn-warning[disabled]:active, .btn-warning[disabled].active,
  fieldset[disabled] .btn-warning,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:not(.btn-no-focus):focus,
  fieldset[disabled] .btn-warning:not(.btn-no-focus).focus,
  fieldset[disabled] .btn-warning:active,
  fieldset[disabled] .btn-warning.active {
    background: #c8d046;
    border-color: #c8d046; }
  .btn-warning .badge {
    color: #c8d046;
    background: #ffffff; }

.btn-info {
  color: #ffffff;
  background: #4eabe6;
  border-color: #4eabe6; }
  .btn-info.btn-no-focus:focus, .btn-info.btn-no-focus.focus {
    color: #ffffff;
    background: #4eabe6;
    border-color: #4eabe6; }
  .btn-info.btn-no-focus:hover, .btn-info:hover, .btn-info.btn-no-focus:active, .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #ffffff;
    background: #2196e0;
    border-color: #2196e0; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:not(.btn-no-focus):focus, .btn-info.disabled:not(.btn-no-focus).focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:not(.btn-no-focus):focus, .btn-info[disabled]:not(.btn-no-focus).focus, .btn-info[disabled]:active, .btn-info[disabled].active,
  fieldset[disabled] .btn-info,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:not(.btn-no-focus):focus,
  fieldset[disabled] .btn-info:not(.btn-no-focus).focus,
  fieldset[disabled] .btn-info:active,
  fieldset[disabled] .btn-info.active {
    background: #4eabe6;
    border-color: #4eabe6; }
  .btn-info .badge {
    color: #4eabe6;
    background: #ffffff; }

.c-btn-white {
  border-color: #FFFFFF;
  border-width: 1px;
  color: #2f353b;
  background: #FFFFFF;
  border-color: #FFFFFF; }
  .c-btn-white.btn-no-focus:focus, .c-btn-white.btn-no-focus.focus {
    color: #2f353b;
    background: #FFFFFF;
    border-color: #FFFFFF; }
  .c-btn-white.btn-no-focus:hover, .c-btn-white:hover, .c-btn-white.btn-no-focus:active, .c-btn-white:active, .c-btn-white.active,
  .open > .c-btn-white.dropdown-toggle {
    color: #2f353b;
    background: #ebebeb;
    border-color: #ebebeb; }
  .c-btn-white:active, .c-btn-white.active,
  .open > .c-btn-white.dropdown-toggle {
    background-image: none; }
  .c-btn-white.disabled, .c-btn-white.disabled:hover, .c-btn-white.disabled:not(.btn-no-focus):focus, .c-btn-white.disabled:not(.btn-no-focus).focus, .c-btn-white.disabled:active, .c-btn-white.disabled.active, .c-btn-white[disabled], .c-btn-white[disabled]:hover, .c-btn-white[disabled]:not(.btn-no-focus):focus, .c-btn-white[disabled]:not(.btn-no-focus).focus, .c-btn-white[disabled]:active, .c-btn-white[disabled].active,
  fieldset[disabled] .c-btn-white,
  fieldset[disabled] .c-btn-white:hover,
  fieldset[disabled] .c-btn-white:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-white:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-white:active,
  fieldset[disabled] .c-btn-white.active {
    background: #FFFFFF;
    border-color: #FFFFFF; }
  .c-btn-white .badge {
    color: #FFFFFF;
    background: #2f353b; }

.c-btn-black {
  border-color: #000000;
  border-width: 1px;
  color: #ffffff;
  background: #000000;
  border-color: #000000; }
  .c-btn-black.btn-no-focus:focus, .c-btn-black.btn-no-focus.focus {
    color: #ffffff;
    background: #000000;
    border-color: #000000; }
  .c-btn-black.btn-no-focus:hover, .c-btn-black:hover, .c-btn-black.btn-no-focus:active, .c-btn-black:active, .c-btn-black.active,
  .open > .c-btn-black.dropdown-toggle {
    color: #ffffff;
    background: black;
    border-color: black; }
  .c-btn-black:active, .c-btn-black.active,
  .open > .c-btn-black.dropdown-toggle {
    background-image: none; }
  .c-btn-black.disabled, .c-btn-black.disabled:hover, .c-btn-black.disabled:not(.btn-no-focus):focus, .c-btn-black.disabled:not(.btn-no-focus).focus, .c-btn-black.disabled:active, .c-btn-black.disabled.active, .c-btn-black[disabled], .c-btn-black[disabled]:hover, .c-btn-black[disabled]:not(.btn-no-focus):focus, .c-btn-black[disabled]:not(.btn-no-focus).focus, .c-btn-black[disabled]:active, .c-btn-black[disabled].active,
  fieldset[disabled] .c-btn-black,
  fieldset[disabled] .c-btn-black:hover,
  fieldset[disabled] .c-btn-black:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-black:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-black:active,
  fieldset[disabled] .c-btn-black.active {
    background: #000000;
    border-color: #000000; }
  .c-btn-black .badge {
    color: #000000;
    background: #ffffff; }

.c-btn-regular {
  border-color: #7f8c97;
  border-width: 1px;
  color: #ffffff;
  background: #7f8c97;
  border-color: #7f8c97; }
  .c-btn-regular.btn-no-focus:focus, .c-btn-regular.btn-no-focus.focus {
    color: #ffffff;
    background: #7f8c97;
    border-color: #7f8c97; }
  .c-btn-regular.btn-no-focus:hover, .c-btn-regular:hover, .c-btn-regular.btn-no-focus:active, .c-btn-regular:active, .c-btn-regular.active,
  .open > .c-btn-regular.dropdown-toggle {
    color: #ffffff;
    background: #6a7883;
    border-color: #6a7883; }
  .c-btn-regular:active, .c-btn-regular.active,
  .open > .c-btn-regular.dropdown-toggle {
    background-image: none; }
  .c-btn-regular.disabled, .c-btn-regular.disabled:hover, .c-btn-regular.disabled:not(.btn-no-focus):focus, .c-btn-regular.disabled:not(.btn-no-focus).focus, .c-btn-regular.disabled:active, .c-btn-regular.disabled.active, .c-btn-regular[disabled], .c-btn-regular[disabled]:hover, .c-btn-regular[disabled]:not(.btn-no-focus):focus, .c-btn-regular[disabled]:not(.btn-no-focus).focus, .c-btn-regular[disabled]:active, .c-btn-regular[disabled].active,
  fieldset[disabled] .c-btn-regular,
  fieldset[disabled] .c-btn-regular:hover,
  fieldset[disabled] .c-btn-regular:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-regular:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-regular:active,
  fieldset[disabled] .c-btn-regular.active {
    background: #7f8c97;
    border-color: #7f8c97; }
  .c-btn-regular .badge {
    color: #7f8c97;
    background: #ffffff; }

.c-btn-green {
  border-color: #32c5d2;
  border-width: 1px;
  color: #ffffff;
  background: #32c5d2;
  border-color: #32c5d2; }
  .c-btn-green.btn-no-focus:focus, .c-btn-green.btn-no-focus.focus {
    color: #ffffff;
    background: #32c5d2;
    border-color: #32c5d2; }
  .c-btn-green.btn-no-focus:hover, .c-btn-green:hover, .c-btn-green.btn-no-focus:active, .c-btn-green:active, .c-btn-green.active,
  .open > .c-btn-green.dropdown-toggle {
    color: #ffffff;
    background: #27a8b4;
    border-color: #27a8b4; }
  .c-btn-green:active, .c-btn-green.active,
  .open > .c-btn-green.dropdown-toggle {
    background-image: none; }
  .c-btn-green.disabled, .c-btn-green.disabled:hover, .c-btn-green.disabled:not(.btn-no-focus):focus, .c-btn-green.disabled:not(.btn-no-focus).focus, .c-btn-green.disabled:active, .c-btn-green.disabled.active, .c-btn-green[disabled], .c-btn-green[disabled]:hover, .c-btn-green[disabled]:not(.btn-no-focus):focus, .c-btn-green[disabled]:not(.btn-no-focus).focus, .c-btn-green[disabled]:active, .c-btn-green[disabled].active,
  fieldset[disabled] .c-btn-green,
  fieldset[disabled] .c-btn-green:hover,
  fieldset[disabled] .c-btn-green:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-green:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-green:active,
  fieldset[disabled] .c-btn-green.active {
    background: #32c5d2;
    border-color: #32c5d2; }
  .c-btn-green .badge {
    color: #32c5d2;
    background: #ffffff; }

.c-btn-green-1 {
  border-color: #52c9ba;
  border-width: 1px;
  color: #ffffff;
  background: #52c9ba;
  border-color: #52c9ba; }
  .c-btn-green-1.btn-no-focus:focus, .c-btn-green-1.btn-no-focus.focus {
    color: #ffffff;
    background: #52c9ba;
    border-color: #52c9ba; }
  .c-btn-green-1.btn-no-focus:hover, .c-btn-green-1:hover, .c-btn-green-1.btn-no-focus:active, .c-btn-green-1:active, .c-btn-green-1.active,
  .open > .c-btn-green-1.dropdown-toggle {
    color: #ffffff;
    background: #3ab9a9;
    border-color: #3ab9a9; }
  .c-btn-green-1:active, .c-btn-green-1.active,
  .open > .c-btn-green-1.dropdown-toggle {
    background-image: none; }
  .c-btn-green-1.disabled, .c-btn-green-1.disabled:hover, .c-btn-green-1.disabled:not(.btn-no-focus):focus, .c-btn-green-1.disabled:not(.btn-no-focus).focus, .c-btn-green-1.disabled:active, .c-btn-green-1.disabled.active, .c-btn-green-1[disabled], .c-btn-green-1[disabled]:hover, .c-btn-green-1[disabled]:not(.btn-no-focus):focus, .c-btn-green-1[disabled]:not(.btn-no-focus).focus, .c-btn-green-1[disabled]:active, .c-btn-green-1[disabled].active,
  fieldset[disabled] .c-btn-green-1,
  fieldset[disabled] .c-btn-green-1:hover,
  fieldset[disabled] .c-btn-green-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-green-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-green-1:active,
  fieldset[disabled] .c-btn-green-1.active {
    background: #52c9ba;
    border-color: #52c9ba; }
  .c-btn-green-1 .badge {
    color: #52c9ba;
    background: #ffffff; }

.c-btn-green-2 {
  border-color: #5dc09c;
  border-width: 1px;
  color: #ffffff;
  background: #5dc09c;
  border-color: #5dc09c; }
  .c-btn-green-2.btn-no-focus:focus, .c-btn-green-2.btn-no-focus.focus {
    color: #ffffff;
    background: #5dc09c;
    border-color: #5dc09c; }
  .c-btn-green-2.btn-no-focus:hover, .c-btn-green-2:hover, .c-btn-green-2.btn-no-focus:active, .c-btn-green-2:active, .c-btn-green-2.active,
  .open > .c-btn-green-2.dropdown-toggle {
    color: #ffffff;
    background: #44b089;
    border-color: #44b089; }
  .c-btn-green-2:active, .c-btn-green-2.active,
  .open > .c-btn-green-2.dropdown-toggle {
    background-image: none; }
  .c-btn-green-2.disabled, .c-btn-green-2.disabled:hover, .c-btn-green-2.disabled:not(.btn-no-focus):focus, .c-btn-green-2.disabled:not(.btn-no-focus).focus, .c-btn-green-2.disabled:active, .c-btn-green-2.disabled.active, .c-btn-green-2[disabled], .c-btn-green-2[disabled]:hover, .c-btn-green-2[disabled]:not(.btn-no-focus):focus, .c-btn-green-2[disabled]:not(.btn-no-focus).focus, .c-btn-green-2[disabled]:active, .c-btn-green-2[disabled].active,
  fieldset[disabled] .c-btn-green-2,
  fieldset[disabled] .c-btn-green-2:hover,
  fieldset[disabled] .c-btn-green-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-green-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-green-2:active,
  fieldset[disabled] .c-btn-green-2.active {
    background: #5dc09c;
    border-color: #5dc09c; }
  .c-btn-green-2 .badge {
    color: #5dc09c;
    background: #ffffff; }

.c-btn-green-3 {
  border-color: #84c68f;
  border-width: 1px;
  color: #ffffff;
  background: #84c68f;
  border-color: #84c68f; }
  .c-btn-green-3.btn-no-focus:focus, .c-btn-green-3.btn-no-focus.focus {
    color: #ffffff;
    background: #84c68f;
    border-color: #84c68f; }
  .c-btn-green-3.btn-no-focus:hover, .c-btn-green-3:hover, .c-btn-green-3.btn-no-focus:active, .c-btn-green-3:active, .c-btn-green-3.active,
  .open > .c-btn-green-3.dropdown-toggle {
    color: #ffffff;
    background: #68b976;
    border-color: #68b976; }
  .c-btn-green-3:active, .c-btn-green-3.active,
  .open > .c-btn-green-3.dropdown-toggle {
    background-image: none; }
  .c-btn-green-3.disabled, .c-btn-green-3.disabled:hover, .c-btn-green-3.disabled:not(.btn-no-focus):focus, .c-btn-green-3.disabled:not(.btn-no-focus).focus, .c-btn-green-3.disabled:active, .c-btn-green-3.disabled.active, .c-btn-green-3[disabled], .c-btn-green-3[disabled]:hover, .c-btn-green-3[disabled]:not(.btn-no-focus):focus, .c-btn-green-3[disabled]:not(.btn-no-focus).focus, .c-btn-green-3[disabled]:active, .c-btn-green-3[disabled].active,
  fieldset[disabled] .c-btn-green-3,
  fieldset[disabled] .c-btn-green-3:hover,
  fieldset[disabled] .c-btn-green-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-green-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-green-3:active,
  fieldset[disabled] .c-btn-green-3.active {
    background: #84c68f;
    border-color: #84c68f; }
  .c-btn-green-3 .badge {
    color: #84c68f;
    background: #ffffff; }

.c-btn-green-4 {
  border-color: #3cb878;
  border-width: 1px;
  color: #ffffff;
  background: #3cb878;
  border-color: #3cb878; }
  .c-btn-green-4.btn-no-focus:focus, .c-btn-green-4.btn-no-focus.focus {
    color: #ffffff;
    background: #3cb878;
    border-color: #3cb878; }
  .c-btn-green-4.btn-no-focus:hover, .c-btn-green-4:hover, .c-btn-green-4.btn-no-focus:active, .c-btn-green-4:active, .c-btn-green-4.active,
  .open > .c-btn-green-4.dropdown-toggle {
    color: #ffffff;
    background: #329964;
    border-color: #329964; }
  .c-btn-green-4:active, .c-btn-green-4.active,
  .open > .c-btn-green-4.dropdown-toggle {
    background-image: none; }
  .c-btn-green-4.disabled, .c-btn-green-4.disabled:hover, .c-btn-green-4.disabled:not(.btn-no-focus):focus, .c-btn-green-4.disabled:not(.btn-no-focus).focus, .c-btn-green-4.disabled:active, .c-btn-green-4.disabled.active, .c-btn-green-4[disabled], .c-btn-green-4[disabled]:hover, .c-btn-green-4[disabled]:not(.btn-no-focus):focus, .c-btn-green-4[disabled]:not(.btn-no-focus).focus, .c-btn-green-4[disabled]:active, .c-btn-green-4[disabled].active,
  fieldset[disabled] .c-btn-green-4,
  fieldset[disabled] .c-btn-green-4:hover,
  fieldset[disabled] .c-btn-green-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-green-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-green-4:active,
  fieldset[disabled] .c-btn-green-4.active {
    background: #3cb878;
    border-color: #3cb878; }
  .c-btn-green-4 .badge {
    color: #3cb878;
    background: #ffffff; }

.c-btn-red {
  border-color: #eb5d68;
  border-width: 1px;
  color: #ffffff;
  background: #eb5d68;
  border-color: #eb5d68; }
  .c-btn-red.btn-no-focus:focus, .c-btn-red.btn-no-focus.focus {
    color: #ffffff;
    background: #eb5d68;
    border-color: #eb5d68; }
  .c-btn-red.btn-no-focus:hover, .c-btn-red:hover, .c-btn-red.btn-no-focus:active, .c-btn-red:active, .c-btn-red.active,
  .open > .c-btn-red.dropdown-toggle {
    color: #ffffff;
    background: #e73946;
    border-color: #e73946; }
  .c-btn-red:active, .c-btn-red.active,
  .open > .c-btn-red.dropdown-toggle {
    background-image: none; }
  .c-btn-red.disabled, .c-btn-red.disabled:hover, .c-btn-red.disabled:not(.btn-no-focus):focus, .c-btn-red.disabled:not(.btn-no-focus).focus, .c-btn-red.disabled:active, .c-btn-red.disabled.active, .c-btn-red[disabled], .c-btn-red[disabled]:hover, .c-btn-red[disabled]:not(.btn-no-focus):focus, .c-btn-red[disabled]:not(.btn-no-focus).focus, .c-btn-red[disabled]:active, .c-btn-red[disabled].active,
  fieldset[disabled] .c-btn-red,
  fieldset[disabled] .c-btn-red:hover,
  fieldset[disabled] .c-btn-red:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-red:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-red:active,
  fieldset[disabled] .c-btn-red.active {
    background: #eb5d68;
    border-color: #eb5d68; }
  .c-btn-red .badge {
    color: #eb5d68;
    background: #ffffff; }

.c-btn-red-1 {
  border-color: #cd6262;
  border-width: 1px;
  color: #ffffff;
  background: #cd6262;
  border-color: #cd6262; }
  .c-btn-red-1.btn-no-focus:focus, .c-btn-red-1.btn-no-focus.focus {
    color: #ffffff;
    background: #cd6262;
    border-color: #cd6262; }
  .c-btn-red-1.btn-no-focus:hover, .c-btn-red-1:hover, .c-btn-red-1.btn-no-focus:active, .c-btn-red-1:active, .c-btn-red-1.active,
  .open > .c-btn-red-1.dropdown-toggle {
    color: #ffffff;
    background: #c34343;
    border-color: #c34343; }
  .c-btn-red-1:active, .c-btn-red-1.active,
  .open > .c-btn-red-1.dropdown-toggle {
    background-image: none; }
  .c-btn-red-1.disabled, .c-btn-red-1.disabled:hover, .c-btn-red-1.disabled:not(.btn-no-focus):focus, .c-btn-red-1.disabled:not(.btn-no-focus).focus, .c-btn-red-1.disabled:active, .c-btn-red-1.disabled.active, .c-btn-red-1[disabled], .c-btn-red-1[disabled]:hover, .c-btn-red-1[disabled]:not(.btn-no-focus):focus, .c-btn-red-1[disabled]:not(.btn-no-focus).focus, .c-btn-red-1[disabled]:active, .c-btn-red-1[disabled].active,
  fieldset[disabled] .c-btn-red-1,
  fieldset[disabled] .c-btn-red-1:hover,
  fieldset[disabled] .c-btn-red-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-red-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-red-1:active,
  fieldset[disabled] .c-btn-red-1.active {
    background: #cd6262;
    border-color: #cd6262; }
  .c-btn-red-1 .badge {
    color: #cd6262;
    background: #ffffff; }

.c-btn-red-2 {
  border-color: #e7505a;
  border-width: 1px;
  color: #ffffff;
  background: #e7505a;
  border-color: #e7505a; }
  .c-btn-red-2.btn-no-focus:focus, .c-btn-red-2.btn-no-focus.focus {
    color: #ffffff;
    background: #e7505a;
    border-color: #e7505a; }
  .c-btn-red-2.btn-no-focus:hover, .c-btn-red-2:hover, .c-btn-red-2.btn-no-focus:active, .c-btn-red-2:active, .c-btn-red-2.active,
  .open > .c-btn-red-2.dropdown-toggle {
    color: #ffffff;
    background: #e22c38;
    border-color: #e22c38; }
  .c-btn-red-2:active, .c-btn-red-2.active,
  .open > .c-btn-red-2.dropdown-toggle {
    background-image: none; }
  .c-btn-red-2.disabled, .c-btn-red-2.disabled:hover, .c-btn-red-2.disabled:not(.btn-no-focus):focus, .c-btn-red-2.disabled:not(.btn-no-focus).focus, .c-btn-red-2.disabled:active, .c-btn-red-2.disabled.active, .c-btn-red-2[disabled], .c-btn-red-2[disabled]:hover, .c-btn-red-2[disabled]:not(.btn-no-focus):focus, .c-btn-red-2[disabled]:not(.btn-no-focus).focus, .c-btn-red-2[disabled]:active, .c-btn-red-2[disabled].active,
  fieldset[disabled] .c-btn-red-2,
  fieldset[disabled] .c-btn-red-2:hover,
  fieldset[disabled] .c-btn-red-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-red-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-red-2:active,
  fieldset[disabled] .c-btn-red-2.active {
    background: #e7505a;
    border-color: #e7505a; }
  .c-btn-red-2 .badge {
    color: #e7505a;
    background: #ffffff; }

.c-btn-red-3 {
  border-color: #d05163;
  border-width: 1px;
  color: #ffffff;
  background: #d05163;
  border-color: #d05163; }
  .c-btn-red-3.btn-no-focus:focus, .c-btn-red-3.btn-no-focus.focus {
    color: #ffffff;
    background: #d05163;
    border-color: #d05163; }
  .c-btn-red-3.btn-no-focus:hover, .c-btn-red-3:hover, .c-btn-red-3.btn-no-focus:active, .c-btn-red-3:active, .c-btn-red-3.active,
  .open > .c-btn-red-3.dropdown-toggle {
    color: #ffffff;
    background: #c33549;
    border-color: #c33549; }
  .c-btn-red-3:active, .c-btn-red-3.active,
  .open > .c-btn-red-3.dropdown-toggle {
    background-image: none; }
  .c-btn-red-3.disabled, .c-btn-red-3.disabled:hover, .c-btn-red-3.disabled:not(.btn-no-focus):focus, .c-btn-red-3.disabled:not(.btn-no-focus).focus, .c-btn-red-3.disabled:active, .c-btn-red-3.disabled.active, .c-btn-red-3[disabled], .c-btn-red-3[disabled]:hover, .c-btn-red-3[disabled]:not(.btn-no-focus):focus, .c-btn-red-3[disabled]:not(.btn-no-focus).focus, .c-btn-red-3[disabled]:active, .c-btn-red-3[disabled].active,
  fieldset[disabled] .c-btn-red-3,
  fieldset[disabled] .c-btn-red-3:hover,
  fieldset[disabled] .c-btn-red-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-red-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-red-3:active,
  fieldset[disabled] .c-btn-red-3.active {
    background: #d05163;
    border-color: #d05163; }
  .c-btn-red-3 .badge {
    color: #d05163;
    background: #ffffff; }

.c-btn-yellow {
  border-color: #FF6B57;
  border-width: 1px;
  color: #ffffff;
  background: #FF6B57;
  border-color: #FF6B57; }
  .c-btn-yellow.btn-no-focus:focus, .c-btn-yellow.btn-no-focus.focus {
    color: #ffffff;
    background: #FF6B57;
    border-color: #FF6B57; }
  .c-btn-yellow.btn-no-focus:hover, .c-btn-yellow:hover, .c-btn-yellow.btn-no-focus:active, .c-btn-yellow:active, .c-btn-yellow.active,
  .open > .c-btn-yellow.dropdown-toggle {
    color: #ffffff;
    background: #ff472e;
    border-color: #ff472e; }
  .c-btn-yellow:active, .c-btn-yellow.active,
  .open > .c-btn-yellow.dropdown-toggle {
    background-image: none; }
  .c-btn-yellow.disabled, .c-btn-yellow.disabled:hover, .c-btn-yellow.disabled:not(.btn-no-focus):focus, .c-btn-yellow.disabled:not(.btn-no-focus).focus, .c-btn-yellow.disabled:active, .c-btn-yellow.disabled.active, .c-btn-yellow[disabled], .c-btn-yellow[disabled]:hover, .c-btn-yellow[disabled]:not(.btn-no-focus):focus, .c-btn-yellow[disabled]:not(.btn-no-focus).focus, .c-btn-yellow[disabled]:active, .c-btn-yellow[disabled].active,
  fieldset[disabled] .c-btn-yellow,
  fieldset[disabled] .c-btn-yellow:hover,
  fieldset[disabled] .c-btn-yellow:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-yellow:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-yellow:active,
  fieldset[disabled] .c-btn-yellow.active {
    background: #FF6B57;
    border-color: #FF6B57; }
  .c-btn-yellow .badge {
    color: #FF6B57;
    background: #ffffff; }

.c-btn-yellow-1 {
  border-color: #c8d046;
  border-width: 1px;
  color: #ffffff;
  background: #c8d046;
  border-color: #c8d046; }
  .c-btn-yellow-1.btn-no-focus:focus, .c-btn-yellow-1.btn-no-focus.focus {
    color: #ffffff;
    background: #c8d046;
    border-color: #c8d046; }
  .c-btn-yellow-1.btn-no-focus:hover, .c-btn-yellow-1:hover, .c-btn-yellow-1.btn-no-focus:active, .c-btn-yellow-1:active, .c-btn-yellow-1.active,
  .open > .c-btn-yellow-1.dropdown-toggle {
    color: #ffffff;
    background: #b5bd30;
    border-color: #b5bd30; }
  .c-btn-yellow-1:active, .c-btn-yellow-1.active,
  .open > .c-btn-yellow-1.dropdown-toggle {
    background-image: none; }
  .c-btn-yellow-1.disabled, .c-btn-yellow-1.disabled:hover, .c-btn-yellow-1.disabled:not(.btn-no-focus):focus, .c-btn-yellow-1.disabled:not(.btn-no-focus).focus, .c-btn-yellow-1.disabled:active, .c-btn-yellow-1.disabled.active, .c-btn-yellow-1[disabled], .c-btn-yellow-1[disabled]:hover, .c-btn-yellow-1[disabled]:not(.btn-no-focus):focus, .c-btn-yellow-1[disabled]:not(.btn-no-focus).focus, .c-btn-yellow-1[disabled]:active, .c-btn-yellow-1[disabled].active,
  fieldset[disabled] .c-btn-yellow-1,
  fieldset[disabled] .c-btn-yellow-1:hover,
  fieldset[disabled] .c-btn-yellow-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-yellow-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-yellow-1:active,
  fieldset[disabled] .c-btn-yellow-1.active {
    background: #c8d046;
    border-color: #c8d046; }
  .c-btn-yellow-1 .badge {
    color: #c8d046;
    background: #ffffff; }

.c-btn-yellow-2 {
  border-color: #c5bf66;
  border-width: 1px;
  color: #ffffff;
  background: #c5bf66;
  border-color: #c5bf66; }
  .c-btn-yellow-2.btn-no-focus:focus, .c-btn-yellow-2.btn-no-focus.focus {
    color: #ffffff;
    background: #c5bf66;
    border-color: #c5bf66; }
  .c-btn-yellow-2.btn-no-focus:hover, .c-btn-yellow-2:hover, .c-btn-yellow-2.btn-no-focus:active, .c-btn-yellow-2:active, .c-btn-yellow-2.active,
  .open > .c-btn-yellow-2.dropdown-toggle {
    color: #ffffff;
    background: #bab348;
    border-color: #bab348; }
  .c-btn-yellow-2:active, .c-btn-yellow-2.active,
  .open > .c-btn-yellow-2.dropdown-toggle {
    background-image: none; }
  .c-btn-yellow-2.disabled, .c-btn-yellow-2.disabled:hover, .c-btn-yellow-2.disabled:not(.btn-no-focus):focus, .c-btn-yellow-2.disabled:not(.btn-no-focus).focus, .c-btn-yellow-2.disabled:active, .c-btn-yellow-2.disabled.active, .c-btn-yellow-2[disabled], .c-btn-yellow-2[disabled]:hover, .c-btn-yellow-2[disabled]:not(.btn-no-focus):focus, .c-btn-yellow-2[disabled]:not(.btn-no-focus).focus, .c-btn-yellow-2[disabled]:active, .c-btn-yellow-2[disabled].active,
  fieldset[disabled] .c-btn-yellow-2,
  fieldset[disabled] .c-btn-yellow-2:hover,
  fieldset[disabled] .c-btn-yellow-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-yellow-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-yellow-2:active,
  fieldset[disabled] .c-btn-yellow-2.active {
    background: #c5bf66;
    border-color: #c5bf66; }
  .c-btn-yellow-2 .badge {
    color: #c5bf66;
    background: #ffffff; }

.c-btn-yellow-3 {
  border-color: #c5b96b;
  border-width: 1px;
  color: #ffffff;
  background: #c5b96b;
  border-color: #c5b96b; }
  .c-btn-yellow-3.btn-no-focus:focus, .c-btn-yellow-3.btn-no-focus.focus {
    color: #ffffff;
    background: #c5b96b;
    border-color: #c5b96b; }
  .c-btn-yellow-3.btn-no-focus:hover, .c-btn-yellow-3:hover, .c-btn-yellow-3.btn-no-focus:active, .c-btn-yellow-3:active, .c-btn-yellow-3.active,
  .open > .c-btn-yellow-3.dropdown-toggle {
    color: #ffffff;
    background: #baab4e;
    border-color: #baab4e; }
  .c-btn-yellow-3:active, .c-btn-yellow-3.active,
  .open > .c-btn-yellow-3.dropdown-toggle {
    background-image: none; }
  .c-btn-yellow-3.disabled, .c-btn-yellow-3.disabled:hover, .c-btn-yellow-3.disabled:not(.btn-no-focus):focus, .c-btn-yellow-3.disabled:not(.btn-no-focus).focus, .c-btn-yellow-3.disabled:active, .c-btn-yellow-3.disabled.active, .c-btn-yellow-3[disabled], .c-btn-yellow-3[disabled]:hover, .c-btn-yellow-3[disabled]:not(.btn-no-focus):focus, .c-btn-yellow-3[disabled]:not(.btn-no-focus).focus, .c-btn-yellow-3[disabled]:active, .c-btn-yellow-3[disabled].active,
  fieldset[disabled] .c-btn-yellow-3,
  fieldset[disabled] .c-btn-yellow-3:hover,
  fieldset[disabled] .c-btn-yellow-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-yellow-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-yellow-3:active,
  fieldset[disabled] .c-btn-yellow-3.active {
    background: #c5b96b;
    border-color: #c5b96b; }
  .c-btn-yellow-3 .badge {
    color: #c5b96b;
    background: #ffffff; }

.c-btn-yellow-4 {
  border-color: #fff200;
  border-width: 1px;
  color: #ffffff;
  background: #fff200;
  border-color: #fff200; }
  .c-btn-yellow-4.btn-no-focus:focus, .c-btn-yellow-4.btn-no-focus.focus {
    color: #ffffff;
    background: #fff200;
    border-color: #fff200; }
  .c-btn-yellow-4.btn-no-focus:hover, .c-btn-yellow-4:hover, .c-btn-yellow-4.btn-no-focus:active, .c-btn-yellow-4:active, .c-btn-yellow-4.active,
  .open > .c-btn-yellow-4.dropdown-toggle {
    color: #ffffff;
    background: #d6cb00;
    border-color: #d6cb00; }
  .c-btn-yellow-4:active, .c-btn-yellow-4.active,
  .open > .c-btn-yellow-4.dropdown-toggle {
    background-image: none; }
  .c-btn-yellow-4.disabled, .c-btn-yellow-4.disabled:hover, .c-btn-yellow-4.disabled:not(.btn-no-focus):focus, .c-btn-yellow-4.disabled:not(.btn-no-focus).focus, .c-btn-yellow-4.disabled:active, .c-btn-yellow-4.disabled.active, .c-btn-yellow-4[disabled], .c-btn-yellow-4[disabled]:hover, .c-btn-yellow-4[disabled]:not(.btn-no-focus):focus, .c-btn-yellow-4[disabled]:not(.btn-no-focus).focus, .c-btn-yellow-4[disabled]:active, .c-btn-yellow-4[disabled].active,
  fieldset[disabled] .c-btn-yellow-4,
  fieldset[disabled] .c-btn-yellow-4:hover,
  fieldset[disabled] .c-btn-yellow-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-yellow-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-yellow-4:active,
  fieldset[disabled] .c-btn-yellow-4.active {
    background: #fff200;
    border-color: #fff200; }
  .c-btn-yellow-4 .badge {
    color: #fff200;
    background: #ffffff; }

.c-btn-blue {
  border-color: #3498DB;
  border-width: 1px;
  color: #ffffff;
  background: #3498DB;
  border-color: #3498DB; }
  .c-btn-blue.btn-no-focus:focus, .c-btn-blue.btn-no-focus.focus {
    color: #ffffff;
    background: #3498DB;
    border-color: #3498DB; }
  .c-btn-blue.btn-no-focus:hover, .c-btn-blue:hover, .c-btn-blue.btn-no-focus:active, .c-btn-blue:active, .c-btn-blue.active,
  .open > .c-btn-blue.dropdown-toggle {
    color: #ffffff;
    background: #2383c4;
    border-color: #2383c4; }
  .c-btn-blue:active, .c-btn-blue.active,
  .open > .c-btn-blue.dropdown-toggle {
    background-image: none; }
  .c-btn-blue.disabled, .c-btn-blue.disabled:hover, .c-btn-blue.disabled:not(.btn-no-focus):focus, .c-btn-blue.disabled:not(.btn-no-focus).focus, .c-btn-blue.disabled:active, .c-btn-blue.disabled.active, .c-btn-blue[disabled], .c-btn-blue[disabled]:hover, .c-btn-blue[disabled]:not(.btn-no-focus):focus, .c-btn-blue[disabled]:not(.btn-no-focus).focus, .c-btn-blue[disabled]:active, .c-btn-blue[disabled].active,
  fieldset[disabled] .c-btn-blue,
  fieldset[disabled] .c-btn-blue:hover,
  fieldset[disabled] .c-btn-blue:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-blue:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-blue:active,
  fieldset[disabled] .c-btn-blue.active {
    background: #3498DB;
    border-color: #3498DB; }
  .c-btn-blue .badge {
    color: #3498DB;
    background: #ffffff; }

.c-btn-blue-1 {
  border-color: #5e9cd1;
  border-width: 1px;
  color: #ffffff;
  background: #5e9cd1;
  border-color: #5e9cd1; }
  .c-btn-blue-1.btn-no-focus:focus, .c-btn-blue-1.btn-no-focus.focus {
    color: #ffffff;
    background: #5e9cd1;
    border-color: #5e9cd1; }
  .c-btn-blue-1.btn-no-focus:hover, .c-btn-blue-1:hover, .c-btn-blue-1.btn-no-focus:active, .c-btn-blue-1:active, .c-btn-blue-1.active,
  .open > .c-btn-blue-1.dropdown-toggle {
    color: #ffffff;
    background: #3e88c8;
    border-color: #3e88c8; }
  .c-btn-blue-1:active, .c-btn-blue-1.active,
  .open > .c-btn-blue-1.dropdown-toggle {
    background-image: none; }
  .c-btn-blue-1.disabled, .c-btn-blue-1.disabled:hover, .c-btn-blue-1.disabled:not(.btn-no-focus):focus, .c-btn-blue-1.disabled:not(.btn-no-focus).focus, .c-btn-blue-1.disabled:active, .c-btn-blue-1.disabled.active, .c-btn-blue-1[disabled], .c-btn-blue-1[disabled]:hover, .c-btn-blue-1[disabled]:not(.btn-no-focus):focus, .c-btn-blue-1[disabled]:not(.btn-no-focus).focus, .c-btn-blue-1[disabled]:active, .c-btn-blue-1[disabled].active,
  fieldset[disabled] .c-btn-blue-1,
  fieldset[disabled] .c-btn-blue-1:hover,
  fieldset[disabled] .c-btn-blue-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-blue-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-blue-1:active,
  fieldset[disabled] .c-btn-blue-1.active {
    background: #5e9cd1;
    border-color: #5e9cd1; }
  .c-btn-blue-1 .badge {
    color: #5e9cd1;
    background: #ffffff; }

.c-btn-blue-2 {
  border-color: #5893dd;
  border-width: 1px;
  color: #ffffff;
  background: #5893dd;
  border-color: #5893dd; }
  .c-btn-blue-2.btn-no-focus:focus, .c-btn-blue-2.btn-no-focus.focus {
    color: #ffffff;
    background: #5893dd;
    border-color: #5893dd; }
  .c-btn-blue-2.btn-no-focus:hover, .c-btn-blue-2:hover, .c-btn-blue-2.btn-no-focus:active, .c-btn-blue-2:active, .c-btn-blue-2.active,
  .open > .c-btn-blue-2.dropdown-toggle {
    color: #ffffff;
    background: #367dd6;
    border-color: #367dd6; }
  .c-btn-blue-2:active, .c-btn-blue-2.active,
  .open > .c-btn-blue-2.dropdown-toggle {
    background-image: none; }
  .c-btn-blue-2.disabled, .c-btn-blue-2.disabled:hover, .c-btn-blue-2.disabled:not(.btn-no-focus):focus, .c-btn-blue-2.disabled:not(.btn-no-focus).focus, .c-btn-blue-2.disabled:active, .c-btn-blue-2.disabled.active, .c-btn-blue-2[disabled], .c-btn-blue-2[disabled]:hover, .c-btn-blue-2[disabled]:not(.btn-no-focus):focus, .c-btn-blue-2[disabled]:not(.btn-no-focus).focus, .c-btn-blue-2[disabled]:active, .c-btn-blue-2[disabled].active,
  fieldset[disabled] .c-btn-blue-2,
  fieldset[disabled] .c-btn-blue-2:hover,
  fieldset[disabled] .c-btn-blue-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-blue-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-blue-2:active,
  fieldset[disabled] .c-btn-blue-2.active {
    background: #5893dd;
    border-color: #5893dd; }
  .c-btn-blue-2 .badge {
    color: #5893dd;
    background: #ffffff; }

.c-btn-blue-3 {
  border-color: #57bfe1;
  border-width: 1px;
  color: #ffffff;
  background: #57bfe1;
  border-color: #57bfe1; }
  .c-btn-blue-3.btn-no-focus:focus, .c-btn-blue-3.btn-no-focus.focus {
    color: #ffffff;
    background: #57bfe1;
    border-color: #57bfe1; }
  .c-btn-blue-3.btn-no-focus:hover, .c-btn-blue-3:hover, .c-btn-blue-3.btn-no-focus:active, .c-btn-blue-3:active, .c-btn-blue-3.active,
  .open > .c-btn-blue-3.dropdown-toggle {
    color: #ffffff;
    background: #34b2db;
    border-color: #34b2db; }
  .c-btn-blue-3:active, .c-btn-blue-3.active,
  .open > .c-btn-blue-3.dropdown-toggle {
    background-image: none; }
  .c-btn-blue-3.disabled, .c-btn-blue-3.disabled:hover, .c-btn-blue-3.disabled:not(.btn-no-focus):focus, .c-btn-blue-3.disabled:not(.btn-no-focus).focus, .c-btn-blue-3.disabled:active, .c-btn-blue-3.disabled.active, .c-btn-blue-3[disabled], .c-btn-blue-3[disabled]:hover, .c-btn-blue-3[disabled]:not(.btn-no-focus):focus, .c-btn-blue-3[disabled]:not(.btn-no-focus).focus, .c-btn-blue-3[disabled]:active, .c-btn-blue-3[disabled].active,
  fieldset[disabled] .c-btn-blue-3,
  fieldset[disabled] .c-btn-blue-3:hover,
  fieldset[disabled] .c-btn-blue-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-blue-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-blue-3:active,
  fieldset[disabled] .c-btn-blue-3.active {
    background: #57bfe1;
    border-color: #57bfe1; }
  .c-btn-blue-3 .badge {
    color: #57bfe1;
    background: #ffffff; }

.c-btn-blue-4 {
  border-color: #428de4;
  border-width: 1px;
  color: #ffffff;
  background: #428de4;
  border-color: #428de4; }
  .c-btn-blue-4.btn-no-focus:focus, .c-btn-blue-4.btn-no-focus.focus {
    color: #ffffff;
    background: #428de4;
    border-color: #428de4; }
  .c-btn-blue-4.btn-no-focus:hover, .c-btn-blue-4:hover, .c-btn-blue-4.btn-no-focus:active, .c-btn-blue-4:active, .c-btn-blue-4.active,
  .open > .c-btn-blue-4.dropdown-toggle {
    color: #ffffff;
    background: #2078de;
    border-color: #2078de; }
  .c-btn-blue-4:active, .c-btn-blue-4.active,
  .open > .c-btn-blue-4.dropdown-toggle {
    background-image: none; }
  .c-btn-blue-4.disabled, .c-btn-blue-4.disabled:hover, .c-btn-blue-4.disabled:not(.btn-no-focus):focus, .c-btn-blue-4.disabled:not(.btn-no-focus).focus, .c-btn-blue-4.disabled:active, .c-btn-blue-4.disabled.active, .c-btn-blue-4[disabled], .c-btn-blue-4[disabled]:hover, .c-btn-blue-4[disabled]:not(.btn-no-focus):focus, .c-btn-blue-4[disabled]:not(.btn-no-focus).focus, .c-btn-blue-4[disabled]:active, .c-btn-blue-4[disabled].active,
  fieldset[disabled] .c-btn-blue-4,
  fieldset[disabled] .c-btn-blue-4:hover,
  fieldset[disabled] .c-btn-blue-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-blue-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-blue-4:active,
  fieldset[disabled] .c-btn-blue-4.active {
    background: #428de4;
    border-color: #428de4; }
  .c-btn-blue-4 .badge {
    color: #428de4;
    background: #ffffff; }

.c-btn-purple {
  border-color: #b771b0;
  border-width: 1px;
  color: #ffffff;
  background: #b771b0;
  border-color: #b771b0; }
  .c-btn-purple.btn-no-focus:focus, .c-btn-purple.btn-no-focus.focus {
    color: #ffffff;
    background: #b771b0;
    border-color: #b771b0; }
  .c-btn-purple.btn-no-focus:hover, .c-btn-purple:hover, .c-btn-purple.btn-no-focus:active, .c-btn-purple:active, .c-btn-purple.active,
  .open > .c-btn-purple.dropdown-toggle {
    color: #ffffff;
    background: #a956a1;
    border-color: #a956a1; }
  .c-btn-purple:active, .c-btn-purple.active,
  .open > .c-btn-purple.dropdown-toggle {
    background-image: none; }
  .c-btn-purple.disabled, .c-btn-purple.disabled:hover, .c-btn-purple.disabled:not(.btn-no-focus):focus, .c-btn-purple.disabled:not(.btn-no-focus).focus, .c-btn-purple.disabled:active, .c-btn-purple.disabled.active, .c-btn-purple[disabled], .c-btn-purple[disabled]:hover, .c-btn-purple[disabled]:not(.btn-no-focus):focus, .c-btn-purple[disabled]:not(.btn-no-focus).focus, .c-btn-purple[disabled]:active, .c-btn-purple[disabled].active,
  fieldset[disabled] .c-btn-purple,
  fieldset[disabled] .c-btn-purple:hover,
  fieldset[disabled] .c-btn-purple:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-purple:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-purple:active,
  fieldset[disabled] .c-btn-purple.active {
    background: #b771b0;
    border-color: #b771b0; }
  .c-btn-purple .badge {
    color: #b771b0;
    background: #ffffff; }

.c-btn-purple-1 {
  border-color: #a962bb;
  border-width: 1px;
  color: #ffffff;
  background: #a962bb;
  border-color: #a962bb; }
  .c-btn-purple-1.btn-no-focus:focus, .c-btn-purple-1.btn-no-focus.focus {
    color: #ffffff;
    background: #a962bb;
    border-color: #a962bb; }
  .c-btn-purple-1.btn-no-focus:hover, .c-btn-purple-1:hover, .c-btn-purple-1.btn-no-focus:active, .c-btn-purple-1:active, .c-btn-purple-1.active,
  .open > .c-btn-purple-1.dropdown-toggle {
    color: #ffffff;
    background: #974aaa;
    border-color: #974aaa; }
  .c-btn-purple-1:active, .c-btn-purple-1.active,
  .open > .c-btn-purple-1.dropdown-toggle {
    background-image: none; }
  .c-btn-purple-1.disabled, .c-btn-purple-1.disabled:hover, .c-btn-purple-1.disabled:not(.btn-no-focus):focus, .c-btn-purple-1.disabled:not(.btn-no-focus).focus, .c-btn-purple-1.disabled:active, .c-btn-purple-1.disabled.active, .c-btn-purple-1[disabled], .c-btn-purple-1[disabled]:hover, .c-btn-purple-1[disabled]:not(.btn-no-focus):focus, .c-btn-purple-1[disabled]:not(.btn-no-focus).focus, .c-btn-purple-1[disabled]:active, .c-btn-purple-1[disabled].active,
  fieldset[disabled] .c-btn-purple-1,
  fieldset[disabled] .c-btn-purple-1:hover,
  fieldset[disabled] .c-btn-purple-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-purple-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-purple-1:active,
  fieldset[disabled] .c-btn-purple-1.active {
    background: #a962bb;
    border-color: #a962bb; }
  .c-btn-purple-1 .badge {
    color: #a962bb;
    background: #ffffff; }

.c-btn-purple-2 {
  border-color: #aa67a3;
  border-width: 1px;
  color: #ffffff;
  background: #aa67a3;
  border-color: #aa67a3; }
  .c-btn-purple-2.btn-no-focus:focus, .c-btn-purple-2.btn-no-focus.focus {
    color: #ffffff;
    background: #aa67a3;
    border-color: #aa67a3; }
  .c-btn-purple-2.btn-no-focus:hover, .c-btn-purple-2:hover, .c-btn-purple-2.btn-no-focus:active, .c-btn-purple-2:active, .c-btn-purple-2.active,
  .open > .c-btn-purple-2.dropdown-toggle {
    color: #ffffff;
    background: #95538e;
    border-color: #95538e; }
  .c-btn-purple-2:active, .c-btn-purple-2.active,
  .open > .c-btn-purple-2.dropdown-toggle {
    background-image: none; }
  .c-btn-purple-2.disabled, .c-btn-purple-2.disabled:hover, .c-btn-purple-2.disabled:not(.btn-no-focus):focus, .c-btn-purple-2.disabled:not(.btn-no-focus).focus, .c-btn-purple-2.disabled:active, .c-btn-purple-2.disabled.active, .c-btn-purple-2[disabled], .c-btn-purple-2[disabled]:hover, .c-btn-purple-2[disabled]:not(.btn-no-focus):focus, .c-btn-purple-2[disabled]:not(.btn-no-focus).focus, .c-btn-purple-2[disabled]:active, .c-btn-purple-2[disabled].active,
  fieldset[disabled] .c-btn-purple-2,
  fieldset[disabled] .c-btn-purple-2:hover,
  fieldset[disabled] .c-btn-purple-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-purple-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-purple-2:active,
  fieldset[disabled] .c-btn-purple-2.active {
    background: #aa67a3;
    border-color: #aa67a3; }
  .c-btn-purple-2 .badge {
    color: #aa67a3;
    background: #ffffff; }

.c-btn-purple-3 {
  border-color: #ac3773;
  border-width: 1px;
  color: #ffffff;
  background: #ac3773;
  border-color: #ac3773; }
  .c-btn-purple-3.btn-no-focus:focus, .c-btn-purple-3.btn-no-focus.focus {
    color: #ffffff;
    background: #ac3773;
    border-color: #ac3773; }
  .c-btn-purple-3.btn-no-focus:hover, .c-btn-purple-3:hover, .c-btn-purple-3.btn-no-focus:active, .c-btn-purple-3:active, .c-btn-purple-3.active,
  .open > .c-btn-purple-3.dropdown-toggle {
    color: #ffffff;
    background: #8d2d5e;
    border-color: #8d2d5e; }
  .c-btn-purple-3:active, .c-btn-purple-3.active,
  .open > .c-btn-purple-3.dropdown-toggle {
    background-image: none; }
  .c-btn-purple-3.disabled, .c-btn-purple-3.disabled:hover, .c-btn-purple-3.disabled:not(.btn-no-focus):focus, .c-btn-purple-3.disabled:not(.btn-no-focus).focus, .c-btn-purple-3.disabled:active, .c-btn-purple-3.disabled.active, .c-btn-purple-3[disabled], .c-btn-purple-3[disabled]:hover, .c-btn-purple-3[disabled]:not(.btn-no-focus):focus, .c-btn-purple-3[disabled]:not(.btn-no-focus).focus, .c-btn-purple-3[disabled]:active, .c-btn-purple-3[disabled].active,
  fieldset[disabled] .c-btn-purple-3,
  fieldset[disabled] .c-btn-purple-3:hover,
  fieldset[disabled] .c-btn-purple-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-purple-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-purple-3:active,
  fieldset[disabled] .c-btn-purple-3.active {
    background: #ac3773;
    border-color: #ac3773; }
  .c-btn-purple-3 .badge {
    color: #ac3773;
    background: #ffffff; }

.c-btn-brown {
  border-color: #8a7f68;
  border-width: 1px;
  color: #ffffff;
  background: #8a7f68;
  border-color: #8a7f68; }
  .c-btn-brown.btn-no-focus:focus, .c-btn-brown.btn-no-focus.focus {
    color: #ffffff;
    background: #8a7f68;
    border-color: #8a7f68; }
  .c-btn-brown.btn-no-focus:hover, .c-btn-brown:hover, .c-btn-brown.btn-no-focus:active, .c-btn-brown:active, .c-btn-brown.active,
  .open > .c-btn-brown.dropdown-toggle {
    color: #ffffff;
    background: #736a56;
    border-color: #736a56; }
  .c-btn-brown:active, .c-btn-brown.active,
  .open > .c-btn-brown.dropdown-toggle {
    background-image: none; }
  .c-btn-brown.disabled, .c-btn-brown.disabled:hover, .c-btn-brown.disabled:not(.btn-no-focus):focus, .c-btn-brown.disabled:not(.btn-no-focus).focus, .c-btn-brown.disabled:active, .c-btn-brown.disabled.active, .c-btn-brown[disabled], .c-btn-brown[disabled]:hover, .c-btn-brown[disabled]:not(.btn-no-focus):focus, .c-btn-brown[disabled]:not(.btn-no-focus).focus, .c-btn-brown[disabled]:active, .c-btn-brown[disabled].active,
  fieldset[disabled] .c-btn-brown,
  fieldset[disabled] .c-btn-brown:hover,
  fieldset[disabled] .c-btn-brown:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-brown:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-brown:active,
  fieldset[disabled] .c-btn-brown.active {
    background: #8a7f68;
    border-color: #8a7f68; }
  .c-btn-brown .badge {
    color: #8a7f68;
    background: #ffffff; }

.c-btn-brown-1 {
  border-color: #685e47;
  border-width: 1px;
  color: #ffffff;
  background: #685e47;
  border-color: #685e47; }
  .c-btn-brown-1.btn-no-focus:focus, .c-btn-brown-1.btn-no-focus.focus {
    color: #ffffff;
    background: #685e47;
    border-color: #685e47; }
  .c-btn-brown-1.btn-no-focus:hover, .c-btn-brown-1:hover, .c-btn-brown-1.btn-no-focus:active, .c-btn-brown-1:active, .c-btn-brown-1.active,
  .open > .c-btn-brown-1.dropdown-toggle {
    color: #ffffff;
    background: #504836;
    border-color: #504836; }
  .c-btn-brown-1:active, .c-btn-brown-1.active,
  .open > .c-btn-brown-1.dropdown-toggle {
    background-image: none; }
  .c-btn-brown-1.disabled, .c-btn-brown-1.disabled:hover, .c-btn-brown-1.disabled:not(.btn-no-focus):focus, .c-btn-brown-1.disabled:not(.btn-no-focus).focus, .c-btn-brown-1.disabled:active, .c-btn-brown-1.disabled.active, .c-btn-brown-1[disabled], .c-btn-brown-1[disabled]:hover, .c-btn-brown-1[disabled]:not(.btn-no-focus):focus, .c-btn-brown-1[disabled]:not(.btn-no-focus).focus, .c-btn-brown-1[disabled]:active, .c-btn-brown-1[disabled].active,
  fieldset[disabled] .c-btn-brown-1,
  fieldset[disabled] .c-btn-brown-1:hover,
  fieldset[disabled] .c-btn-brown-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-brown-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-brown-1:active,
  fieldset[disabled] .c-btn-brown-1.active {
    background: #685e47;
    border-color: #685e47; }
  .c-btn-brown-1 .badge {
    color: #685e47;
    background: #ffffff; }

.c-btn-brown-2 {
  border-color: #7a6a61;
  border-width: 1px;
  color: #ffffff;
  background: #7a6a61;
  border-color: #7a6a61; }
  .c-btn-brown-2.btn-no-focus:focus, .c-btn-brown-2.btn-no-focus.focus {
    color: #ffffff;
    background: #7a6a61;
    border-color: #7a6a61; }
  .c-btn-brown-2.btn-no-focus:hover, .c-btn-brown-2:hover, .c-btn-brown-2.btn-no-focus:active, .c-btn-brown-2:active, .c-btn-brown-2.active,
  .open > .c-btn-brown-2.dropdown-toggle {
    color: #ffffff;
    background: #63564f;
    border-color: #63564f; }
  .c-btn-brown-2:active, .c-btn-brown-2.active,
  .open > .c-btn-brown-2.dropdown-toggle {
    background-image: none; }
  .c-btn-brown-2.disabled, .c-btn-brown-2.disabled:hover, .c-btn-brown-2.disabled:not(.btn-no-focus):focus, .c-btn-brown-2.disabled:not(.btn-no-focus).focus, .c-btn-brown-2.disabled:active, .c-btn-brown-2.disabled.active, .c-btn-brown-2[disabled], .c-btn-brown-2[disabled]:hover, .c-btn-brown-2[disabled]:not(.btn-no-focus):focus, .c-btn-brown-2[disabled]:not(.btn-no-focus).focus, .c-btn-brown-2[disabled]:active, .c-btn-brown-2[disabled].active,
  fieldset[disabled] .c-btn-brown-2,
  fieldset[disabled] .c-btn-brown-2:hover,
  fieldset[disabled] .c-btn-brown-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-brown-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-brown-2:active,
  fieldset[disabled] .c-btn-brown-2.active {
    background: #7a6a61;
    border-color: #7a6a61; }
  .c-btn-brown-2 .badge {
    color: #7a6a61;
    background: #ffffff; }

.c-btn-brown-3 {
  border-color: #9d8b81;
  border-width: 1px;
  color: #ffffff;
  background: #9d8b81;
  border-color: #9d8b81; }
  .c-btn-brown-3.btn-no-focus:focus, .c-btn-brown-3.btn-no-focus.focus {
    color: #ffffff;
    background: #9d8b81;
    border-color: #9d8b81; }
  .c-btn-brown-3.btn-no-focus:hover, .c-btn-brown-3:hover, .c-btn-brown-3.btn-no-focus:active, .c-btn-brown-3:active, .c-btn-brown-3.active,
  .open > .c-btn-brown-3.dropdown-toggle {
    color: #ffffff;
    background: #8a766b;
    border-color: #8a766b; }
  .c-btn-brown-3:active, .c-btn-brown-3.active,
  .open > .c-btn-brown-3.dropdown-toggle {
    background-image: none; }
  .c-btn-brown-3.disabled, .c-btn-brown-3.disabled:hover, .c-btn-brown-3.disabled:not(.btn-no-focus):focus, .c-btn-brown-3.disabled:not(.btn-no-focus).focus, .c-btn-brown-3.disabled:active, .c-btn-brown-3.disabled.active, .c-btn-brown-3[disabled], .c-btn-brown-3[disabled]:hover, .c-btn-brown-3[disabled]:not(.btn-no-focus):focus, .c-btn-brown-3[disabled]:not(.btn-no-focus).focus, .c-btn-brown-3[disabled]:active, .c-btn-brown-3[disabled].active,
  fieldset[disabled] .c-btn-brown-3,
  fieldset[disabled] .c-btn-brown-3:hover,
  fieldset[disabled] .c-btn-brown-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-brown-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-brown-3:active,
  fieldset[disabled] .c-btn-brown-3.active {
    background: #9d8b81;
    border-color: #9d8b81; }
  .c-btn-brown-3 .badge {
    color: #9d8b81;
    background: #ffffff; }

.c-btn-dark {
  border-color: #2f353b;
  border-width: 1px;
  color: #ffffff;
  background: #2f353b;
  border-color: #2f353b; }
  .c-btn-dark.btn-no-focus:focus, .c-btn-dark.btn-no-focus.focus {
    color: #ffffff;
    background: #2f353b;
    border-color: #2f353b; }
  .c-btn-dark.btn-no-focus:hover, .c-btn-dark:hover, .c-btn-dark.btn-no-focus:active, .c-btn-dark:active, .c-btn-dark.active,
  .open > .c-btn-dark.dropdown-toggle {
    color: #ffffff;
    background: #1d2124;
    border-color: #1d2124; }
  .c-btn-dark:active, .c-btn-dark.active,
  .open > .c-btn-dark.dropdown-toggle {
    background-image: none; }
  .c-btn-dark.disabled, .c-btn-dark.disabled:hover, .c-btn-dark.disabled:not(.btn-no-focus):focus, .c-btn-dark.disabled:not(.btn-no-focus).focus, .c-btn-dark.disabled:active, .c-btn-dark.disabled.active, .c-btn-dark[disabled], .c-btn-dark[disabled]:hover, .c-btn-dark[disabled]:not(.btn-no-focus):focus, .c-btn-dark[disabled]:not(.btn-no-focus).focus, .c-btn-dark[disabled]:active, .c-btn-dark[disabled].active,
  fieldset[disabled] .c-btn-dark,
  fieldset[disabled] .c-btn-dark:hover,
  fieldset[disabled] .c-btn-dark:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-dark:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-dark:active,
  fieldset[disabled] .c-btn-dark.active {
    background: #2f353b;
    border-color: #2f353b; }
  .c-btn-dark .badge {
    color: #2f353b;
    background: #ffffff; }

.c-btn-dark-1 {
  border-color: #525e64;
  border-width: 1px;
  color: #ffffff;
  background: #525e64;
  border-color: #525e64; }
  .c-btn-dark-1.btn-no-focus:focus, .c-btn-dark-1.btn-no-focus.focus {
    color: #ffffff;
    background: #525e64;
    border-color: #525e64; }
  .c-btn-dark-1.btn-no-focus:hover, .c-btn-dark-1:hover, .c-btn-dark-1.btn-no-focus:active, .c-btn-dark-1:active, .c-btn-dark-1.active,
  .open > .c-btn-dark-1.dropdown-toggle {
    color: #ffffff;
    background: #40494e;
    border-color: #40494e; }
  .c-btn-dark-1:active, .c-btn-dark-1.active,
  .open > .c-btn-dark-1.dropdown-toggle {
    background-image: none; }
  .c-btn-dark-1.disabled, .c-btn-dark-1.disabled:hover, .c-btn-dark-1.disabled:not(.btn-no-focus):focus, .c-btn-dark-1.disabled:not(.btn-no-focus).focus, .c-btn-dark-1.disabled:active, .c-btn-dark-1.disabled.active, .c-btn-dark-1[disabled], .c-btn-dark-1[disabled]:hover, .c-btn-dark-1[disabled]:not(.btn-no-focus):focus, .c-btn-dark-1[disabled]:not(.btn-no-focus).focus, .c-btn-dark-1[disabled]:active, .c-btn-dark-1[disabled].active,
  fieldset[disabled] .c-btn-dark-1,
  fieldset[disabled] .c-btn-dark-1:hover,
  fieldset[disabled] .c-btn-dark-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-dark-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-dark-1:active,
  fieldset[disabled] .c-btn-dark-1.active {
    background: #525e64;
    border-color: #525e64; }
  .c-btn-dark-1 .badge {
    color: #525e64;
    background: #ffffff; }

.c-btn-dark-2 {
  border-color: #31383c;
  border-width: 1px;
  color: #ffffff;
  background: #31383c;
  border-color: #31383c; }
  .c-btn-dark-2.btn-no-focus:focus, .c-btn-dark-2.btn-no-focus.focus {
    color: #ffffff;
    background: #31383c;
    border-color: #31383c; }
  .c-btn-dark-2.btn-no-focus:hover, .c-btn-dark-2:hover, .c-btn-dark-2.btn-no-focus:active, .c-btn-dark-2:active, .c-btn-dark-2.active,
  .open > .c-btn-dark-2.dropdown-toggle {
    color: #ffffff;
    background: #1f2326;
    border-color: #1f2326; }
  .c-btn-dark-2:active, .c-btn-dark-2.active,
  .open > .c-btn-dark-2.dropdown-toggle {
    background-image: none; }
  .c-btn-dark-2.disabled, .c-btn-dark-2.disabled:hover, .c-btn-dark-2.disabled:not(.btn-no-focus):focus, .c-btn-dark-2.disabled:not(.btn-no-focus).focus, .c-btn-dark-2.disabled:active, .c-btn-dark-2.disabled.active, .c-btn-dark-2[disabled], .c-btn-dark-2[disabled]:hover, .c-btn-dark-2[disabled]:not(.btn-no-focus):focus, .c-btn-dark-2[disabled]:not(.btn-no-focus).focus, .c-btn-dark-2[disabled]:active, .c-btn-dark-2[disabled].active,
  fieldset[disabled] .c-btn-dark-2,
  fieldset[disabled] .c-btn-dark-2:hover,
  fieldset[disabled] .c-btn-dark-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-dark-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-dark-2:active,
  fieldset[disabled] .c-btn-dark-2.active {
    background: #31383c;
    border-color: #31383c; }
  .c-btn-dark-2 .badge {
    color: #31383c;
    background: #ffffff; }

.c-btn-dark-3 {
  border-color: #41515b;
  border-width: 1px;
  color: #ffffff;
  background: #41515b;
  border-color: #41515b; }
  .c-btn-dark-3.btn-no-focus:focus, .c-btn-dark-3.btn-no-focus.focus {
    color: #ffffff;
    background: #41515b;
    border-color: #41515b; }
  .c-btn-dark-3.btn-no-focus:hover, .c-btn-dark-3:hover, .c-btn-dark-3.btn-no-focus:active, .c-btn-dark-3:active, .c-btn-dark-3.active,
  .open > .c-btn-dark-3.dropdown-toggle {
    color: #ffffff;
    background: #303c43;
    border-color: #303c43; }
  .c-btn-dark-3:active, .c-btn-dark-3.active,
  .open > .c-btn-dark-3.dropdown-toggle {
    background-image: none; }
  .c-btn-dark-3.disabled, .c-btn-dark-3.disabled:hover, .c-btn-dark-3.disabled:not(.btn-no-focus):focus, .c-btn-dark-3.disabled:not(.btn-no-focus).focus, .c-btn-dark-3.disabled:active, .c-btn-dark-3.disabled.active, .c-btn-dark-3[disabled], .c-btn-dark-3[disabled]:hover, .c-btn-dark-3[disabled]:not(.btn-no-focus):focus, .c-btn-dark-3[disabled]:not(.btn-no-focus).focus, .c-btn-dark-3[disabled]:active, .c-btn-dark-3[disabled].active,
  fieldset[disabled] .c-btn-dark-3,
  fieldset[disabled] .c-btn-dark-3:hover,
  fieldset[disabled] .c-btn-dark-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-dark-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-dark-3:active,
  fieldset[disabled] .c-btn-dark-3.active {
    background: #41515b;
    border-color: #41515b; }
  .c-btn-dark-3 .badge {
    color: #41515b;
    background: #ffffff; }

.c-btn-dark-4 {
  border-color: #24272b;
  border-width: 1px;
  color: #ffffff;
  background: #24272b;
  border-color: #24272b; }
  .c-btn-dark-4.btn-no-focus:focus, .c-btn-dark-4.btn-no-focus.focus {
    color: #ffffff;
    background: #24272b;
    border-color: #24272b; }
  .c-btn-dark-4.btn-no-focus:hover, .c-btn-dark-4:hover, .c-btn-dark-4.btn-no-focus:active, .c-btn-dark-4:active, .c-btn-dark-4.active,
  .open > .c-btn-dark-4.dropdown-toggle {
    color: #ffffff;
    background: #111315;
    border-color: #111315; }
  .c-btn-dark-4:active, .c-btn-dark-4.active,
  .open > .c-btn-dark-4.dropdown-toggle {
    background-image: none; }
  .c-btn-dark-4.disabled, .c-btn-dark-4.disabled:hover, .c-btn-dark-4.disabled:not(.btn-no-focus):focus, .c-btn-dark-4.disabled:not(.btn-no-focus).focus, .c-btn-dark-4.disabled:active, .c-btn-dark-4.disabled.active, .c-btn-dark-4[disabled], .c-btn-dark-4[disabled]:hover, .c-btn-dark-4[disabled]:not(.btn-no-focus):focus, .c-btn-dark-4[disabled]:not(.btn-no-focus).focus, .c-btn-dark-4[disabled]:active, .c-btn-dark-4[disabled].active,
  fieldset[disabled] .c-btn-dark-4,
  fieldset[disabled] .c-btn-dark-4:hover,
  fieldset[disabled] .c-btn-dark-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-dark-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-dark-4:active,
  fieldset[disabled] .c-btn-dark-4.active {
    background: #24272b;
    border-color: #24272b; }
  .c-btn-dark-4 .badge {
    color: #24272b;
    background: #ffffff; }

.c-btn-grey {
  border-color: #eeeeee;
  border-width: 1px;
  color: #6f6f6f;
  background: #eeeeee;
  border-color: #eeeeee; }
  .c-btn-grey.btn-no-focus:focus, .c-btn-grey.btn-no-focus.focus {
    color: #6f6f6f;
    background: #eeeeee;
    border-color: #eeeeee; }
  .c-btn-grey.btn-no-focus:hover, .c-btn-grey:hover, .c-btn-grey.btn-no-focus:active, .c-btn-grey:active, .c-btn-grey.active,
  .open > .c-btn-grey.dropdown-toggle {
    color: #6f6f6f;
    background: #dadada;
    border-color: #dadada; }
  .c-btn-grey:active, .c-btn-grey.active,
  .open > .c-btn-grey.dropdown-toggle {
    background-image: none; }
  .c-btn-grey.disabled, .c-btn-grey.disabled:hover, .c-btn-grey.disabled:not(.btn-no-focus):focus, .c-btn-grey.disabled:not(.btn-no-focus).focus, .c-btn-grey.disabled:active, .c-btn-grey.disabled.active, .c-btn-grey[disabled], .c-btn-grey[disabled]:hover, .c-btn-grey[disabled]:not(.btn-no-focus):focus, .c-btn-grey[disabled]:not(.btn-no-focus).focus, .c-btn-grey[disabled]:active, .c-btn-grey[disabled].active,
  fieldset[disabled] .c-btn-grey,
  fieldset[disabled] .c-btn-grey:hover,
  fieldset[disabled] .c-btn-grey:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-grey:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-grey:active,
  fieldset[disabled] .c-btn-grey.active {
    background: #eeeeee;
    border-color: #eeeeee; }
  .c-btn-grey .badge {
    color: #eeeeee;
    background: #6f6f6f; }

.c-btn-grey-1 {
  border-color: #f7f7f7;
  border-width: 1px;
  color: #787878;
  background: #f7f7f7;
  border-color: #f7f7f7; }
  .c-btn-grey-1.btn-no-focus:focus, .c-btn-grey-1.btn-no-focus.focus {
    color: #787878;
    background: #f7f7f7;
    border-color: #f7f7f7; }
  .c-btn-grey-1.btn-no-focus:hover, .c-btn-grey-1:hover, .c-btn-grey-1.btn-no-focus:active, .c-btn-grey-1:active, .c-btn-grey-1.active,
  .open > .c-btn-grey-1.dropdown-toggle {
    color: #787878;
    background: #e3e3e3;
    border-color: #e3e3e3; }
  .c-btn-grey-1:active, .c-btn-grey-1.active,
  .open > .c-btn-grey-1.dropdown-toggle {
    background-image: none; }
  .c-btn-grey-1.disabled, .c-btn-grey-1.disabled:hover, .c-btn-grey-1.disabled:not(.btn-no-focus):focus, .c-btn-grey-1.disabled:not(.btn-no-focus).focus, .c-btn-grey-1.disabled:active, .c-btn-grey-1.disabled.active, .c-btn-grey-1[disabled], .c-btn-grey-1[disabled]:hover, .c-btn-grey-1[disabled]:not(.btn-no-focus):focus, .c-btn-grey-1[disabled]:not(.btn-no-focus).focus, .c-btn-grey-1[disabled]:active, .c-btn-grey-1[disabled].active,
  fieldset[disabled] .c-btn-grey-1,
  fieldset[disabled] .c-btn-grey-1:hover,
  fieldset[disabled] .c-btn-grey-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-grey-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-grey-1:active,
  fieldset[disabled] .c-btn-grey-1.active {
    background: #f7f7f7;
    border-color: #f7f7f7; }
  .c-btn-grey-1 .badge {
    color: #f7f7f7;
    background: #787878; }

.c-btn-grey-2 {
  border-color: #677083;
  border-width: 1px;
  color: #ffffff;
  background: #677083;
  border-color: #677083; }
  .c-btn-grey-2.btn-no-focus:focus, .c-btn-grey-2.btn-no-focus.focus {
    color: #ffffff;
    background: #677083;
    border-color: #677083; }
  .c-btn-grey-2.btn-no-focus:hover, .c-btn-grey-2:hover, .c-btn-grey-2.btn-no-focus:active, .c-btn-grey-2:active, .c-btn-grey-2.active,
  .open > .c-btn-grey-2.dropdown-toggle {
    color: #ffffff;
    background: #555c6c;
    border-color: #555c6c; }
  .c-btn-grey-2:active, .c-btn-grey-2.active,
  .open > .c-btn-grey-2.dropdown-toggle {
    background-image: none; }
  .c-btn-grey-2.disabled, .c-btn-grey-2.disabled:hover, .c-btn-grey-2.disabled:not(.btn-no-focus):focus, .c-btn-grey-2.disabled:not(.btn-no-focus).focus, .c-btn-grey-2.disabled:active, .c-btn-grey-2.disabled.active, .c-btn-grey-2[disabled], .c-btn-grey-2[disabled]:hover, .c-btn-grey-2[disabled]:not(.btn-no-focus):focus, .c-btn-grey-2[disabled]:not(.btn-no-focus).focus, .c-btn-grey-2[disabled]:active, .c-btn-grey-2[disabled].active,
  fieldset[disabled] .c-btn-grey-2,
  fieldset[disabled] .c-btn-grey-2:hover,
  fieldset[disabled] .c-btn-grey-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-grey-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-grey-2:active,
  fieldset[disabled] .c-btn-grey-2.active {
    background: #677083;
    border-color: #677083; }
  .c-btn-grey-2 .badge {
    color: #677083;
    background: #ffffff; }

.c-btn-grey-3 {
  border-color: #7f8c97;
  border-width: 1px;
  color: #ffffff;
  background: #7f8c97;
  border-color: #7f8c97; }
  .c-btn-grey-3.btn-no-focus:focus, .c-btn-grey-3.btn-no-focus.focus {
    color: #ffffff;
    background: #7f8c97;
    border-color: #7f8c97; }
  .c-btn-grey-3.btn-no-focus:hover, .c-btn-grey-3:hover, .c-btn-grey-3.btn-no-focus:active, .c-btn-grey-3:active, .c-btn-grey-3.active,
  .open > .c-btn-grey-3.dropdown-toggle {
    color: #ffffff;
    background: #6a7883;
    border-color: #6a7883; }
  .c-btn-grey-3:active, .c-btn-grey-3.active,
  .open > .c-btn-grey-3.dropdown-toggle {
    background-image: none; }
  .c-btn-grey-3.disabled, .c-btn-grey-3.disabled:hover, .c-btn-grey-3.disabled:not(.btn-no-focus):focus, .c-btn-grey-3.disabled:not(.btn-no-focus).focus, .c-btn-grey-3.disabled:active, .c-btn-grey-3.disabled.active, .c-btn-grey-3[disabled], .c-btn-grey-3[disabled]:hover, .c-btn-grey-3[disabled]:not(.btn-no-focus):focus, .c-btn-grey-3[disabled]:not(.btn-no-focus).focus, .c-btn-grey-3[disabled]:active, .c-btn-grey-3[disabled].active,
  fieldset[disabled] .c-btn-grey-3,
  fieldset[disabled] .c-btn-grey-3:hover,
  fieldset[disabled] .c-btn-grey-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-grey-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-grey-3:active,
  fieldset[disabled] .c-btn-grey-3.active {
    background: #7f8c97;
    border-color: #7f8c97; }
  .c-btn-grey-3 .badge {
    color: #7f8c97;
    background: #ffffff; }

.c-btn-grey-4 {
  border-color: #a0a6ab;
  border-width: 1px;
  color: #ffffff;
  background: #a0a6ab;
  border-color: #a0a6ab; }
  .c-btn-grey-4.btn-no-focus:focus, .c-btn-grey-4.btn-no-focus.focus {
    color: #ffffff;
    background: #a0a6ab;
    border-color: #a0a6ab; }
  .c-btn-grey-4.btn-no-focus:hover, .c-btn-grey-4:hover, .c-btn-grey-4.btn-no-focus:active, .c-btn-grey-4:active, .c-btn-grey-4.active,
  .open > .c-btn-grey-4.dropdown-toggle {
    color: #ffffff;
    background: #8a9298;
    border-color: #8a9298; }
  .c-btn-grey-4:active, .c-btn-grey-4.active,
  .open > .c-btn-grey-4.dropdown-toggle {
    background-image: none; }
  .c-btn-grey-4.disabled, .c-btn-grey-4.disabled:hover, .c-btn-grey-4.disabled:not(.btn-no-focus):focus, .c-btn-grey-4.disabled:not(.btn-no-focus).focus, .c-btn-grey-4.disabled:active, .c-btn-grey-4.disabled.active, .c-btn-grey-4[disabled], .c-btn-grey-4[disabled]:hover, .c-btn-grey-4[disabled]:not(.btn-no-focus):focus, .c-btn-grey-4[disabled]:not(.btn-no-focus).focus, .c-btn-grey-4[disabled]:active, .c-btn-grey-4[disabled].active,
  fieldset[disabled] .c-btn-grey-4,
  fieldset[disabled] .c-btn-grey-4:hover,
  fieldset[disabled] .c-btn-grey-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-grey-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-grey-4:active,
  fieldset[disabled] .c-btn-grey-4.active {
    background: #a0a6ab;
    border-color: #a0a6ab; }
  .c-btn-grey-4 .badge {
    color: #a0a6ab;
    background: #ffffff; }

.c-btn-border-1x.c-btn-white {
  border-color: #FFFFFF;
  color: #FFFFFF;
  background: none;
  border-color: #FFFFFF; }
  .c-btn-border-1x.c-btn-white.c-btn-border-opacity-04 {
    border-color: rgba(255, 255, 255, 0.4); }
  .c-btn-border-1x.c-btn-white.btn-no-focus:focus, .c-btn-border-1x.c-btn-white.btn-no-focus.focus {
    color: #FFFFFF;
    background: none;
    border-color: #FFFFFF; }
  .c-btn-border-1x.c-btn-white.btn-no-focus:hover, .c-btn-border-1x.c-btn-white:hover, .c-btn-border-1x.c-btn-white.btn-no-focus:active, .c-btn-border-1x.c-btn-white:active, .c-btn-border-1x.c-btn-white.active,
  .open > .c-btn-border-1x.c-btn-white.dropdown-toggle {
    color: #2f353b;
    background: #FFFFFF;
    border-color: #FFFFFF; }
  .c-btn-border-1x.c-btn-white:active, .c-btn-border-1x.c-btn-white.active,
  .open > .c-btn-border-1x.c-btn-white.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-white.disabled, .c-btn-border-1x.c-btn-white.disabled:hover, .c-btn-border-1x.c-btn-white.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-white.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-white.disabled:active, .c-btn-border-1x.c-btn-white.disabled.active, .c-btn-border-1x.c-btn-white[disabled], .c-btn-border-1x.c-btn-white[disabled]:hover, .c-btn-border-1x.c-btn-white[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-white[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-white[disabled]:active, .c-btn-border-1x.c-btn-white[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-white,
  fieldset[disabled] .c-btn-border-1x.c-btn-white:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-white:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-white:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-white:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-white.active {
    background: none;
    border-color: #FFFFFF; }
  .c-btn-border-1x.c-btn-white .badge {
    color: none;
    background: #FFFFFF; }

.c-btn-border-1x.c-btn-black {
  border-color: #000000;
  color: #000000;
  background: none;
  border-color: #000000; }
  .c-btn-border-1x.c-btn-black.c-btn-border-opacity-04 {
    border-color: rgba(0, 0, 0, 0.4); }
  .c-btn-border-1x.c-btn-black.btn-no-focus:focus, .c-btn-border-1x.c-btn-black.btn-no-focus.focus {
    color: #000000;
    background: none;
    border-color: #000000; }
  .c-btn-border-1x.c-btn-black.btn-no-focus:hover, .c-btn-border-1x.c-btn-black:hover, .c-btn-border-1x.c-btn-black.btn-no-focus:active, .c-btn-border-1x.c-btn-black:active, .c-btn-border-1x.c-btn-black.active,
  .open > .c-btn-border-1x.c-btn-black.dropdown-toggle {
    color: #ffffff;
    background: #000000;
    border-color: #000000; }
  .c-btn-border-1x.c-btn-black:active, .c-btn-border-1x.c-btn-black.active,
  .open > .c-btn-border-1x.c-btn-black.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-black.disabled, .c-btn-border-1x.c-btn-black.disabled:hover, .c-btn-border-1x.c-btn-black.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-black.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-black.disabled:active, .c-btn-border-1x.c-btn-black.disabled.active, .c-btn-border-1x.c-btn-black[disabled], .c-btn-border-1x.c-btn-black[disabled]:hover, .c-btn-border-1x.c-btn-black[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-black[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-black[disabled]:active, .c-btn-border-1x.c-btn-black[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-black,
  fieldset[disabled] .c-btn-border-1x.c-btn-black:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-black:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-black:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-black:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-black.active {
    background: none;
    border-color: #000000; }
  .c-btn-border-1x.c-btn-black .badge {
    color: none;
    background: #000000; }

.c-btn-border-1x.c-btn-regular {
  border-color: #7f8c97;
  color: #7f8c97;
  background: none;
  border-color: #7f8c97; }
  .c-btn-border-1x.c-btn-regular.c-btn-border-opacity-04 {
    border-color: rgba(127, 140, 151, 0.4); }
  .c-btn-border-1x.c-btn-regular.btn-no-focus:focus, .c-btn-border-1x.c-btn-regular.btn-no-focus.focus {
    color: #7f8c97;
    background: none;
    border-color: #7f8c97; }
  .c-btn-border-1x.c-btn-regular.btn-no-focus:hover, .c-btn-border-1x.c-btn-regular:hover, .c-btn-border-1x.c-btn-regular.btn-no-focus:active, .c-btn-border-1x.c-btn-regular:active, .c-btn-border-1x.c-btn-regular.active,
  .open > .c-btn-border-1x.c-btn-regular.dropdown-toggle {
    color: #ffffff;
    background: #7f8c97;
    border-color: #7f8c97; }
  .c-btn-border-1x.c-btn-regular:active, .c-btn-border-1x.c-btn-regular.active,
  .open > .c-btn-border-1x.c-btn-regular.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-regular.disabled, .c-btn-border-1x.c-btn-regular.disabled:hover, .c-btn-border-1x.c-btn-regular.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-regular.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-regular.disabled:active, .c-btn-border-1x.c-btn-regular.disabled.active, .c-btn-border-1x.c-btn-regular[disabled], .c-btn-border-1x.c-btn-regular[disabled]:hover, .c-btn-border-1x.c-btn-regular[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-regular[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-regular[disabled]:active, .c-btn-border-1x.c-btn-regular[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-regular,
  fieldset[disabled] .c-btn-border-1x.c-btn-regular:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-regular:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-regular:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-regular:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-regular.active {
    background: none;
    border-color: #7f8c97; }
  .c-btn-border-1x.c-btn-regular .badge {
    color: none;
    background: #7f8c97; }

.c-btn-border-1x.c-btn-green {
  border-color: #32c5d2;
  color: #32c5d2;
  background: none;
  border-color: #32c5d2; }
  .c-btn-border-1x.c-btn-green.c-btn-border-opacity-04 {
    border-color: rgba(50, 197, 210, 0.4); }
  .c-btn-border-1x.c-btn-green.btn-no-focus:focus, .c-btn-border-1x.c-btn-green.btn-no-focus.focus {
    color: #32c5d2;
    background: none;
    border-color: #32c5d2; }
  .c-btn-border-1x.c-btn-green.btn-no-focus:hover, .c-btn-border-1x.c-btn-green:hover, .c-btn-border-1x.c-btn-green.btn-no-focus:active, .c-btn-border-1x.c-btn-green:active, .c-btn-border-1x.c-btn-green.active,
  .open > .c-btn-border-1x.c-btn-green.dropdown-toggle {
    color: #ffffff;
    background: #32c5d2;
    border-color: #32c5d2; }
  .c-btn-border-1x.c-btn-green:active, .c-btn-border-1x.c-btn-green.active,
  .open > .c-btn-border-1x.c-btn-green.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-green.disabled, .c-btn-border-1x.c-btn-green.disabled:hover, .c-btn-border-1x.c-btn-green.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-green.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-green.disabled:active, .c-btn-border-1x.c-btn-green.disabled.active, .c-btn-border-1x.c-btn-green[disabled], .c-btn-border-1x.c-btn-green[disabled]:hover, .c-btn-border-1x.c-btn-green[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-green[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-green[disabled]:active, .c-btn-border-1x.c-btn-green[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-green,
  fieldset[disabled] .c-btn-border-1x.c-btn-green:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-green:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-green:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-green:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-green.active {
    background: none;
    border-color: #32c5d2; }
  .c-btn-border-1x.c-btn-green .badge {
    color: none;
    background: #32c5d2; }

.c-btn-border-1x.c-btn-green-1 {
  border-color: #52c9ba;
  color: #52c9ba;
  background: none;
  border-color: #52c9ba; }
  .c-btn-border-1x.c-btn-green-1.c-btn-border-opacity-04 {
    border-color: rgba(82, 201, 186, 0.4); }
  .c-btn-border-1x.c-btn-green-1.btn-no-focus:focus, .c-btn-border-1x.c-btn-green-1.btn-no-focus.focus {
    color: #52c9ba;
    background: none;
    border-color: #52c9ba; }
  .c-btn-border-1x.c-btn-green-1.btn-no-focus:hover, .c-btn-border-1x.c-btn-green-1:hover, .c-btn-border-1x.c-btn-green-1.btn-no-focus:active, .c-btn-border-1x.c-btn-green-1:active, .c-btn-border-1x.c-btn-green-1.active,
  .open > .c-btn-border-1x.c-btn-green-1.dropdown-toggle {
    color: #ffffff;
    background: #52c9ba;
    border-color: #52c9ba; }
  .c-btn-border-1x.c-btn-green-1:active, .c-btn-border-1x.c-btn-green-1.active,
  .open > .c-btn-border-1x.c-btn-green-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-green-1.disabled, .c-btn-border-1x.c-btn-green-1.disabled:hover, .c-btn-border-1x.c-btn-green-1.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-green-1.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-green-1.disabled:active, .c-btn-border-1x.c-btn-green-1.disabled.active, .c-btn-border-1x.c-btn-green-1[disabled], .c-btn-border-1x.c-btn-green-1[disabled]:hover, .c-btn-border-1x.c-btn-green-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-green-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-green-1[disabled]:active, .c-btn-border-1x.c-btn-green-1[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-1,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-1:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-1:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-1.active {
    background: none;
    border-color: #52c9ba; }
  .c-btn-border-1x.c-btn-green-1 .badge {
    color: none;
    background: #52c9ba; }

.c-btn-border-1x.c-btn-green-2 {
  border-color: #5dc09c;
  color: #5dc09c;
  background: none;
  border-color: #5dc09c; }
  .c-btn-border-1x.c-btn-green-2.c-btn-border-opacity-04 {
    border-color: rgba(93, 192, 156, 0.4); }
  .c-btn-border-1x.c-btn-green-2.btn-no-focus:focus, .c-btn-border-1x.c-btn-green-2.btn-no-focus.focus {
    color: #5dc09c;
    background: none;
    border-color: #5dc09c; }
  .c-btn-border-1x.c-btn-green-2.btn-no-focus:hover, .c-btn-border-1x.c-btn-green-2:hover, .c-btn-border-1x.c-btn-green-2.btn-no-focus:active, .c-btn-border-1x.c-btn-green-2:active, .c-btn-border-1x.c-btn-green-2.active,
  .open > .c-btn-border-1x.c-btn-green-2.dropdown-toggle {
    color: #ffffff;
    background: #5dc09c;
    border-color: #5dc09c; }
  .c-btn-border-1x.c-btn-green-2:active, .c-btn-border-1x.c-btn-green-2.active,
  .open > .c-btn-border-1x.c-btn-green-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-green-2.disabled, .c-btn-border-1x.c-btn-green-2.disabled:hover, .c-btn-border-1x.c-btn-green-2.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-green-2.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-green-2.disabled:active, .c-btn-border-1x.c-btn-green-2.disabled.active, .c-btn-border-1x.c-btn-green-2[disabled], .c-btn-border-1x.c-btn-green-2[disabled]:hover, .c-btn-border-1x.c-btn-green-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-green-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-green-2[disabled]:active, .c-btn-border-1x.c-btn-green-2[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-2,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-2:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-2:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-2.active {
    background: none;
    border-color: #5dc09c; }
  .c-btn-border-1x.c-btn-green-2 .badge {
    color: none;
    background: #5dc09c; }

.c-btn-border-1x.c-btn-green-3 {
  border-color: #84c68f;
  color: #84c68f;
  background: none;
  border-color: #84c68f; }
  .c-btn-border-1x.c-btn-green-3.c-btn-border-opacity-04 {
    border-color: rgba(132, 198, 143, 0.4); }
  .c-btn-border-1x.c-btn-green-3.btn-no-focus:focus, .c-btn-border-1x.c-btn-green-3.btn-no-focus.focus {
    color: #84c68f;
    background: none;
    border-color: #84c68f; }
  .c-btn-border-1x.c-btn-green-3.btn-no-focus:hover, .c-btn-border-1x.c-btn-green-3:hover, .c-btn-border-1x.c-btn-green-3.btn-no-focus:active, .c-btn-border-1x.c-btn-green-3:active, .c-btn-border-1x.c-btn-green-3.active,
  .open > .c-btn-border-1x.c-btn-green-3.dropdown-toggle {
    color: #ffffff;
    background: #84c68f;
    border-color: #84c68f; }
  .c-btn-border-1x.c-btn-green-3:active, .c-btn-border-1x.c-btn-green-3.active,
  .open > .c-btn-border-1x.c-btn-green-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-green-3.disabled, .c-btn-border-1x.c-btn-green-3.disabled:hover, .c-btn-border-1x.c-btn-green-3.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-green-3.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-green-3.disabled:active, .c-btn-border-1x.c-btn-green-3.disabled.active, .c-btn-border-1x.c-btn-green-3[disabled], .c-btn-border-1x.c-btn-green-3[disabled]:hover, .c-btn-border-1x.c-btn-green-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-green-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-green-3[disabled]:active, .c-btn-border-1x.c-btn-green-3[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-3,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-3:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-3:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-3.active {
    background: none;
    border-color: #84c68f; }
  .c-btn-border-1x.c-btn-green-3 .badge {
    color: none;
    background: #84c68f; }

.c-btn-border-1x.c-btn-green-4 {
  border-color: #3cb878;
  color: #3cb878;
  background: none;
  border-color: #3cb878; }
  .c-btn-border-1x.c-btn-green-4.c-btn-border-opacity-04 {
    border-color: rgba(60, 184, 120, 0.4); }
  .c-btn-border-1x.c-btn-green-4.btn-no-focus:focus, .c-btn-border-1x.c-btn-green-4.btn-no-focus.focus {
    color: #3cb878;
    background: none;
    border-color: #3cb878; }
  .c-btn-border-1x.c-btn-green-4.btn-no-focus:hover, .c-btn-border-1x.c-btn-green-4:hover, .c-btn-border-1x.c-btn-green-4.btn-no-focus:active, .c-btn-border-1x.c-btn-green-4:active, .c-btn-border-1x.c-btn-green-4.active,
  .open > .c-btn-border-1x.c-btn-green-4.dropdown-toggle {
    color: #ffffff;
    background: #3cb878;
    border-color: #3cb878; }
  .c-btn-border-1x.c-btn-green-4:active, .c-btn-border-1x.c-btn-green-4.active,
  .open > .c-btn-border-1x.c-btn-green-4.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-green-4.disabled, .c-btn-border-1x.c-btn-green-4.disabled:hover, .c-btn-border-1x.c-btn-green-4.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-green-4.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-green-4.disabled:active, .c-btn-border-1x.c-btn-green-4.disabled.active, .c-btn-border-1x.c-btn-green-4[disabled], .c-btn-border-1x.c-btn-green-4[disabled]:hover, .c-btn-border-1x.c-btn-green-4[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-green-4[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-green-4[disabled]:active, .c-btn-border-1x.c-btn-green-4[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-4,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-4:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-4:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-green-4.active {
    background: none;
    border-color: #3cb878; }
  .c-btn-border-1x.c-btn-green-4 .badge {
    color: none;
    background: #3cb878; }

.c-btn-border-1x.c-btn-red {
  border-color: #eb5d68;
  color: #eb5d68;
  background: none;
  border-color: #eb5d68; }
  .c-btn-border-1x.c-btn-red.c-btn-border-opacity-04 {
    border-color: rgba(235, 93, 104, 0.4); }
  .c-btn-border-1x.c-btn-red.btn-no-focus:focus, .c-btn-border-1x.c-btn-red.btn-no-focus.focus {
    color: #eb5d68;
    background: none;
    border-color: #eb5d68; }
  .c-btn-border-1x.c-btn-red.btn-no-focus:hover, .c-btn-border-1x.c-btn-red:hover, .c-btn-border-1x.c-btn-red.btn-no-focus:active, .c-btn-border-1x.c-btn-red:active, .c-btn-border-1x.c-btn-red.active,
  .open > .c-btn-border-1x.c-btn-red.dropdown-toggle {
    color: #ffffff;
    background: #eb5d68;
    border-color: #eb5d68; }
  .c-btn-border-1x.c-btn-red:active, .c-btn-border-1x.c-btn-red.active,
  .open > .c-btn-border-1x.c-btn-red.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-red.disabled, .c-btn-border-1x.c-btn-red.disabled:hover, .c-btn-border-1x.c-btn-red.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-red.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-red.disabled:active, .c-btn-border-1x.c-btn-red.disabled.active, .c-btn-border-1x.c-btn-red[disabled], .c-btn-border-1x.c-btn-red[disabled]:hover, .c-btn-border-1x.c-btn-red[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-red[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-red[disabled]:active, .c-btn-border-1x.c-btn-red[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-red,
  fieldset[disabled] .c-btn-border-1x.c-btn-red:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-red:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-red:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-red:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-red.active {
    background: none;
    border-color: #eb5d68; }
  .c-btn-border-1x.c-btn-red .badge {
    color: none;
    background: #eb5d68; }

.c-btn-border-1x.c-btn-red-1 {
  border-color: #cd6262;
  color: #cd6262;
  background: none;
  border-color: #cd6262; }
  .c-btn-border-1x.c-btn-red-1.c-btn-border-opacity-04 {
    border-color: rgba(205, 98, 98, 0.4); }
  .c-btn-border-1x.c-btn-red-1.btn-no-focus:focus, .c-btn-border-1x.c-btn-red-1.btn-no-focus.focus {
    color: #cd6262;
    background: none;
    border-color: #cd6262; }
  .c-btn-border-1x.c-btn-red-1.btn-no-focus:hover, .c-btn-border-1x.c-btn-red-1:hover, .c-btn-border-1x.c-btn-red-1.btn-no-focus:active, .c-btn-border-1x.c-btn-red-1:active, .c-btn-border-1x.c-btn-red-1.active,
  .open > .c-btn-border-1x.c-btn-red-1.dropdown-toggle {
    color: #ffffff;
    background: #cd6262;
    border-color: #cd6262; }
  .c-btn-border-1x.c-btn-red-1:active, .c-btn-border-1x.c-btn-red-1.active,
  .open > .c-btn-border-1x.c-btn-red-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-red-1.disabled, .c-btn-border-1x.c-btn-red-1.disabled:hover, .c-btn-border-1x.c-btn-red-1.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-red-1.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-red-1.disabled:active, .c-btn-border-1x.c-btn-red-1.disabled.active, .c-btn-border-1x.c-btn-red-1[disabled], .c-btn-border-1x.c-btn-red-1[disabled]:hover, .c-btn-border-1x.c-btn-red-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-red-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-red-1[disabled]:active, .c-btn-border-1x.c-btn-red-1[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-1,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-1:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-1:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-1.active {
    background: none;
    border-color: #cd6262; }
  .c-btn-border-1x.c-btn-red-1 .badge {
    color: none;
    background: #cd6262; }

.c-btn-border-1x.c-btn-red-2 {
  border-color: #e7505a;
  color: #e7505a;
  background: none;
  border-color: #e7505a; }
  .c-btn-border-1x.c-btn-red-2.c-btn-border-opacity-04 {
    border-color: rgba(231, 80, 90, 0.4); }
  .c-btn-border-1x.c-btn-red-2.btn-no-focus:focus, .c-btn-border-1x.c-btn-red-2.btn-no-focus.focus {
    color: #e7505a;
    background: none;
    border-color: #e7505a; }
  .c-btn-border-1x.c-btn-red-2.btn-no-focus:hover, .c-btn-border-1x.c-btn-red-2:hover, .c-btn-border-1x.c-btn-red-2.btn-no-focus:active, .c-btn-border-1x.c-btn-red-2:active, .c-btn-border-1x.c-btn-red-2.active,
  .open > .c-btn-border-1x.c-btn-red-2.dropdown-toggle {
    color: #ffffff;
    background: #e7505a;
    border-color: #e7505a; }
  .c-btn-border-1x.c-btn-red-2:active, .c-btn-border-1x.c-btn-red-2.active,
  .open > .c-btn-border-1x.c-btn-red-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-red-2.disabled, .c-btn-border-1x.c-btn-red-2.disabled:hover, .c-btn-border-1x.c-btn-red-2.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-red-2.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-red-2.disabled:active, .c-btn-border-1x.c-btn-red-2.disabled.active, .c-btn-border-1x.c-btn-red-2[disabled], .c-btn-border-1x.c-btn-red-2[disabled]:hover, .c-btn-border-1x.c-btn-red-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-red-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-red-2[disabled]:active, .c-btn-border-1x.c-btn-red-2[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-2,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-2:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-2:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-2.active {
    background: none;
    border-color: #e7505a; }
  .c-btn-border-1x.c-btn-red-2 .badge {
    color: none;
    background: #e7505a; }

.c-btn-border-1x.c-btn-red-3 {
  border-color: #d05163;
  color: #d05163;
  background: none;
  border-color: #d05163; }
  .c-btn-border-1x.c-btn-red-3.c-btn-border-opacity-04 {
    border-color: rgba(208, 81, 99, 0.4); }
  .c-btn-border-1x.c-btn-red-3.btn-no-focus:focus, .c-btn-border-1x.c-btn-red-3.btn-no-focus.focus {
    color: #d05163;
    background: none;
    border-color: #d05163; }
  .c-btn-border-1x.c-btn-red-3.btn-no-focus:hover, .c-btn-border-1x.c-btn-red-3:hover, .c-btn-border-1x.c-btn-red-3.btn-no-focus:active, .c-btn-border-1x.c-btn-red-3:active, .c-btn-border-1x.c-btn-red-3.active,
  .open > .c-btn-border-1x.c-btn-red-3.dropdown-toggle {
    color: #ffffff;
    background: #d05163;
    border-color: #d05163; }
  .c-btn-border-1x.c-btn-red-3:active, .c-btn-border-1x.c-btn-red-3.active,
  .open > .c-btn-border-1x.c-btn-red-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-red-3.disabled, .c-btn-border-1x.c-btn-red-3.disabled:hover, .c-btn-border-1x.c-btn-red-3.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-red-3.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-red-3.disabled:active, .c-btn-border-1x.c-btn-red-3.disabled.active, .c-btn-border-1x.c-btn-red-3[disabled], .c-btn-border-1x.c-btn-red-3[disabled]:hover, .c-btn-border-1x.c-btn-red-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-red-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-red-3[disabled]:active, .c-btn-border-1x.c-btn-red-3[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-3,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-3:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-3:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-red-3.active {
    background: none;
    border-color: #d05163; }
  .c-btn-border-1x.c-btn-red-3 .badge {
    color: none;
    background: #d05163; }

.c-btn-border-1x.c-btn-yellow {
  border-color: #FF6B57;
  color: #FF6B57;
  background: none;
  border-color: #FF6B57; }
  .c-btn-border-1x.c-btn-yellow.c-btn-border-opacity-04 {
    border-color: rgba(255, 107, 87, 0.4); }
  .c-btn-border-1x.c-btn-yellow.btn-no-focus:focus, .c-btn-border-1x.c-btn-yellow.btn-no-focus.focus {
    color: #FF6B57;
    background: none;
    border-color: #FF6B57; }
  .c-btn-border-1x.c-btn-yellow.btn-no-focus:hover, .c-btn-border-1x.c-btn-yellow:hover, .c-btn-border-1x.c-btn-yellow.btn-no-focus:active, .c-btn-border-1x.c-btn-yellow:active, .c-btn-border-1x.c-btn-yellow.active,
  .open > .c-btn-border-1x.c-btn-yellow.dropdown-toggle {
    color: #ffffff;
    background: #FF6B57;
    border-color: #FF6B57; }
  .c-btn-border-1x.c-btn-yellow:active, .c-btn-border-1x.c-btn-yellow.active,
  .open > .c-btn-border-1x.c-btn-yellow.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-yellow.disabled, .c-btn-border-1x.c-btn-yellow.disabled:hover, .c-btn-border-1x.c-btn-yellow.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-yellow.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-yellow.disabled:active, .c-btn-border-1x.c-btn-yellow.disabled.active, .c-btn-border-1x.c-btn-yellow[disabled], .c-btn-border-1x.c-btn-yellow[disabled]:hover, .c-btn-border-1x.c-btn-yellow[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-yellow[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-yellow[disabled]:active, .c-btn-border-1x.c-btn-yellow[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow.active {
    background: none;
    border-color: #FF6B57; }
  .c-btn-border-1x.c-btn-yellow .badge {
    color: none;
    background: #FF6B57; }

.c-btn-border-1x.c-btn-yellow-1 {
  border-color: #c8d046;
  color: #c8d046;
  background: none;
  border-color: #c8d046; }
  .c-btn-border-1x.c-btn-yellow-1.c-btn-border-opacity-04 {
    border-color: rgba(200, 208, 70, 0.4); }
  .c-btn-border-1x.c-btn-yellow-1.btn-no-focus:focus, .c-btn-border-1x.c-btn-yellow-1.btn-no-focus.focus {
    color: #c8d046;
    background: none;
    border-color: #c8d046; }
  .c-btn-border-1x.c-btn-yellow-1.btn-no-focus:hover, .c-btn-border-1x.c-btn-yellow-1:hover, .c-btn-border-1x.c-btn-yellow-1.btn-no-focus:active, .c-btn-border-1x.c-btn-yellow-1:active, .c-btn-border-1x.c-btn-yellow-1.active,
  .open > .c-btn-border-1x.c-btn-yellow-1.dropdown-toggle {
    color: #ffffff;
    background: #c8d046;
    border-color: #c8d046; }
  .c-btn-border-1x.c-btn-yellow-1:active, .c-btn-border-1x.c-btn-yellow-1.active,
  .open > .c-btn-border-1x.c-btn-yellow-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-yellow-1.disabled, .c-btn-border-1x.c-btn-yellow-1.disabled:hover, .c-btn-border-1x.c-btn-yellow-1.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-yellow-1.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-yellow-1.disabled:active, .c-btn-border-1x.c-btn-yellow-1.disabled.active, .c-btn-border-1x.c-btn-yellow-1[disabled], .c-btn-border-1x.c-btn-yellow-1[disabled]:hover, .c-btn-border-1x.c-btn-yellow-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-yellow-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-yellow-1[disabled]:active, .c-btn-border-1x.c-btn-yellow-1[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-1,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-1:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-1:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-1.active {
    background: none;
    border-color: #c8d046; }
  .c-btn-border-1x.c-btn-yellow-1 .badge {
    color: none;
    background: #c8d046; }

.c-btn-border-1x.c-btn-yellow-2 {
  border-color: #c5bf66;
  color: #c5bf66;
  background: none;
  border-color: #c5bf66; }
  .c-btn-border-1x.c-btn-yellow-2.c-btn-border-opacity-04 {
    border-color: rgba(197, 191, 102, 0.4); }
  .c-btn-border-1x.c-btn-yellow-2.btn-no-focus:focus, .c-btn-border-1x.c-btn-yellow-2.btn-no-focus.focus {
    color: #c5bf66;
    background: none;
    border-color: #c5bf66; }
  .c-btn-border-1x.c-btn-yellow-2.btn-no-focus:hover, .c-btn-border-1x.c-btn-yellow-2:hover, .c-btn-border-1x.c-btn-yellow-2.btn-no-focus:active, .c-btn-border-1x.c-btn-yellow-2:active, .c-btn-border-1x.c-btn-yellow-2.active,
  .open > .c-btn-border-1x.c-btn-yellow-2.dropdown-toggle {
    color: #ffffff;
    background: #c5bf66;
    border-color: #c5bf66; }
  .c-btn-border-1x.c-btn-yellow-2:active, .c-btn-border-1x.c-btn-yellow-2.active,
  .open > .c-btn-border-1x.c-btn-yellow-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-yellow-2.disabled, .c-btn-border-1x.c-btn-yellow-2.disabled:hover, .c-btn-border-1x.c-btn-yellow-2.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-yellow-2.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-yellow-2.disabled:active, .c-btn-border-1x.c-btn-yellow-2.disabled.active, .c-btn-border-1x.c-btn-yellow-2[disabled], .c-btn-border-1x.c-btn-yellow-2[disabled]:hover, .c-btn-border-1x.c-btn-yellow-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-yellow-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-yellow-2[disabled]:active, .c-btn-border-1x.c-btn-yellow-2[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-2,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-2:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-2:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-2.active {
    background: none;
    border-color: #c5bf66; }
  .c-btn-border-1x.c-btn-yellow-2 .badge {
    color: none;
    background: #c5bf66; }

.c-btn-border-1x.c-btn-yellow-3 {
  border-color: #c5b96b;
  color: #c5b96b;
  background: none;
  border-color: #c5b96b; }
  .c-btn-border-1x.c-btn-yellow-3.c-btn-border-opacity-04 {
    border-color: rgba(197, 185, 107, 0.4); }
  .c-btn-border-1x.c-btn-yellow-3.btn-no-focus:focus, .c-btn-border-1x.c-btn-yellow-3.btn-no-focus.focus {
    color: #c5b96b;
    background: none;
    border-color: #c5b96b; }
  .c-btn-border-1x.c-btn-yellow-3.btn-no-focus:hover, .c-btn-border-1x.c-btn-yellow-3:hover, .c-btn-border-1x.c-btn-yellow-3.btn-no-focus:active, .c-btn-border-1x.c-btn-yellow-3:active, .c-btn-border-1x.c-btn-yellow-3.active,
  .open > .c-btn-border-1x.c-btn-yellow-3.dropdown-toggle {
    color: #ffffff;
    background: #c5b96b;
    border-color: #c5b96b; }
  .c-btn-border-1x.c-btn-yellow-3:active, .c-btn-border-1x.c-btn-yellow-3.active,
  .open > .c-btn-border-1x.c-btn-yellow-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-yellow-3.disabled, .c-btn-border-1x.c-btn-yellow-3.disabled:hover, .c-btn-border-1x.c-btn-yellow-3.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-yellow-3.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-yellow-3.disabled:active, .c-btn-border-1x.c-btn-yellow-3.disabled.active, .c-btn-border-1x.c-btn-yellow-3[disabled], .c-btn-border-1x.c-btn-yellow-3[disabled]:hover, .c-btn-border-1x.c-btn-yellow-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-yellow-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-yellow-3[disabled]:active, .c-btn-border-1x.c-btn-yellow-3[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-3,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-3:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-3:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-3.active {
    background: none;
    border-color: #c5b96b; }
  .c-btn-border-1x.c-btn-yellow-3 .badge {
    color: none;
    background: #c5b96b; }

.c-btn-border-1x.c-btn-yellow-4 {
  border-color: #fff200;
  color: #fff200;
  background: none;
  border-color: #fff200; }
  .c-btn-border-1x.c-btn-yellow-4.c-btn-border-opacity-04 {
    border-color: rgba(255, 242, 0, 0.4); }
  .c-btn-border-1x.c-btn-yellow-4.btn-no-focus:focus, .c-btn-border-1x.c-btn-yellow-4.btn-no-focus.focus {
    color: #fff200;
    background: none;
    border-color: #fff200; }
  .c-btn-border-1x.c-btn-yellow-4.btn-no-focus:hover, .c-btn-border-1x.c-btn-yellow-4:hover, .c-btn-border-1x.c-btn-yellow-4.btn-no-focus:active, .c-btn-border-1x.c-btn-yellow-4:active, .c-btn-border-1x.c-btn-yellow-4.active,
  .open > .c-btn-border-1x.c-btn-yellow-4.dropdown-toggle {
    color: #ffffff;
    background: #fff200;
    border-color: #fff200; }
  .c-btn-border-1x.c-btn-yellow-4:active, .c-btn-border-1x.c-btn-yellow-4.active,
  .open > .c-btn-border-1x.c-btn-yellow-4.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-yellow-4.disabled, .c-btn-border-1x.c-btn-yellow-4.disabled:hover, .c-btn-border-1x.c-btn-yellow-4.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-yellow-4.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-yellow-4.disabled:active, .c-btn-border-1x.c-btn-yellow-4.disabled.active, .c-btn-border-1x.c-btn-yellow-4[disabled], .c-btn-border-1x.c-btn-yellow-4[disabled]:hover, .c-btn-border-1x.c-btn-yellow-4[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-yellow-4[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-yellow-4[disabled]:active, .c-btn-border-1x.c-btn-yellow-4[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-4,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-4:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-4:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-yellow-4.active {
    background: none;
    border-color: #fff200; }
  .c-btn-border-1x.c-btn-yellow-4 .badge {
    color: none;
    background: #fff200; }

.c-btn-border-1x.c-btn-blue {
  border-color: #3498DB;
  color: #3498DB;
  background: none;
  border-color: #3498DB; }
  .c-btn-border-1x.c-btn-blue.c-btn-border-opacity-04 {
    border-color: rgba(52, 152, 219, 0.4); }
  .c-btn-border-1x.c-btn-blue.btn-no-focus:focus, .c-btn-border-1x.c-btn-blue.btn-no-focus.focus {
    color: #3498DB;
    background: none;
    border-color: #3498DB; }
  .c-btn-border-1x.c-btn-blue.btn-no-focus:hover, .c-btn-border-1x.c-btn-blue:hover, .c-btn-border-1x.c-btn-blue.btn-no-focus:active, .c-btn-border-1x.c-btn-blue:active, .c-btn-border-1x.c-btn-blue.active,
  .open > .c-btn-border-1x.c-btn-blue.dropdown-toggle {
    color: #ffffff;
    background: #3498DB;
    border-color: #3498DB; }
  .c-btn-border-1x.c-btn-blue:active, .c-btn-border-1x.c-btn-blue.active,
  .open > .c-btn-border-1x.c-btn-blue.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-blue.disabled, .c-btn-border-1x.c-btn-blue.disabled:hover, .c-btn-border-1x.c-btn-blue.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-blue.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-blue.disabled:active, .c-btn-border-1x.c-btn-blue.disabled.active, .c-btn-border-1x.c-btn-blue[disabled], .c-btn-border-1x.c-btn-blue[disabled]:hover, .c-btn-border-1x.c-btn-blue[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-blue[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-blue[disabled]:active, .c-btn-border-1x.c-btn-blue[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue.active {
    background: none;
    border-color: #3498DB; }
  .c-btn-border-1x.c-btn-blue .badge {
    color: none;
    background: #3498DB; }

.c-btn-border-1x.c-btn-blue-1 {
  border-color: #5e9cd1;
  color: #5e9cd1;
  background: none;
  border-color: #5e9cd1; }
  .c-btn-border-1x.c-btn-blue-1.c-btn-border-opacity-04 {
    border-color: rgba(94, 156, 209, 0.4); }
  .c-btn-border-1x.c-btn-blue-1.btn-no-focus:focus, .c-btn-border-1x.c-btn-blue-1.btn-no-focus.focus {
    color: #5e9cd1;
    background: none;
    border-color: #5e9cd1; }
  .c-btn-border-1x.c-btn-blue-1.btn-no-focus:hover, .c-btn-border-1x.c-btn-blue-1:hover, .c-btn-border-1x.c-btn-blue-1.btn-no-focus:active, .c-btn-border-1x.c-btn-blue-1:active, .c-btn-border-1x.c-btn-blue-1.active,
  .open > .c-btn-border-1x.c-btn-blue-1.dropdown-toggle {
    color: #ffffff;
    background: #5e9cd1;
    border-color: #5e9cd1; }
  .c-btn-border-1x.c-btn-blue-1:active, .c-btn-border-1x.c-btn-blue-1.active,
  .open > .c-btn-border-1x.c-btn-blue-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-blue-1.disabled, .c-btn-border-1x.c-btn-blue-1.disabled:hover, .c-btn-border-1x.c-btn-blue-1.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-blue-1.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-blue-1.disabled:active, .c-btn-border-1x.c-btn-blue-1.disabled.active, .c-btn-border-1x.c-btn-blue-1[disabled], .c-btn-border-1x.c-btn-blue-1[disabled]:hover, .c-btn-border-1x.c-btn-blue-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-blue-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-blue-1[disabled]:active, .c-btn-border-1x.c-btn-blue-1[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-1,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-1:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-1:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-1.active {
    background: none;
    border-color: #5e9cd1; }
  .c-btn-border-1x.c-btn-blue-1 .badge {
    color: none;
    background: #5e9cd1; }

.c-btn-border-1x.c-btn-blue-2 {
  border-color: #5893dd;
  color: #5893dd;
  background: none;
  border-color: #5893dd; }
  .c-btn-border-1x.c-btn-blue-2.c-btn-border-opacity-04 {
    border-color: rgba(88, 147, 221, 0.4); }
  .c-btn-border-1x.c-btn-blue-2.btn-no-focus:focus, .c-btn-border-1x.c-btn-blue-2.btn-no-focus.focus {
    color: #5893dd;
    background: none;
    border-color: #5893dd; }
  .c-btn-border-1x.c-btn-blue-2.btn-no-focus:hover, .c-btn-border-1x.c-btn-blue-2:hover, .c-btn-border-1x.c-btn-blue-2.btn-no-focus:active, .c-btn-border-1x.c-btn-blue-2:active, .c-btn-border-1x.c-btn-blue-2.active,
  .open > .c-btn-border-1x.c-btn-blue-2.dropdown-toggle {
    color: #ffffff;
    background: #5893dd;
    border-color: #5893dd; }
  .c-btn-border-1x.c-btn-blue-2:active, .c-btn-border-1x.c-btn-blue-2.active,
  .open > .c-btn-border-1x.c-btn-blue-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-blue-2.disabled, .c-btn-border-1x.c-btn-blue-2.disabled:hover, .c-btn-border-1x.c-btn-blue-2.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-blue-2.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-blue-2.disabled:active, .c-btn-border-1x.c-btn-blue-2.disabled.active, .c-btn-border-1x.c-btn-blue-2[disabled], .c-btn-border-1x.c-btn-blue-2[disabled]:hover, .c-btn-border-1x.c-btn-blue-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-blue-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-blue-2[disabled]:active, .c-btn-border-1x.c-btn-blue-2[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-2,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-2:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-2:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-2.active {
    background: none;
    border-color: #5893dd; }
  .c-btn-border-1x.c-btn-blue-2 .badge {
    color: none;
    background: #5893dd; }

.c-btn-border-1x.c-btn-blue-3 {
  border-color: #57bfe1;
  color: #57bfe1;
  background: none;
  border-color: #57bfe1; }
  .c-btn-border-1x.c-btn-blue-3.c-btn-border-opacity-04 {
    border-color: rgba(87, 191, 225, 0.4); }
  .c-btn-border-1x.c-btn-blue-3.btn-no-focus:focus, .c-btn-border-1x.c-btn-blue-3.btn-no-focus.focus {
    color: #57bfe1;
    background: none;
    border-color: #57bfe1; }
  .c-btn-border-1x.c-btn-blue-3.btn-no-focus:hover, .c-btn-border-1x.c-btn-blue-3:hover, .c-btn-border-1x.c-btn-blue-3.btn-no-focus:active, .c-btn-border-1x.c-btn-blue-3:active, .c-btn-border-1x.c-btn-blue-3.active,
  .open > .c-btn-border-1x.c-btn-blue-3.dropdown-toggle {
    color: #ffffff;
    background: #57bfe1;
    border-color: #57bfe1; }
  .c-btn-border-1x.c-btn-blue-3:active, .c-btn-border-1x.c-btn-blue-3.active,
  .open > .c-btn-border-1x.c-btn-blue-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-blue-3.disabled, .c-btn-border-1x.c-btn-blue-3.disabled:hover, .c-btn-border-1x.c-btn-blue-3.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-blue-3.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-blue-3.disabled:active, .c-btn-border-1x.c-btn-blue-3.disabled.active, .c-btn-border-1x.c-btn-blue-3[disabled], .c-btn-border-1x.c-btn-blue-3[disabled]:hover, .c-btn-border-1x.c-btn-blue-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-blue-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-blue-3[disabled]:active, .c-btn-border-1x.c-btn-blue-3[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-3,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-3:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-3:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-3.active {
    background: none;
    border-color: #57bfe1; }
  .c-btn-border-1x.c-btn-blue-3 .badge {
    color: none;
    background: #57bfe1; }

.c-btn-border-1x.c-btn-blue-4 {
  border-color: #428de4;
  color: #428de4;
  background: none;
  border-color: #428de4; }
  .c-btn-border-1x.c-btn-blue-4.c-btn-border-opacity-04 {
    border-color: rgba(66, 141, 228, 0.4); }
  .c-btn-border-1x.c-btn-blue-4.btn-no-focus:focus, .c-btn-border-1x.c-btn-blue-4.btn-no-focus.focus {
    color: #428de4;
    background: none;
    border-color: #428de4; }
  .c-btn-border-1x.c-btn-blue-4.btn-no-focus:hover, .c-btn-border-1x.c-btn-blue-4:hover, .c-btn-border-1x.c-btn-blue-4.btn-no-focus:active, .c-btn-border-1x.c-btn-blue-4:active, .c-btn-border-1x.c-btn-blue-4.active,
  .open > .c-btn-border-1x.c-btn-blue-4.dropdown-toggle {
    color: #ffffff;
    background: #428de4;
    border-color: #428de4; }
  .c-btn-border-1x.c-btn-blue-4:active, .c-btn-border-1x.c-btn-blue-4.active,
  .open > .c-btn-border-1x.c-btn-blue-4.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-blue-4.disabled, .c-btn-border-1x.c-btn-blue-4.disabled:hover, .c-btn-border-1x.c-btn-blue-4.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-blue-4.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-blue-4.disabled:active, .c-btn-border-1x.c-btn-blue-4.disabled.active, .c-btn-border-1x.c-btn-blue-4[disabled], .c-btn-border-1x.c-btn-blue-4[disabled]:hover, .c-btn-border-1x.c-btn-blue-4[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-blue-4[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-blue-4[disabled]:active, .c-btn-border-1x.c-btn-blue-4[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-4,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-4:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-4:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-blue-4.active {
    background: none;
    border-color: #428de4; }
  .c-btn-border-1x.c-btn-blue-4 .badge {
    color: none;
    background: #428de4; }

.c-btn-border-1x.c-btn-purple {
  border-color: #b771b0;
  color: #b771b0;
  background: none;
  border-color: #b771b0; }
  .c-btn-border-1x.c-btn-purple.c-btn-border-opacity-04 {
    border-color: rgba(183, 113, 176, 0.4); }
  .c-btn-border-1x.c-btn-purple.btn-no-focus:focus, .c-btn-border-1x.c-btn-purple.btn-no-focus.focus {
    color: #b771b0;
    background: none;
    border-color: #b771b0; }
  .c-btn-border-1x.c-btn-purple.btn-no-focus:hover, .c-btn-border-1x.c-btn-purple:hover, .c-btn-border-1x.c-btn-purple.btn-no-focus:active, .c-btn-border-1x.c-btn-purple:active, .c-btn-border-1x.c-btn-purple.active,
  .open > .c-btn-border-1x.c-btn-purple.dropdown-toggle {
    color: #ffffff;
    background: #b771b0;
    border-color: #b771b0; }
  .c-btn-border-1x.c-btn-purple:active, .c-btn-border-1x.c-btn-purple.active,
  .open > .c-btn-border-1x.c-btn-purple.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-purple.disabled, .c-btn-border-1x.c-btn-purple.disabled:hover, .c-btn-border-1x.c-btn-purple.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-purple.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-purple.disabled:active, .c-btn-border-1x.c-btn-purple.disabled.active, .c-btn-border-1x.c-btn-purple[disabled], .c-btn-border-1x.c-btn-purple[disabled]:hover, .c-btn-border-1x.c-btn-purple[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-purple[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-purple[disabled]:active, .c-btn-border-1x.c-btn-purple[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple.active {
    background: none;
    border-color: #b771b0; }
  .c-btn-border-1x.c-btn-purple .badge {
    color: none;
    background: #b771b0; }

.c-btn-border-1x.c-btn-purple-1 {
  border-color: #a962bb;
  color: #a962bb;
  background: none;
  border-color: #a962bb; }
  .c-btn-border-1x.c-btn-purple-1.c-btn-border-opacity-04 {
    border-color: rgba(169, 98, 187, 0.4); }
  .c-btn-border-1x.c-btn-purple-1.btn-no-focus:focus, .c-btn-border-1x.c-btn-purple-1.btn-no-focus.focus {
    color: #a962bb;
    background: none;
    border-color: #a962bb; }
  .c-btn-border-1x.c-btn-purple-1.btn-no-focus:hover, .c-btn-border-1x.c-btn-purple-1:hover, .c-btn-border-1x.c-btn-purple-1.btn-no-focus:active, .c-btn-border-1x.c-btn-purple-1:active, .c-btn-border-1x.c-btn-purple-1.active,
  .open > .c-btn-border-1x.c-btn-purple-1.dropdown-toggle {
    color: #ffffff;
    background: #a962bb;
    border-color: #a962bb; }
  .c-btn-border-1x.c-btn-purple-1:active, .c-btn-border-1x.c-btn-purple-1.active,
  .open > .c-btn-border-1x.c-btn-purple-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-purple-1.disabled, .c-btn-border-1x.c-btn-purple-1.disabled:hover, .c-btn-border-1x.c-btn-purple-1.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-purple-1.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-purple-1.disabled:active, .c-btn-border-1x.c-btn-purple-1.disabled.active, .c-btn-border-1x.c-btn-purple-1[disabled], .c-btn-border-1x.c-btn-purple-1[disabled]:hover, .c-btn-border-1x.c-btn-purple-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-purple-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-purple-1[disabled]:active, .c-btn-border-1x.c-btn-purple-1[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-1,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-1:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-1:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-1.active {
    background: none;
    border-color: #a962bb; }
  .c-btn-border-1x.c-btn-purple-1 .badge {
    color: none;
    background: #a962bb; }

.c-btn-border-1x.c-btn-purple-2 {
  border-color: #aa67a3;
  color: #aa67a3;
  background: none;
  border-color: #aa67a3; }
  .c-btn-border-1x.c-btn-purple-2.c-btn-border-opacity-04 {
    border-color: rgba(170, 103, 163, 0.4); }
  .c-btn-border-1x.c-btn-purple-2.btn-no-focus:focus, .c-btn-border-1x.c-btn-purple-2.btn-no-focus.focus {
    color: #aa67a3;
    background: none;
    border-color: #aa67a3; }
  .c-btn-border-1x.c-btn-purple-2.btn-no-focus:hover, .c-btn-border-1x.c-btn-purple-2:hover, .c-btn-border-1x.c-btn-purple-2.btn-no-focus:active, .c-btn-border-1x.c-btn-purple-2:active, .c-btn-border-1x.c-btn-purple-2.active,
  .open > .c-btn-border-1x.c-btn-purple-2.dropdown-toggle {
    color: #ffffff;
    background: #aa67a3;
    border-color: #aa67a3; }
  .c-btn-border-1x.c-btn-purple-2:active, .c-btn-border-1x.c-btn-purple-2.active,
  .open > .c-btn-border-1x.c-btn-purple-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-purple-2.disabled, .c-btn-border-1x.c-btn-purple-2.disabled:hover, .c-btn-border-1x.c-btn-purple-2.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-purple-2.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-purple-2.disabled:active, .c-btn-border-1x.c-btn-purple-2.disabled.active, .c-btn-border-1x.c-btn-purple-2[disabled], .c-btn-border-1x.c-btn-purple-2[disabled]:hover, .c-btn-border-1x.c-btn-purple-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-purple-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-purple-2[disabled]:active, .c-btn-border-1x.c-btn-purple-2[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-2,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-2:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-2:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-2.active {
    background: none;
    border-color: #aa67a3; }
  .c-btn-border-1x.c-btn-purple-2 .badge {
    color: none;
    background: #aa67a3; }

.c-btn-border-1x.c-btn-purple-3 {
  border-color: #ac3773;
  color: #ac3773;
  background: none;
  border-color: #ac3773; }
  .c-btn-border-1x.c-btn-purple-3.c-btn-border-opacity-04 {
    border-color: rgba(172, 55, 115, 0.4); }
  .c-btn-border-1x.c-btn-purple-3.btn-no-focus:focus, .c-btn-border-1x.c-btn-purple-3.btn-no-focus.focus {
    color: #ac3773;
    background: none;
    border-color: #ac3773; }
  .c-btn-border-1x.c-btn-purple-3.btn-no-focus:hover, .c-btn-border-1x.c-btn-purple-3:hover, .c-btn-border-1x.c-btn-purple-3.btn-no-focus:active, .c-btn-border-1x.c-btn-purple-3:active, .c-btn-border-1x.c-btn-purple-3.active,
  .open > .c-btn-border-1x.c-btn-purple-3.dropdown-toggle {
    color: #ffffff;
    background: #ac3773;
    border-color: #ac3773; }
  .c-btn-border-1x.c-btn-purple-3:active, .c-btn-border-1x.c-btn-purple-3.active,
  .open > .c-btn-border-1x.c-btn-purple-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-purple-3.disabled, .c-btn-border-1x.c-btn-purple-3.disabled:hover, .c-btn-border-1x.c-btn-purple-3.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-purple-3.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-purple-3.disabled:active, .c-btn-border-1x.c-btn-purple-3.disabled.active, .c-btn-border-1x.c-btn-purple-3[disabled], .c-btn-border-1x.c-btn-purple-3[disabled]:hover, .c-btn-border-1x.c-btn-purple-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-purple-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-purple-3[disabled]:active, .c-btn-border-1x.c-btn-purple-3[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-3,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-3:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-3:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-purple-3.active {
    background: none;
    border-color: #ac3773; }
  .c-btn-border-1x.c-btn-purple-3 .badge {
    color: none;
    background: #ac3773; }

.c-btn-border-1x.c-btn-brown {
  border-color: #8a7f68;
  color: #8a7f68;
  background: none;
  border-color: #8a7f68; }
  .c-btn-border-1x.c-btn-brown.c-btn-border-opacity-04 {
    border-color: rgba(138, 127, 104, 0.4); }
  .c-btn-border-1x.c-btn-brown.btn-no-focus:focus, .c-btn-border-1x.c-btn-brown.btn-no-focus.focus {
    color: #8a7f68;
    background: none;
    border-color: #8a7f68; }
  .c-btn-border-1x.c-btn-brown.btn-no-focus:hover, .c-btn-border-1x.c-btn-brown:hover, .c-btn-border-1x.c-btn-brown.btn-no-focus:active, .c-btn-border-1x.c-btn-brown:active, .c-btn-border-1x.c-btn-brown.active,
  .open > .c-btn-border-1x.c-btn-brown.dropdown-toggle {
    color: #ffffff;
    background: #8a7f68;
    border-color: #8a7f68; }
  .c-btn-border-1x.c-btn-brown:active, .c-btn-border-1x.c-btn-brown.active,
  .open > .c-btn-border-1x.c-btn-brown.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-brown.disabled, .c-btn-border-1x.c-btn-brown.disabled:hover, .c-btn-border-1x.c-btn-brown.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-brown.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-brown.disabled:active, .c-btn-border-1x.c-btn-brown.disabled.active, .c-btn-border-1x.c-btn-brown[disabled], .c-btn-border-1x.c-btn-brown[disabled]:hover, .c-btn-border-1x.c-btn-brown[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-brown[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-brown[disabled]:active, .c-btn-border-1x.c-btn-brown[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown.active {
    background: none;
    border-color: #8a7f68; }
  .c-btn-border-1x.c-btn-brown .badge {
    color: none;
    background: #8a7f68; }

.c-btn-border-1x.c-btn-brown-1 {
  border-color: #685e47;
  color: #685e47;
  background: none;
  border-color: #685e47; }
  .c-btn-border-1x.c-btn-brown-1.c-btn-border-opacity-04 {
    border-color: rgba(104, 94, 71, 0.4); }
  .c-btn-border-1x.c-btn-brown-1.btn-no-focus:focus, .c-btn-border-1x.c-btn-brown-1.btn-no-focus.focus {
    color: #685e47;
    background: none;
    border-color: #685e47; }
  .c-btn-border-1x.c-btn-brown-1.btn-no-focus:hover, .c-btn-border-1x.c-btn-brown-1:hover, .c-btn-border-1x.c-btn-brown-1.btn-no-focus:active, .c-btn-border-1x.c-btn-brown-1:active, .c-btn-border-1x.c-btn-brown-1.active,
  .open > .c-btn-border-1x.c-btn-brown-1.dropdown-toggle {
    color: #ffffff;
    background: #685e47;
    border-color: #685e47; }
  .c-btn-border-1x.c-btn-brown-1:active, .c-btn-border-1x.c-btn-brown-1.active,
  .open > .c-btn-border-1x.c-btn-brown-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-brown-1.disabled, .c-btn-border-1x.c-btn-brown-1.disabled:hover, .c-btn-border-1x.c-btn-brown-1.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-brown-1.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-brown-1.disabled:active, .c-btn-border-1x.c-btn-brown-1.disabled.active, .c-btn-border-1x.c-btn-brown-1[disabled], .c-btn-border-1x.c-btn-brown-1[disabled]:hover, .c-btn-border-1x.c-btn-brown-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-brown-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-brown-1[disabled]:active, .c-btn-border-1x.c-btn-brown-1[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-1,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-1:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-1:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-1.active {
    background: none;
    border-color: #685e47; }
  .c-btn-border-1x.c-btn-brown-1 .badge {
    color: none;
    background: #685e47; }

.c-btn-border-1x.c-btn-brown-2 {
  border-color: #7a6a61;
  color: #7a6a61;
  background: none;
  border-color: #7a6a61; }
  .c-btn-border-1x.c-btn-brown-2.c-btn-border-opacity-04 {
    border-color: rgba(122, 106, 97, 0.4); }
  .c-btn-border-1x.c-btn-brown-2.btn-no-focus:focus, .c-btn-border-1x.c-btn-brown-2.btn-no-focus.focus {
    color: #7a6a61;
    background: none;
    border-color: #7a6a61; }
  .c-btn-border-1x.c-btn-brown-2.btn-no-focus:hover, .c-btn-border-1x.c-btn-brown-2:hover, .c-btn-border-1x.c-btn-brown-2.btn-no-focus:active, .c-btn-border-1x.c-btn-brown-2:active, .c-btn-border-1x.c-btn-brown-2.active,
  .open > .c-btn-border-1x.c-btn-brown-2.dropdown-toggle {
    color: #ffffff;
    background: #7a6a61;
    border-color: #7a6a61; }
  .c-btn-border-1x.c-btn-brown-2:active, .c-btn-border-1x.c-btn-brown-2.active,
  .open > .c-btn-border-1x.c-btn-brown-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-brown-2.disabled, .c-btn-border-1x.c-btn-brown-2.disabled:hover, .c-btn-border-1x.c-btn-brown-2.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-brown-2.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-brown-2.disabled:active, .c-btn-border-1x.c-btn-brown-2.disabled.active, .c-btn-border-1x.c-btn-brown-2[disabled], .c-btn-border-1x.c-btn-brown-2[disabled]:hover, .c-btn-border-1x.c-btn-brown-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-brown-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-brown-2[disabled]:active, .c-btn-border-1x.c-btn-brown-2[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-2,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-2:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-2:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-2.active {
    background: none;
    border-color: #7a6a61; }
  .c-btn-border-1x.c-btn-brown-2 .badge {
    color: none;
    background: #7a6a61; }

.c-btn-border-1x.c-btn-brown-3 {
  border-color: #9d8b81;
  color: #9d8b81;
  background: none;
  border-color: #9d8b81; }
  .c-btn-border-1x.c-btn-brown-3.c-btn-border-opacity-04 {
    border-color: rgba(157, 139, 129, 0.4); }
  .c-btn-border-1x.c-btn-brown-3.btn-no-focus:focus, .c-btn-border-1x.c-btn-brown-3.btn-no-focus.focus {
    color: #9d8b81;
    background: none;
    border-color: #9d8b81; }
  .c-btn-border-1x.c-btn-brown-3.btn-no-focus:hover, .c-btn-border-1x.c-btn-brown-3:hover, .c-btn-border-1x.c-btn-brown-3.btn-no-focus:active, .c-btn-border-1x.c-btn-brown-3:active, .c-btn-border-1x.c-btn-brown-3.active,
  .open > .c-btn-border-1x.c-btn-brown-3.dropdown-toggle {
    color: #ffffff;
    background: #9d8b81;
    border-color: #9d8b81; }
  .c-btn-border-1x.c-btn-brown-3:active, .c-btn-border-1x.c-btn-brown-3.active,
  .open > .c-btn-border-1x.c-btn-brown-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-brown-3.disabled, .c-btn-border-1x.c-btn-brown-3.disabled:hover, .c-btn-border-1x.c-btn-brown-3.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-brown-3.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-brown-3.disabled:active, .c-btn-border-1x.c-btn-brown-3.disabled.active, .c-btn-border-1x.c-btn-brown-3[disabled], .c-btn-border-1x.c-btn-brown-3[disabled]:hover, .c-btn-border-1x.c-btn-brown-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-brown-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-brown-3[disabled]:active, .c-btn-border-1x.c-btn-brown-3[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-3,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-3:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-3:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-brown-3.active {
    background: none;
    border-color: #9d8b81; }
  .c-btn-border-1x.c-btn-brown-3 .badge {
    color: none;
    background: #9d8b81; }

.c-btn-border-1x.c-btn-dark {
  border-color: #2f353b;
  color: #2f353b;
  background: none;
  border-color: #2f353b; }
  .c-btn-border-1x.c-btn-dark.c-btn-border-opacity-04 {
    border-color: rgba(47, 53, 59, 0.4); }
  .c-btn-border-1x.c-btn-dark.btn-no-focus:focus, .c-btn-border-1x.c-btn-dark.btn-no-focus.focus {
    color: #2f353b;
    background: none;
    border-color: #2f353b; }
  .c-btn-border-1x.c-btn-dark.btn-no-focus:hover, .c-btn-border-1x.c-btn-dark:hover, .c-btn-border-1x.c-btn-dark.btn-no-focus:active, .c-btn-border-1x.c-btn-dark:active, .c-btn-border-1x.c-btn-dark.active,
  .open > .c-btn-border-1x.c-btn-dark.dropdown-toggle {
    color: #ffffff;
    background: #2f353b;
    border-color: #2f353b; }
  .c-btn-border-1x.c-btn-dark:active, .c-btn-border-1x.c-btn-dark.active,
  .open > .c-btn-border-1x.c-btn-dark.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-dark.disabled, .c-btn-border-1x.c-btn-dark.disabled:hover, .c-btn-border-1x.c-btn-dark.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-dark.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-dark.disabled:active, .c-btn-border-1x.c-btn-dark.disabled.active, .c-btn-border-1x.c-btn-dark[disabled], .c-btn-border-1x.c-btn-dark[disabled]:hover, .c-btn-border-1x.c-btn-dark[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-dark[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-dark[disabled]:active, .c-btn-border-1x.c-btn-dark[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark.active {
    background: none;
    border-color: #2f353b; }
  .c-btn-border-1x.c-btn-dark .badge {
    color: none;
    background: #2f353b; }

.c-btn-border-1x.c-btn-dark-1 {
  border-color: #525e64;
  color: #525e64;
  background: none;
  border-color: #525e64; }
  .c-btn-border-1x.c-btn-dark-1.c-btn-border-opacity-04 {
    border-color: rgba(82, 94, 100, 0.4); }
  .c-btn-border-1x.c-btn-dark-1.btn-no-focus:focus, .c-btn-border-1x.c-btn-dark-1.btn-no-focus.focus {
    color: #525e64;
    background: none;
    border-color: #525e64; }
  .c-btn-border-1x.c-btn-dark-1.btn-no-focus:hover, .c-btn-border-1x.c-btn-dark-1:hover, .c-btn-border-1x.c-btn-dark-1.btn-no-focus:active, .c-btn-border-1x.c-btn-dark-1:active, .c-btn-border-1x.c-btn-dark-1.active,
  .open > .c-btn-border-1x.c-btn-dark-1.dropdown-toggle {
    color: #ffffff;
    background: #525e64;
    border-color: #525e64; }
  .c-btn-border-1x.c-btn-dark-1:active, .c-btn-border-1x.c-btn-dark-1.active,
  .open > .c-btn-border-1x.c-btn-dark-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-dark-1.disabled, .c-btn-border-1x.c-btn-dark-1.disabled:hover, .c-btn-border-1x.c-btn-dark-1.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-dark-1.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-dark-1.disabled:active, .c-btn-border-1x.c-btn-dark-1.disabled.active, .c-btn-border-1x.c-btn-dark-1[disabled], .c-btn-border-1x.c-btn-dark-1[disabled]:hover, .c-btn-border-1x.c-btn-dark-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-dark-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-dark-1[disabled]:active, .c-btn-border-1x.c-btn-dark-1[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-1,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-1:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-1:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-1.active {
    background: none;
    border-color: #525e64; }
  .c-btn-border-1x.c-btn-dark-1 .badge {
    color: none;
    background: #525e64; }

.c-btn-border-1x.c-btn-dark-2 {
  border-color: #31383c;
  color: #31383c;
  background: none;
  border-color: #31383c; }
  .c-btn-border-1x.c-btn-dark-2.c-btn-border-opacity-04 {
    border-color: rgba(49, 56, 60, 0.4); }
  .c-btn-border-1x.c-btn-dark-2.btn-no-focus:focus, .c-btn-border-1x.c-btn-dark-2.btn-no-focus.focus {
    color: #31383c;
    background: none;
    border-color: #31383c; }
  .c-btn-border-1x.c-btn-dark-2.btn-no-focus:hover, .c-btn-border-1x.c-btn-dark-2:hover, .c-btn-border-1x.c-btn-dark-2.btn-no-focus:active, .c-btn-border-1x.c-btn-dark-2:active, .c-btn-border-1x.c-btn-dark-2.active,
  .open > .c-btn-border-1x.c-btn-dark-2.dropdown-toggle {
    color: #ffffff;
    background: #31383c;
    border-color: #31383c; }
  .c-btn-border-1x.c-btn-dark-2:active, .c-btn-border-1x.c-btn-dark-2.active,
  .open > .c-btn-border-1x.c-btn-dark-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-dark-2.disabled, .c-btn-border-1x.c-btn-dark-2.disabled:hover, .c-btn-border-1x.c-btn-dark-2.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-dark-2.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-dark-2.disabled:active, .c-btn-border-1x.c-btn-dark-2.disabled.active, .c-btn-border-1x.c-btn-dark-2[disabled], .c-btn-border-1x.c-btn-dark-2[disabled]:hover, .c-btn-border-1x.c-btn-dark-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-dark-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-dark-2[disabled]:active, .c-btn-border-1x.c-btn-dark-2[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-2,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-2:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-2:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-2.active {
    background: none;
    border-color: #31383c; }
  .c-btn-border-1x.c-btn-dark-2 .badge {
    color: none;
    background: #31383c; }

.c-btn-border-1x.c-btn-dark-3 {
  border-color: #41515b;
  color: #41515b;
  background: none;
  border-color: #41515b; }
  .c-btn-border-1x.c-btn-dark-3.c-btn-border-opacity-04 {
    border-color: rgba(65, 81, 91, 0.4); }
  .c-btn-border-1x.c-btn-dark-3.btn-no-focus:focus, .c-btn-border-1x.c-btn-dark-3.btn-no-focus.focus {
    color: #41515b;
    background: none;
    border-color: #41515b; }
  .c-btn-border-1x.c-btn-dark-3.btn-no-focus:hover, .c-btn-border-1x.c-btn-dark-3:hover, .c-btn-border-1x.c-btn-dark-3.btn-no-focus:active, .c-btn-border-1x.c-btn-dark-3:active, .c-btn-border-1x.c-btn-dark-3.active,
  .open > .c-btn-border-1x.c-btn-dark-3.dropdown-toggle {
    color: #ffffff;
    background: #41515b;
    border-color: #41515b; }
  .c-btn-border-1x.c-btn-dark-3:active, .c-btn-border-1x.c-btn-dark-3.active,
  .open > .c-btn-border-1x.c-btn-dark-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-dark-3.disabled, .c-btn-border-1x.c-btn-dark-3.disabled:hover, .c-btn-border-1x.c-btn-dark-3.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-dark-3.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-dark-3.disabled:active, .c-btn-border-1x.c-btn-dark-3.disabled.active, .c-btn-border-1x.c-btn-dark-3[disabled], .c-btn-border-1x.c-btn-dark-3[disabled]:hover, .c-btn-border-1x.c-btn-dark-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-dark-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-dark-3[disabled]:active, .c-btn-border-1x.c-btn-dark-3[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-3,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-3:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-3:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-3.active {
    background: none;
    border-color: #41515b; }
  .c-btn-border-1x.c-btn-dark-3 .badge {
    color: none;
    background: #41515b; }

.c-btn-border-1x.c-btn-dark-4 {
  border-color: #24272b;
  color: #24272b;
  background: none;
  border-color: #24272b; }
  .c-btn-border-1x.c-btn-dark-4.c-btn-border-opacity-04 {
    border-color: rgba(36, 39, 43, 0.4); }
  .c-btn-border-1x.c-btn-dark-4.btn-no-focus:focus, .c-btn-border-1x.c-btn-dark-4.btn-no-focus.focus {
    color: #24272b;
    background: none;
    border-color: #24272b; }
  .c-btn-border-1x.c-btn-dark-4.btn-no-focus:hover, .c-btn-border-1x.c-btn-dark-4:hover, .c-btn-border-1x.c-btn-dark-4.btn-no-focus:active, .c-btn-border-1x.c-btn-dark-4:active, .c-btn-border-1x.c-btn-dark-4.active,
  .open > .c-btn-border-1x.c-btn-dark-4.dropdown-toggle {
    color: #ffffff;
    background: #24272b;
    border-color: #24272b; }
  .c-btn-border-1x.c-btn-dark-4:active, .c-btn-border-1x.c-btn-dark-4.active,
  .open > .c-btn-border-1x.c-btn-dark-4.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-dark-4.disabled, .c-btn-border-1x.c-btn-dark-4.disabled:hover, .c-btn-border-1x.c-btn-dark-4.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-dark-4.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-dark-4.disabled:active, .c-btn-border-1x.c-btn-dark-4.disabled.active, .c-btn-border-1x.c-btn-dark-4[disabled], .c-btn-border-1x.c-btn-dark-4[disabled]:hover, .c-btn-border-1x.c-btn-dark-4[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-dark-4[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-dark-4[disabled]:active, .c-btn-border-1x.c-btn-dark-4[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-4,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-4:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-4:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-dark-4.active {
    background: none;
    border-color: #24272b; }
  .c-btn-border-1x.c-btn-dark-4 .badge {
    color: none;
    background: #24272b; }

.c-btn-border-1x.c-btn-grey {
  border-color: #eeeeee;
  color: #eeeeee;
  background: none;
  border-color: #eeeeee; }
  .c-btn-border-1x.c-btn-grey.c-btn-border-opacity-04 {
    border-color: rgba(238, 238, 238, 0.4); }
  .c-btn-border-1x.c-btn-grey.btn-no-focus:focus, .c-btn-border-1x.c-btn-grey.btn-no-focus.focus {
    color: #eeeeee;
    background: none;
    border-color: #eeeeee; }
  .c-btn-border-1x.c-btn-grey.btn-no-focus:hover, .c-btn-border-1x.c-btn-grey:hover, .c-btn-border-1x.c-btn-grey.btn-no-focus:active, .c-btn-border-1x.c-btn-grey:active, .c-btn-border-1x.c-btn-grey.active,
  .open > .c-btn-border-1x.c-btn-grey.dropdown-toggle {
    color: #6f6f6f;
    background: #eeeeee;
    border-color: #eeeeee; }
  .c-btn-border-1x.c-btn-grey:active, .c-btn-border-1x.c-btn-grey.active,
  .open > .c-btn-border-1x.c-btn-grey.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-grey.disabled, .c-btn-border-1x.c-btn-grey.disabled:hover, .c-btn-border-1x.c-btn-grey.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-grey.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-grey.disabled:active, .c-btn-border-1x.c-btn-grey.disabled.active, .c-btn-border-1x.c-btn-grey[disabled], .c-btn-border-1x.c-btn-grey[disabled]:hover, .c-btn-border-1x.c-btn-grey[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-grey[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-grey[disabled]:active, .c-btn-border-1x.c-btn-grey[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey.active {
    background: none;
    border-color: #eeeeee; }
  .c-btn-border-1x.c-btn-grey .badge {
    color: none;
    background: #eeeeee; }

.c-btn-border-1x.c-btn-grey-1 {
  border-color: #f7f7f7;
  color: #f7f7f7;
  background: none;
  border-color: #f7f7f7; }
  .c-btn-border-1x.c-btn-grey-1.c-btn-border-opacity-04 {
    border-color: rgba(247, 247, 247, 0.4); }
  .c-btn-border-1x.c-btn-grey-1.btn-no-focus:focus, .c-btn-border-1x.c-btn-grey-1.btn-no-focus.focus {
    color: #f7f7f7;
    background: none;
    border-color: #f7f7f7; }
  .c-btn-border-1x.c-btn-grey-1.btn-no-focus:hover, .c-btn-border-1x.c-btn-grey-1:hover, .c-btn-border-1x.c-btn-grey-1.btn-no-focus:active, .c-btn-border-1x.c-btn-grey-1:active, .c-btn-border-1x.c-btn-grey-1.active,
  .open > .c-btn-border-1x.c-btn-grey-1.dropdown-toggle {
    color: #787878;
    background: #f7f7f7;
    border-color: #f7f7f7; }
  .c-btn-border-1x.c-btn-grey-1:active, .c-btn-border-1x.c-btn-grey-1.active,
  .open > .c-btn-border-1x.c-btn-grey-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-grey-1.disabled, .c-btn-border-1x.c-btn-grey-1.disabled:hover, .c-btn-border-1x.c-btn-grey-1.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-grey-1.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-grey-1.disabled:active, .c-btn-border-1x.c-btn-grey-1.disabled.active, .c-btn-border-1x.c-btn-grey-1[disabled], .c-btn-border-1x.c-btn-grey-1[disabled]:hover, .c-btn-border-1x.c-btn-grey-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-grey-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-grey-1[disabled]:active, .c-btn-border-1x.c-btn-grey-1[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-1,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-1:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-1:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-1.active {
    background: none;
    border-color: #f7f7f7; }
  .c-btn-border-1x.c-btn-grey-1 .badge {
    color: none;
    background: #f7f7f7; }

.c-btn-border-1x.c-btn-grey-2 {
  border-color: #677083;
  color: #677083;
  background: none;
  border-color: #677083; }
  .c-btn-border-1x.c-btn-grey-2.c-btn-border-opacity-04 {
    border-color: rgba(103, 112, 131, 0.4); }
  .c-btn-border-1x.c-btn-grey-2.btn-no-focus:focus, .c-btn-border-1x.c-btn-grey-2.btn-no-focus.focus {
    color: #677083;
    background: none;
    border-color: #677083; }
  .c-btn-border-1x.c-btn-grey-2.btn-no-focus:hover, .c-btn-border-1x.c-btn-grey-2:hover, .c-btn-border-1x.c-btn-grey-2.btn-no-focus:active, .c-btn-border-1x.c-btn-grey-2:active, .c-btn-border-1x.c-btn-grey-2.active,
  .open > .c-btn-border-1x.c-btn-grey-2.dropdown-toggle {
    color: #ffffff;
    background: #677083;
    border-color: #677083; }
  .c-btn-border-1x.c-btn-grey-2:active, .c-btn-border-1x.c-btn-grey-2.active,
  .open > .c-btn-border-1x.c-btn-grey-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-grey-2.disabled, .c-btn-border-1x.c-btn-grey-2.disabled:hover, .c-btn-border-1x.c-btn-grey-2.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-grey-2.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-grey-2.disabled:active, .c-btn-border-1x.c-btn-grey-2.disabled.active, .c-btn-border-1x.c-btn-grey-2[disabled], .c-btn-border-1x.c-btn-grey-2[disabled]:hover, .c-btn-border-1x.c-btn-grey-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-grey-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-grey-2[disabled]:active, .c-btn-border-1x.c-btn-grey-2[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-2,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-2:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-2:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-2.active {
    background: none;
    border-color: #677083; }
  .c-btn-border-1x.c-btn-grey-2 .badge {
    color: none;
    background: #677083; }

.c-btn-border-1x.c-btn-grey-3 {
  border-color: #7f8c97;
  color: #7f8c97;
  background: none;
  border-color: #7f8c97; }
  .c-btn-border-1x.c-btn-grey-3.c-btn-border-opacity-04 {
    border-color: rgba(127, 140, 151, 0.4); }
  .c-btn-border-1x.c-btn-grey-3.btn-no-focus:focus, .c-btn-border-1x.c-btn-grey-3.btn-no-focus.focus {
    color: #7f8c97;
    background: none;
    border-color: #7f8c97; }
  .c-btn-border-1x.c-btn-grey-3.btn-no-focus:hover, .c-btn-border-1x.c-btn-grey-3:hover, .c-btn-border-1x.c-btn-grey-3.btn-no-focus:active, .c-btn-border-1x.c-btn-grey-3:active, .c-btn-border-1x.c-btn-grey-3.active,
  .open > .c-btn-border-1x.c-btn-grey-3.dropdown-toggle {
    color: #ffffff;
    background: #7f8c97;
    border-color: #7f8c97; }
  .c-btn-border-1x.c-btn-grey-3:active, .c-btn-border-1x.c-btn-grey-3.active,
  .open > .c-btn-border-1x.c-btn-grey-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-grey-3.disabled, .c-btn-border-1x.c-btn-grey-3.disabled:hover, .c-btn-border-1x.c-btn-grey-3.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-grey-3.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-grey-3.disabled:active, .c-btn-border-1x.c-btn-grey-3.disabled.active, .c-btn-border-1x.c-btn-grey-3[disabled], .c-btn-border-1x.c-btn-grey-3[disabled]:hover, .c-btn-border-1x.c-btn-grey-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-grey-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-grey-3[disabled]:active, .c-btn-border-1x.c-btn-grey-3[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-3,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-3:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-3:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-3.active {
    background: none;
    border-color: #7f8c97; }
  .c-btn-border-1x.c-btn-grey-3 .badge {
    color: none;
    background: #7f8c97; }

.c-btn-border-1x.c-btn-grey-4 {
  border-color: #a0a6ab;
  color: #a0a6ab;
  background: none;
  border-color: #a0a6ab; }
  .c-btn-border-1x.c-btn-grey-4.c-btn-border-opacity-04 {
    border-color: rgba(160, 166, 171, 0.4); }
  .c-btn-border-1x.c-btn-grey-4.btn-no-focus:focus, .c-btn-border-1x.c-btn-grey-4.btn-no-focus.focus {
    color: #a0a6ab;
    background: none;
    border-color: #a0a6ab; }
  .c-btn-border-1x.c-btn-grey-4.btn-no-focus:hover, .c-btn-border-1x.c-btn-grey-4:hover, .c-btn-border-1x.c-btn-grey-4.btn-no-focus:active, .c-btn-border-1x.c-btn-grey-4:active, .c-btn-border-1x.c-btn-grey-4.active,
  .open > .c-btn-border-1x.c-btn-grey-4.dropdown-toggle {
    color: #ffffff;
    background: #a0a6ab;
    border-color: #a0a6ab; }
  .c-btn-border-1x.c-btn-grey-4:active, .c-btn-border-1x.c-btn-grey-4.active,
  .open > .c-btn-border-1x.c-btn-grey-4.dropdown-toggle {
    background-image: none; }
  .c-btn-border-1x.c-btn-grey-4.disabled, .c-btn-border-1x.c-btn-grey-4.disabled:hover, .c-btn-border-1x.c-btn-grey-4.disabled:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-grey-4.disabled:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-grey-4.disabled:active, .c-btn-border-1x.c-btn-grey-4.disabled.active, .c-btn-border-1x.c-btn-grey-4[disabled], .c-btn-border-1x.c-btn-grey-4[disabled]:hover, .c-btn-border-1x.c-btn-grey-4[disabled]:not(.btn-no-focus):focus, .c-btn-border-1x.c-btn-grey-4[disabled]:not(.btn-no-focus).focus, .c-btn-border-1x.c-btn-grey-4[disabled]:active, .c-btn-border-1x.c-btn-grey-4[disabled].active,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-4,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-4:hover,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-4:active,
  fieldset[disabled] .c-btn-border-1x.c-btn-grey-4.active {
    background: none;
    border-color: #a0a6ab; }
  .c-btn-border-1x.c-btn-grey-4 .badge {
    color: none;
    background: #a0a6ab; }

.c-btn-border-2x.c-btn-white {
  border-color: #FFFFFF;
  color: #FFFFFF;
  background: none;
  border-color: #FFFFFF; }
  .c-btn-border-2x.c-btn-white.btn-no-focus:focus, .c-btn-border-2x.c-btn-white.btn-no-focus.focus {
    color: #FFFFFF;
    background: none;
    border-color: #FFFFFF; }
  .c-btn-border-2x.c-btn-white.btn-no-focus:hover, .c-btn-border-2x.c-btn-white:hover, .c-btn-border-2x.c-btn-white.btn-no-focus:active, .c-btn-border-2x.c-btn-white:active, .c-btn-border-2x.c-btn-white.active,
  .open > .c-btn-border-2x.c-btn-white.dropdown-toggle {
    color: #2f353b;
    background: #FFFFFF;
    border-color: #FFFFFF; }
  .c-btn-border-2x.c-btn-white:active, .c-btn-border-2x.c-btn-white.active,
  .open > .c-btn-border-2x.c-btn-white.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-white.disabled, .c-btn-border-2x.c-btn-white.disabled:hover, .c-btn-border-2x.c-btn-white.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-white.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-white.disabled:active, .c-btn-border-2x.c-btn-white.disabled.active, .c-btn-border-2x.c-btn-white[disabled], .c-btn-border-2x.c-btn-white[disabled]:hover, .c-btn-border-2x.c-btn-white[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-white[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-white[disabled]:active, .c-btn-border-2x.c-btn-white[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-white,
  fieldset[disabled] .c-btn-border-2x.c-btn-white:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-white:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-white:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-white:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-white.active {
    background: none;
    border-color: #FFFFFF; }
  .c-btn-border-2x.c-btn-white .badge {
    color: none;
    background: #FFFFFF; }

.c-btn-border-2x.c-btn-black {
  border-color: #000000;
  color: #000000;
  background: none;
  border-color: #000000; }
  .c-btn-border-2x.c-btn-black.btn-no-focus:focus, .c-btn-border-2x.c-btn-black.btn-no-focus.focus {
    color: #000000;
    background: none;
    border-color: #000000; }
  .c-btn-border-2x.c-btn-black.btn-no-focus:hover, .c-btn-border-2x.c-btn-black:hover, .c-btn-border-2x.c-btn-black.btn-no-focus:active, .c-btn-border-2x.c-btn-black:active, .c-btn-border-2x.c-btn-black.active,
  .open > .c-btn-border-2x.c-btn-black.dropdown-toggle {
    color: #ffffff;
    background: #000000;
    border-color: #000000; }
  .c-btn-border-2x.c-btn-black:active, .c-btn-border-2x.c-btn-black.active,
  .open > .c-btn-border-2x.c-btn-black.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-black.disabled, .c-btn-border-2x.c-btn-black.disabled:hover, .c-btn-border-2x.c-btn-black.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-black.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-black.disabled:active, .c-btn-border-2x.c-btn-black.disabled.active, .c-btn-border-2x.c-btn-black[disabled], .c-btn-border-2x.c-btn-black[disabled]:hover, .c-btn-border-2x.c-btn-black[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-black[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-black[disabled]:active, .c-btn-border-2x.c-btn-black[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-black,
  fieldset[disabled] .c-btn-border-2x.c-btn-black:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-black:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-black:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-black:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-black.active {
    background: none;
    border-color: #000000; }
  .c-btn-border-2x.c-btn-black .badge {
    color: none;
    background: #000000; }

.c-btn-border-2x.c-btn-regular {
  border-color: #7f8c97;
  color: #7f8c97;
  background: none;
  border-color: #7f8c97; }
  .c-btn-border-2x.c-btn-regular.btn-no-focus:focus, .c-btn-border-2x.c-btn-regular.btn-no-focus.focus {
    color: #7f8c97;
    background: none;
    border-color: #7f8c97; }
  .c-btn-border-2x.c-btn-regular.btn-no-focus:hover, .c-btn-border-2x.c-btn-regular:hover, .c-btn-border-2x.c-btn-regular.btn-no-focus:active, .c-btn-border-2x.c-btn-regular:active, .c-btn-border-2x.c-btn-regular.active,
  .open > .c-btn-border-2x.c-btn-regular.dropdown-toggle {
    color: #ffffff;
    background: #7f8c97;
    border-color: #7f8c97; }
  .c-btn-border-2x.c-btn-regular:active, .c-btn-border-2x.c-btn-regular.active,
  .open > .c-btn-border-2x.c-btn-regular.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-regular.disabled, .c-btn-border-2x.c-btn-regular.disabled:hover, .c-btn-border-2x.c-btn-regular.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-regular.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-regular.disabled:active, .c-btn-border-2x.c-btn-regular.disabled.active, .c-btn-border-2x.c-btn-regular[disabled], .c-btn-border-2x.c-btn-regular[disabled]:hover, .c-btn-border-2x.c-btn-regular[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-regular[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-regular[disabled]:active, .c-btn-border-2x.c-btn-regular[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-regular,
  fieldset[disabled] .c-btn-border-2x.c-btn-regular:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-regular:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-regular:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-regular:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-regular.active {
    background: none;
    border-color: #7f8c97; }
  .c-btn-border-2x.c-btn-regular .badge {
    color: none;
    background: #7f8c97; }

.c-btn-border-2x.c-btn-green {
  border-color: #32c5d2;
  color: #32c5d2;
  background: none;
  border-color: #32c5d2; }
  .c-btn-border-2x.c-btn-green.btn-no-focus:focus, .c-btn-border-2x.c-btn-green.btn-no-focus.focus {
    color: #32c5d2;
    background: none;
    border-color: #32c5d2; }
  .c-btn-border-2x.c-btn-green.btn-no-focus:hover, .c-btn-border-2x.c-btn-green:hover, .c-btn-border-2x.c-btn-green.btn-no-focus:active, .c-btn-border-2x.c-btn-green:active, .c-btn-border-2x.c-btn-green.active,
  .open > .c-btn-border-2x.c-btn-green.dropdown-toggle {
    color: #ffffff;
    background: #32c5d2;
    border-color: #32c5d2; }
  .c-btn-border-2x.c-btn-green:active, .c-btn-border-2x.c-btn-green.active,
  .open > .c-btn-border-2x.c-btn-green.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-green.disabled, .c-btn-border-2x.c-btn-green.disabled:hover, .c-btn-border-2x.c-btn-green.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-green.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-green.disabled:active, .c-btn-border-2x.c-btn-green.disabled.active, .c-btn-border-2x.c-btn-green[disabled], .c-btn-border-2x.c-btn-green[disabled]:hover, .c-btn-border-2x.c-btn-green[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-green[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-green[disabled]:active, .c-btn-border-2x.c-btn-green[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-green,
  fieldset[disabled] .c-btn-border-2x.c-btn-green:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-green:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-green:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-green:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-green.active {
    background: none;
    border-color: #32c5d2; }
  .c-btn-border-2x.c-btn-green .badge {
    color: none;
    background: #32c5d2; }

.c-btn-border-2x.c-btn-green-1 {
  border-color: #52c9ba;
  color: #52c9ba;
  background: none;
  border-color: #52c9ba; }
  .c-btn-border-2x.c-btn-green-1.btn-no-focus:focus, .c-btn-border-2x.c-btn-green-1.btn-no-focus.focus {
    color: #52c9ba;
    background: none;
    border-color: #52c9ba; }
  .c-btn-border-2x.c-btn-green-1.btn-no-focus:hover, .c-btn-border-2x.c-btn-green-1:hover, .c-btn-border-2x.c-btn-green-1.btn-no-focus:active, .c-btn-border-2x.c-btn-green-1:active, .c-btn-border-2x.c-btn-green-1.active,
  .open > .c-btn-border-2x.c-btn-green-1.dropdown-toggle {
    color: #ffffff;
    background: #52c9ba;
    border-color: #52c9ba; }
  .c-btn-border-2x.c-btn-green-1:active, .c-btn-border-2x.c-btn-green-1.active,
  .open > .c-btn-border-2x.c-btn-green-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-green-1.disabled, .c-btn-border-2x.c-btn-green-1.disabled:hover, .c-btn-border-2x.c-btn-green-1.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-green-1.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-green-1.disabled:active, .c-btn-border-2x.c-btn-green-1.disabled.active, .c-btn-border-2x.c-btn-green-1[disabled], .c-btn-border-2x.c-btn-green-1[disabled]:hover, .c-btn-border-2x.c-btn-green-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-green-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-green-1[disabled]:active, .c-btn-border-2x.c-btn-green-1[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-1,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-1:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-1:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-1.active {
    background: none;
    border-color: #52c9ba; }
  .c-btn-border-2x.c-btn-green-1 .badge {
    color: none;
    background: #52c9ba; }

.c-btn-border-2x.c-btn-green-2 {
  border-color: #5dc09c;
  color: #5dc09c;
  background: none;
  border-color: #5dc09c; }
  .c-btn-border-2x.c-btn-green-2.btn-no-focus:focus, .c-btn-border-2x.c-btn-green-2.btn-no-focus.focus {
    color: #5dc09c;
    background: none;
    border-color: #5dc09c; }
  .c-btn-border-2x.c-btn-green-2.btn-no-focus:hover, .c-btn-border-2x.c-btn-green-2:hover, .c-btn-border-2x.c-btn-green-2.btn-no-focus:active, .c-btn-border-2x.c-btn-green-2:active, .c-btn-border-2x.c-btn-green-2.active,
  .open > .c-btn-border-2x.c-btn-green-2.dropdown-toggle {
    color: #ffffff;
    background: #5dc09c;
    border-color: #5dc09c; }
  .c-btn-border-2x.c-btn-green-2:active, .c-btn-border-2x.c-btn-green-2.active,
  .open > .c-btn-border-2x.c-btn-green-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-green-2.disabled, .c-btn-border-2x.c-btn-green-2.disabled:hover, .c-btn-border-2x.c-btn-green-2.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-green-2.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-green-2.disabled:active, .c-btn-border-2x.c-btn-green-2.disabled.active, .c-btn-border-2x.c-btn-green-2[disabled], .c-btn-border-2x.c-btn-green-2[disabled]:hover, .c-btn-border-2x.c-btn-green-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-green-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-green-2[disabled]:active, .c-btn-border-2x.c-btn-green-2[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-2,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-2:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-2:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-2.active {
    background: none;
    border-color: #5dc09c; }
  .c-btn-border-2x.c-btn-green-2 .badge {
    color: none;
    background: #5dc09c; }

.c-btn-border-2x.c-btn-green-3 {
  border-color: #84c68f;
  color: #84c68f;
  background: none;
  border-color: #84c68f; }
  .c-btn-border-2x.c-btn-green-3.btn-no-focus:focus, .c-btn-border-2x.c-btn-green-3.btn-no-focus.focus {
    color: #84c68f;
    background: none;
    border-color: #84c68f; }
  .c-btn-border-2x.c-btn-green-3.btn-no-focus:hover, .c-btn-border-2x.c-btn-green-3:hover, .c-btn-border-2x.c-btn-green-3.btn-no-focus:active, .c-btn-border-2x.c-btn-green-3:active, .c-btn-border-2x.c-btn-green-3.active,
  .open > .c-btn-border-2x.c-btn-green-3.dropdown-toggle {
    color: #ffffff;
    background: #84c68f;
    border-color: #84c68f; }
  .c-btn-border-2x.c-btn-green-3:active, .c-btn-border-2x.c-btn-green-3.active,
  .open > .c-btn-border-2x.c-btn-green-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-green-3.disabled, .c-btn-border-2x.c-btn-green-3.disabled:hover, .c-btn-border-2x.c-btn-green-3.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-green-3.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-green-3.disabled:active, .c-btn-border-2x.c-btn-green-3.disabled.active, .c-btn-border-2x.c-btn-green-3[disabled], .c-btn-border-2x.c-btn-green-3[disabled]:hover, .c-btn-border-2x.c-btn-green-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-green-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-green-3[disabled]:active, .c-btn-border-2x.c-btn-green-3[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-3,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-3:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-3:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-3.active {
    background: none;
    border-color: #84c68f; }
  .c-btn-border-2x.c-btn-green-3 .badge {
    color: none;
    background: #84c68f; }

.c-btn-border-2x.c-btn-green-4 {
  border-color: #3cb878;
  color: #3cb878;
  background: none;
  border-color: #3cb878; }
  .c-btn-border-2x.c-btn-green-4.btn-no-focus:focus, .c-btn-border-2x.c-btn-green-4.btn-no-focus.focus {
    color: #3cb878;
    background: none;
    border-color: #3cb878; }
  .c-btn-border-2x.c-btn-green-4.btn-no-focus:hover, .c-btn-border-2x.c-btn-green-4:hover, .c-btn-border-2x.c-btn-green-4.btn-no-focus:active, .c-btn-border-2x.c-btn-green-4:active, .c-btn-border-2x.c-btn-green-4.active,
  .open > .c-btn-border-2x.c-btn-green-4.dropdown-toggle {
    color: #ffffff;
    background: #3cb878;
    border-color: #3cb878; }
  .c-btn-border-2x.c-btn-green-4:active, .c-btn-border-2x.c-btn-green-4.active,
  .open > .c-btn-border-2x.c-btn-green-4.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-green-4.disabled, .c-btn-border-2x.c-btn-green-4.disabled:hover, .c-btn-border-2x.c-btn-green-4.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-green-4.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-green-4.disabled:active, .c-btn-border-2x.c-btn-green-4.disabled.active, .c-btn-border-2x.c-btn-green-4[disabled], .c-btn-border-2x.c-btn-green-4[disabled]:hover, .c-btn-border-2x.c-btn-green-4[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-green-4[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-green-4[disabled]:active, .c-btn-border-2x.c-btn-green-4[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-4,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-4:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-4:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-green-4.active {
    background: none;
    border-color: #3cb878; }
  .c-btn-border-2x.c-btn-green-4 .badge {
    color: none;
    background: #3cb878; }

.c-btn-border-2x.c-btn-red {
  border-color: #eb5d68;
  color: #eb5d68;
  background: none;
  border-color: #eb5d68; }
  .c-btn-border-2x.c-btn-red.btn-no-focus:focus, .c-btn-border-2x.c-btn-red.btn-no-focus.focus {
    color: #eb5d68;
    background: none;
    border-color: #eb5d68; }
  .c-btn-border-2x.c-btn-red.btn-no-focus:hover, .c-btn-border-2x.c-btn-red:hover, .c-btn-border-2x.c-btn-red.btn-no-focus:active, .c-btn-border-2x.c-btn-red:active, .c-btn-border-2x.c-btn-red.active,
  .open > .c-btn-border-2x.c-btn-red.dropdown-toggle {
    color: #ffffff;
    background: #eb5d68;
    border-color: #eb5d68; }
  .c-btn-border-2x.c-btn-red:active, .c-btn-border-2x.c-btn-red.active,
  .open > .c-btn-border-2x.c-btn-red.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-red.disabled, .c-btn-border-2x.c-btn-red.disabled:hover, .c-btn-border-2x.c-btn-red.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-red.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-red.disabled:active, .c-btn-border-2x.c-btn-red.disabled.active, .c-btn-border-2x.c-btn-red[disabled], .c-btn-border-2x.c-btn-red[disabled]:hover, .c-btn-border-2x.c-btn-red[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-red[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-red[disabled]:active, .c-btn-border-2x.c-btn-red[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-red,
  fieldset[disabled] .c-btn-border-2x.c-btn-red:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-red:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-red:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-red:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-red.active {
    background: none;
    border-color: #eb5d68; }
  .c-btn-border-2x.c-btn-red .badge {
    color: none;
    background: #eb5d68; }

.c-btn-border-2x.c-btn-red-1 {
  border-color: #cd6262;
  color: #cd6262;
  background: none;
  border-color: #cd6262; }
  .c-btn-border-2x.c-btn-red-1.btn-no-focus:focus, .c-btn-border-2x.c-btn-red-1.btn-no-focus.focus {
    color: #cd6262;
    background: none;
    border-color: #cd6262; }
  .c-btn-border-2x.c-btn-red-1.btn-no-focus:hover, .c-btn-border-2x.c-btn-red-1:hover, .c-btn-border-2x.c-btn-red-1.btn-no-focus:active, .c-btn-border-2x.c-btn-red-1:active, .c-btn-border-2x.c-btn-red-1.active,
  .open > .c-btn-border-2x.c-btn-red-1.dropdown-toggle {
    color: #ffffff;
    background: #cd6262;
    border-color: #cd6262; }
  .c-btn-border-2x.c-btn-red-1:active, .c-btn-border-2x.c-btn-red-1.active,
  .open > .c-btn-border-2x.c-btn-red-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-red-1.disabled, .c-btn-border-2x.c-btn-red-1.disabled:hover, .c-btn-border-2x.c-btn-red-1.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-red-1.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-red-1.disabled:active, .c-btn-border-2x.c-btn-red-1.disabled.active, .c-btn-border-2x.c-btn-red-1[disabled], .c-btn-border-2x.c-btn-red-1[disabled]:hover, .c-btn-border-2x.c-btn-red-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-red-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-red-1[disabled]:active, .c-btn-border-2x.c-btn-red-1[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-1,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-1:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-1:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-1.active {
    background: none;
    border-color: #cd6262; }
  .c-btn-border-2x.c-btn-red-1 .badge {
    color: none;
    background: #cd6262; }

.c-btn-border-2x.c-btn-red-2 {
  border-color: #e7505a;
  color: #e7505a;
  background: none;
  border-color: #e7505a; }
  .c-btn-border-2x.c-btn-red-2.btn-no-focus:focus, .c-btn-border-2x.c-btn-red-2.btn-no-focus.focus {
    color: #e7505a;
    background: none;
    border-color: #e7505a; }
  .c-btn-border-2x.c-btn-red-2.btn-no-focus:hover, .c-btn-border-2x.c-btn-red-2:hover, .c-btn-border-2x.c-btn-red-2.btn-no-focus:active, .c-btn-border-2x.c-btn-red-2:active, .c-btn-border-2x.c-btn-red-2.active,
  .open > .c-btn-border-2x.c-btn-red-2.dropdown-toggle {
    color: #ffffff;
    background: #e7505a;
    border-color: #e7505a; }
  .c-btn-border-2x.c-btn-red-2:active, .c-btn-border-2x.c-btn-red-2.active,
  .open > .c-btn-border-2x.c-btn-red-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-red-2.disabled, .c-btn-border-2x.c-btn-red-2.disabled:hover, .c-btn-border-2x.c-btn-red-2.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-red-2.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-red-2.disabled:active, .c-btn-border-2x.c-btn-red-2.disabled.active, .c-btn-border-2x.c-btn-red-2[disabled], .c-btn-border-2x.c-btn-red-2[disabled]:hover, .c-btn-border-2x.c-btn-red-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-red-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-red-2[disabled]:active, .c-btn-border-2x.c-btn-red-2[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-2,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-2:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-2:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-2.active {
    background: none;
    border-color: #e7505a; }
  .c-btn-border-2x.c-btn-red-2 .badge {
    color: none;
    background: #e7505a; }

.c-btn-border-2x.c-btn-red-3 {
  border-color: #d05163;
  color: #d05163;
  background: none;
  border-color: #d05163; }
  .c-btn-border-2x.c-btn-red-3.btn-no-focus:focus, .c-btn-border-2x.c-btn-red-3.btn-no-focus.focus {
    color: #d05163;
    background: none;
    border-color: #d05163; }
  .c-btn-border-2x.c-btn-red-3.btn-no-focus:hover, .c-btn-border-2x.c-btn-red-3:hover, .c-btn-border-2x.c-btn-red-3.btn-no-focus:active, .c-btn-border-2x.c-btn-red-3:active, .c-btn-border-2x.c-btn-red-3.active,
  .open > .c-btn-border-2x.c-btn-red-3.dropdown-toggle {
    color: #ffffff;
    background: #d05163;
    border-color: #d05163; }
  .c-btn-border-2x.c-btn-red-3:active, .c-btn-border-2x.c-btn-red-3.active,
  .open > .c-btn-border-2x.c-btn-red-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-red-3.disabled, .c-btn-border-2x.c-btn-red-3.disabled:hover, .c-btn-border-2x.c-btn-red-3.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-red-3.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-red-3.disabled:active, .c-btn-border-2x.c-btn-red-3.disabled.active, .c-btn-border-2x.c-btn-red-3[disabled], .c-btn-border-2x.c-btn-red-3[disabled]:hover, .c-btn-border-2x.c-btn-red-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-red-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-red-3[disabled]:active, .c-btn-border-2x.c-btn-red-3[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-3,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-3:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-3:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-red-3.active {
    background: none;
    border-color: #d05163; }
  .c-btn-border-2x.c-btn-red-3 .badge {
    color: none;
    background: #d05163; }

.c-btn-border-2x.c-btn-yellow {
  border-color: #FF6B57;
  color: #FF6B57;
  background: none;
  border-color: #FF6B57; }
  .c-btn-border-2x.c-btn-yellow.btn-no-focus:focus, .c-btn-border-2x.c-btn-yellow.btn-no-focus.focus {
    color: #FF6B57;
    background: none;
    border-color: #FF6B57; }
  .c-btn-border-2x.c-btn-yellow.btn-no-focus:hover, .c-btn-border-2x.c-btn-yellow:hover, .c-btn-border-2x.c-btn-yellow.btn-no-focus:active, .c-btn-border-2x.c-btn-yellow:active, .c-btn-border-2x.c-btn-yellow.active,
  .open > .c-btn-border-2x.c-btn-yellow.dropdown-toggle {
    color: #ffffff;
    background: #FF6B57;
    border-color: #FF6B57; }
  .c-btn-border-2x.c-btn-yellow:active, .c-btn-border-2x.c-btn-yellow.active,
  .open > .c-btn-border-2x.c-btn-yellow.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-yellow.disabled, .c-btn-border-2x.c-btn-yellow.disabled:hover, .c-btn-border-2x.c-btn-yellow.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-yellow.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-yellow.disabled:active, .c-btn-border-2x.c-btn-yellow.disabled.active, .c-btn-border-2x.c-btn-yellow[disabled], .c-btn-border-2x.c-btn-yellow[disabled]:hover, .c-btn-border-2x.c-btn-yellow[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-yellow[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-yellow[disabled]:active, .c-btn-border-2x.c-btn-yellow[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow.active {
    background: none;
    border-color: #FF6B57; }
  .c-btn-border-2x.c-btn-yellow .badge {
    color: none;
    background: #FF6B57; }

.c-btn-border-2x.c-btn-yellow-1 {
  border-color: #c8d046;
  color: #c8d046;
  background: none;
  border-color: #c8d046; }
  .c-btn-border-2x.c-btn-yellow-1.btn-no-focus:focus, .c-btn-border-2x.c-btn-yellow-1.btn-no-focus.focus {
    color: #c8d046;
    background: none;
    border-color: #c8d046; }
  .c-btn-border-2x.c-btn-yellow-1.btn-no-focus:hover, .c-btn-border-2x.c-btn-yellow-1:hover, .c-btn-border-2x.c-btn-yellow-1.btn-no-focus:active, .c-btn-border-2x.c-btn-yellow-1:active, .c-btn-border-2x.c-btn-yellow-1.active,
  .open > .c-btn-border-2x.c-btn-yellow-1.dropdown-toggle {
    color: #ffffff;
    background: #c8d046;
    border-color: #c8d046; }
  .c-btn-border-2x.c-btn-yellow-1:active, .c-btn-border-2x.c-btn-yellow-1.active,
  .open > .c-btn-border-2x.c-btn-yellow-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-yellow-1.disabled, .c-btn-border-2x.c-btn-yellow-1.disabled:hover, .c-btn-border-2x.c-btn-yellow-1.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-yellow-1.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-yellow-1.disabled:active, .c-btn-border-2x.c-btn-yellow-1.disabled.active, .c-btn-border-2x.c-btn-yellow-1[disabled], .c-btn-border-2x.c-btn-yellow-1[disabled]:hover, .c-btn-border-2x.c-btn-yellow-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-yellow-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-yellow-1[disabled]:active, .c-btn-border-2x.c-btn-yellow-1[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-1,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-1:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-1:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-1.active {
    background: none;
    border-color: #c8d046; }
  .c-btn-border-2x.c-btn-yellow-1 .badge {
    color: none;
    background: #c8d046; }

.c-btn-border-2x.c-btn-yellow-2 {
  border-color: #c5bf66;
  color: #c5bf66;
  background: none;
  border-color: #c5bf66; }
  .c-btn-border-2x.c-btn-yellow-2.btn-no-focus:focus, .c-btn-border-2x.c-btn-yellow-2.btn-no-focus.focus {
    color: #c5bf66;
    background: none;
    border-color: #c5bf66; }
  .c-btn-border-2x.c-btn-yellow-2.btn-no-focus:hover, .c-btn-border-2x.c-btn-yellow-2:hover, .c-btn-border-2x.c-btn-yellow-2.btn-no-focus:active, .c-btn-border-2x.c-btn-yellow-2:active, .c-btn-border-2x.c-btn-yellow-2.active,
  .open > .c-btn-border-2x.c-btn-yellow-2.dropdown-toggle {
    color: #ffffff;
    background: #c5bf66;
    border-color: #c5bf66; }
  .c-btn-border-2x.c-btn-yellow-2:active, .c-btn-border-2x.c-btn-yellow-2.active,
  .open > .c-btn-border-2x.c-btn-yellow-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-yellow-2.disabled, .c-btn-border-2x.c-btn-yellow-2.disabled:hover, .c-btn-border-2x.c-btn-yellow-2.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-yellow-2.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-yellow-2.disabled:active, .c-btn-border-2x.c-btn-yellow-2.disabled.active, .c-btn-border-2x.c-btn-yellow-2[disabled], .c-btn-border-2x.c-btn-yellow-2[disabled]:hover, .c-btn-border-2x.c-btn-yellow-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-yellow-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-yellow-2[disabled]:active, .c-btn-border-2x.c-btn-yellow-2[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-2,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-2:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-2:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-2.active {
    background: none;
    border-color: #c5bf66; }
  .c-btn-border-2x.c-btn-yellow-2 .badge {
    color: none;
    background: #c5bf66; }

.c-btn-border-2x.c-btn-yellow-3 {
  border-color: #c5b96b;
  color: #c5b96b;
  background: none;
  border-color: #c5b96b; }
  .c-btn-border-2x.c-btn-yellow-3.btn-no-focus:focus, .c-btn-border-2x.c-btn-yellow-3.btn-no-focus.focus {
    color: #c5b96b;
    background: none;
    border-color: #c5b96b; }
  .c-btn-border-2x.c-btn-yellow-3.btn-no-focus:hover, .c-btn-border-2x.c-btn-yellow-3:hover, .c-btn-border-2x.c-btn-yellow-3.btn-no-focus:active, .c-btn-border-2x.c-btn-yellow-3:active, .c-btn-border-2x.c-btn-yellow-3.active,
  .open > .c-btn-border-2x.c-btn-yellow-3.dropdown-toggle {
    color: #ffffff;
    background: #c5b96b;
    border-color: #c5b96b; }
  .c-btn-border-2x.c-btn-yellow-3:active, .c-btn-border-2x.c-btn-yellow-3.active,
  .open > .c-btn-border-2x.c-btn-yellow-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-yellow-3.disabled, .c-btn-border-2x.c-btn-yellow-3.disabled:hover, .c-btn-border-2x.c-btn-yellow-3.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-yellow-3.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-yellow-3.disabled:active, .c-btn-border-2x.c-btn-yellow-3.disabled.active, .c-btn-border-2x.c-btn-yellow-3[disabled], .c-btn-border-2x.c-btn-yellow-3[disabled]:hover, .c-btn-border-2x.c-btn-yellow-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-yellow-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-yellow-3[disabled]:active, .c-btn-border-2x.c-btn-yellow-3[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-3,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-3:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-3:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-3.active {
    background: none;
    border-color: #c5b96b; }
  .c-btn-border-2x.c-btn-yellow-3 .badge {
    color: none;
    background: #c5b96b; }

.c-btn-border-2x.c-btn-yellow-4 {
  border-color: #fff200;
  color: #fff200;
  background: none;
  border-color: #fff200; }
  .c-btn-border-2x.c-btn-yellow-4.btn-no-focus:focus, .c-btn-border-2x.c-btn-yellow-4.btn-no-focus.focus {
    color: #fff200;
    background: none;
    border-color: #fff200; }
  .c-btn-border-2x.c-btn-yellow-4.btn-no-focus:hover, .c-btn-border-2x.c-btn-yellow-4:hover, .c-btn-border-2x.c-btn-yellow-4.btn-no-focus:active, .c-btn-border-2x.c-btn-yellow-4:active, .c-btn-border-2x.c-btn-yellow-4.active,
  .open > .c-btn-border-2x.c-btn-yellow-4.dropdown-toggle {
    color: #ffffff;
    background: #fff200;
    border-color: #fff200; }
  .c-btn-border-2x.c-btn-yellow-4:active, .c-btn-border-2x.c-btn-yellow-4.active,
  .open > .c-btn-border-2x.c-btn-yellow-4.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-yellow-4.disabled, .c-btn-border-2x.c-btn-yellow-4.disabled:hover, .c-btn-border-2x.c-btn-yellow-4.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-yellow-4.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-yellow-4.disabled:active, .c-btn-border-2x.c-btn-yellow-4.disabled.active, .c-btn-border-2x.c-btn-yellow-4[disabled], .c-btn-border-2x.c-btn-yellow-4[disabled]:hover, .c-btn-border-2x.c-btn-yellow-4[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-yellow-4[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-yellow-4[disabled]:active, .c-btn-border-2x.c-btn-yellow-4[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-4,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-4:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-4:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-yellow-4.active {
    background: none;
    border-color: #fff200; }
  .c-btn-border-2x.c-btn-yellow-4 .badge {
    color: none;
    background: #fff200; }

.c-btn-border-2x.c-btn-blue {
  border-color: #3498DB;
  color: #3498DB;
  background: none;
  border-color: #3498DB; }
  .c-btn-border-2x.c-btn-blue.btn-no-focus:focus, .c-btn-border-2x.c-btn-blue.btn-no-focus.focus {
    color: #3498DB;
    background: none;
    border-color: #3498DB; }
  .c-btn-border-2x.c-btn-blue.btn-no-focus:hover, .c-btn-border-2x.c-btn-blue:hover, .c-btn-border-2x.c-btn-blue.btn-no-focus:active, .c-btn-border-2x.c-btn-blue:active, .c-btn-border-2x.c-btn-blue.active,
  .open > .c-btn-border-2x.c-btn-blue.dropdown-toggle {
    color: #ffffff;
    background: #3498DB;
    border-color: #3498DB; }
  .c-btn-border-2x.c-btn-blue:active, .c-btn-border-2x.c-btn-blue.active,
  .open > .c-btn-border-2x.c-btn-blue.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-blue.disabled, .c-btn-border-2x.c-btn-blue.disabled:hover, .c-btn-border-2x.c-btn-blue.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-blue.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-blue.disabled:active, .c-btn-border-2x.c-btn-blue.disabled.active, .c-btn-border-2x.c-btn-blue[disabled], .c-btn-border-2x.c-btn-blue[disabled]:hover, .c-btn-border-2x.c-btn-blue[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-blue[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-blue[disabled]:active, .c-btn-border-2x.c-btn-blue[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue.active {
    background: none;
    border-color: #3498DB; }
  .c-btn-border-2x.c-btn-blue .badge {
    color: none;
    background: #3498DB; }

.c-btn-border-2x.c-btn-blue-1 {
  border-color: #5e9cd1;
  color: #5e9cd1;
  background: none;
  border-color: #5e9cd1; }
  .c-btn-border-2x.c-btn-blue-1.btn-no-focus:focus, .c-btn-border-2x.c-btn-blue-1.btn-no-focus.focus {
    color: #5e9cd1;
    background: none;
    border-color: #5e9cd1; }
  .c-btn-border-2x.c-btn-blue-1.btn-no-focus:hover, .c-btn-border-2x.c-btn-blue-1:hover, .c-btn-border-2x.c-btn-blue-1.btn-no-focus:active, .c-btn-border-2x.c-btn-blue-1:active, .c-btn-border-2x.c-btn-blue-1.active,
  .open > .c-btn-border-2x.c-btn-blue-1.dropdown-toggle {
    color: #ffffff;
    background: #5e9cd1;
    border-color: #5e9cd1; }
  .c-btn-border-2x.c-btn-blue-1:active, .c-btn-border-2x.c-btn-blue-1.active,
  .open > .c-btn-border-2x.c-btn-blue-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-blue-1.disabled, .c-btn-border-2x.c-btn-blue-1.disabled:hover, .c-btn-border-2x.c-btn-blue-1.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-blue-1.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-blue-1.disabled:active, .c-btn-border-2x.c-btn-blue-1.disabled.active, .c-btn-border-2x.c-btn-blue-1[disabled], .c-btn-border-2x.c-btn-blue-1[disabled]:hover, .c-btn-border-2x.c-btn-blue-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-blue-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-blue-1[disabled]:active, .c-btn-border-2x.c-btn-blue-1[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-1,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-1:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-1:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-1.active {
    background: none;
    border-color: #5e9cd1; }
  .c-btn-border-2x.c-btn-blue-1 .badge {
    color: none;
    background: #5e9cd1; }

.c-btn-border-2x.c-btn-blue-2 {
  border-color: #5893dd;
  color: #5893dd;
  background: none;
  border-color: #5893dd; }
  .c-btn-border-2x.c-btn-blue-2.btn-no-focus:focus, .c-btn-border-2x.c-btn-blue-2.btn-no-focus.focus {
    color: #5893dd;
    background: none;
    border-color: #5893dd; }
  .c-btn-border-2x.c-btn-blue-2.btn-no-focus:hover, .c-btn-border-2x.c-btn-blue-2:hover, .c-btn-border-2x.c-btn-blue-2.btn-no-focus:active, .c-btn-border-2x.c-btn-blue-2:active, .c-btn-border-2x.c-btn-blue-2.active,
  .open > .c-btn-border-2x.c-btn-blue-2.dropdown-toggle {
    color: #ffffff;
    background: #5893dd;
    border-color: #5893dd; }
  .c-btn-border-2x.c-btn-blue-2:active, .c-btn-border-2x.c-btn-blue-2.active,
  .open > .c-btn-border-2x.c-btn-blue-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-blue-2.disabled, .c-btn-border-2x.c-btn-blue-2.disabled:hover, .c-btn-border-2x.c-btn-blue-2.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-blue-2.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-blue-2.disabled:active, .c-btn-border-2x.c-btn-blue-2.disabled.active, .c-btn-border-2x.c-btn-blue-2[disabled], .c-btn-border-2x.c-btn-blue-2[disabled]:hover, .c-btn-border-2x.c-btn-blue-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-blue-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-blue-2[disabled]:active, .c-btn-border-2x.c-btn-blue-2[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-2,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-2:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-2:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-2.active {
    background: none;
    border-color: #5893dd; }
  .c-btn-border-2x.c-btn-blue-2 .badge {
    color: none;
    background: #5893dd; }

.c-btn-border-2x.c-btn-blue-3 {
  border-color: #57bfe1;
  color: #57bfe1;
  background: none;
  border-color: #57bfe1; }
  .c-btn-border-2x.c-btn-blue-3.btn-no-focus:focus, .c-btn-border-2x.c-btn-blue-3.btn-no-focus.focus {
    color: #57bfe1;
    background: none;
    border-color: #57bfe1; }
  .c-btn-border-2x.c-btn-blue-3.btn-no-focus:hover, .c-btn-border-2x.c-btn-blue-3:hover, .c-btn-border-2x.c-btn-blue-3.btn-no-focus:active, .c-btn-border-2x.c-btn-blue-3:active, .c-btn-border-2x.c-btn-blue-3.active,
  .open > .c-btn-border-2x.c-btn-blue-3.dropdown-toggle {
    color: #ffffff;
    background: #57bfe1;
    border-color: #57bfe1; }
  .c-btn-border-2x.c-btn-blue-3:active, .c-btn-border-2x.c-btn-blue-3.active,
  .open > .c-btn-border-2x.c-btn-blue-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-blue-3.disabled, .c-btn-border-2x.c-btn-blue-3.disabled:hover, .c-btn-border-2x.c-btn-blue-3.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-blue-3.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-blue-3.disabled:active, .c-btn-border-2x.c-btn-blue-3.disabled.active, .c-btn-border-2x.c-btn-blue-3[disabled], .c-btn-border-2x.c-btn-blue-3[disabled]:hover, .c-btn-border-2x.c-btn-blue-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-blue-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-blue-3[disabled]:active, .c-btn-border-2x.c-btn-blue-3[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-3,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-3:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-3:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-3.active {
    background: none;
    border-color: #57bfe1; }
  .c-btn-border-2x.c-btn-blue-3 .badge {
    color: none;
    background: #57bfe1; }

.c-btn-border-2x.c-btn-blue-4 {
  border-color: #428de4;
  color: #428de4;
  background: none;
  border-color: #428de4; }
  .c-btn-border-2x.c-btn-blue-4.btn-no-focus:focus, .c-btn-border-2x.c-btn-blue-4.btn-no-focus.focus {
    color: #428de4;
    background: none;
    border-color: #428de4; }
  .c-btn-border-2x.c-btn-blue-4.btn-no-focus:hover, .c-btn-border-2x.c-btn-blue-4:hover, .c-btn-border-2x.c-btn-blue-4.btn-no-focus:active, .c-btn-border-2x.c-btn-blue-4:active, .c-btn-border-2x.c-btn-blue-4.active,
  .open > .c-btn-border-2x.c-btn-blue-4.dropdown-toggle {
    color: #ffffff;
    background: #428de4;
    border-color: #428de4; }
  .c-btn-border-2x.c-btn-blue-4:active, .c-btn-border-2x.c-btn-blue-4.active,
  .open > .c-btn-border-2x.c-btn-blue-4.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-blue-4.disabled, .c-btn-border-2x.c-btn-blue-4.disabled:hover, .c-btn-border-2x.c-btn-blue-4.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-blue-4.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-blue-4.disabled:active, .c-btn-border-2x.c-btn-blue-4.disabled.active, .c-btn-border-2x.c-btn-blue-4[disabled], .c-btn-border-2x.c-btn-blue-4[disabled]:hover, .c-btn-border-2x.c-btn-blue-4[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-blue-4[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-blue-4[disabled]:active, .c-btn-border-2x.c-btn-blue-4[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-4,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-4:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-4:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-blue-4.active {
    background: none;
    border-color: #428de4; }
  .c-btn-border-2x.c-btn-blue-4 .badge {
    color: none;
    background: #428de4; }

.c-btn-border-2x.c-btn-purple {
  border-color: #b771b0;
  color: #b771b0;
  background: none;
  border-color: #b771b0; }
  .c-btn-border-2x.c-btn-purple.btn-no-focus:focus, .c-btn-border-2x.c-btn-purple.btn-no-focus.focus {
    color: #b771b0;
    background: none;
    border-color: #b771b0; }
  .c-btn-border-2x.c-btn-purple.btn-no-focus:hover, .c-btn-border-2x.c-btn-purple:hover, .c-btn-border-2x.c-btn-purple.btn-no-focus:active, .c-btn-border-2x.c-btn-purple:active, .c-btn-border-2x.c-btn-purple.active,
  .open > .c-btn-border-2x.c-btn-purple.dropdown-toggle {
    color: #ffffff;
    background: #b771b0;
    border-color: #b771b0; }
  .c-btn-border-2x.c-btn-purple:active, .c-btn-border-2x.c-btn-purple.active,
  .open > .c-btn-border-2x.c-btn-purple.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-purple.disabled, .c-btn-border-2x.c-btn-purple.disabled:hover, .c-btn-border-2x.c-btn-purple.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-purple.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-purple.disabled:active, .c-btn-border-2x.c-btn-purple.disabled.active, .c-btn-border-2x.c-btn-purple[disabled], .c-btn-border-2x.c-btn-purple[disabled]:hover, .c-btn-border-2x.c-btn-purple[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-purple[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-purple[disabled]:active, .c-btn-border-2x.c-btn-purple[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple.active {
    background: none;
    border-color: #b771b0; }
  .c-btn-border-2x.c-btn-purple .badge {
    color: none;
    background: #b771b0; }

.c-btn-border-2x.c-btn-purple-1 {
  border-color: #a962bb;
  color: #a962bb;
  background: none;
  border-color: #a962bb; }
  .c-btn-border-2x.c-btn-purple-1.btn-no-focus:focus, .c-btn-border-2x.c-btn-purple-1.btn-no-focus.focus {
    color: #a962bb;
    background: none;
    border-color: #a962bb; }
  .c-btn-border-2x.c-btn-purple-1.btn-no-focus:hover, .c-btn-border-2x.c-btn-purple-1:hover, .c-btn-border-2x.c-btn-purple-1.btn-no-focus:active, .c-btn-border-2x.c-btn-purple-1:active, .c-btn-border-2x.c-btn-purple-1.active,
  .open > .c-btn-border-2x.c-btn-purple-1.dropdown-toggle {
    color: #ffffff;
    background: #a962bb;
    border-color: #a962bb; }
  .c-btn-border-2x.c-btn-purple-1:active, .c-btn-border-2x.c-btn-purple-1.active,
  .open > .c-btn-border-2x.c-btn-purple-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-purple-1.disabled, .c-btn-border-2x.c-btn-purple-1.disabled:hover, .c-btn-border-2x.c-btn-purple-1.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-purple-1.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-purple-1.disabled:active, .c-btn-border-2x.c-btn-purple-1.disabled.active, .c-btn-border-2x.c-btn-purple-1[disabled], .c-btn-border-2x.c-btn-purple-1[disabled]:hover, .c-btn-border-2x.c-btn-purple-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-purple-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-purple-1[disabled]:active, .c-btn-border-2x.c-btn-purple-1[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-1,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-1:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-1:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-1.active {
    background: none;
    border-color: #a962bb; }
  .c-btn-border-2x.c-btn-purple-1 .badge {
    color: none;
    background: #a962bb; }

.c-btn-border-2x.c-btn-purple-2 {
  border-color: #aa67a3;
  color: #aa67a3;
  background: none;
  border-color: #aa67a3; }
  .c-btn-border-2x.c-btn-purple-2.btn-no-focus:focus, .c-btn-border-2x.c-btn-purple-2.btn-no-focus.focus {
    color: #aa67a3;
    background: none;
    border-color: #aa67a3; }
  .c-btn-border-2x.c-btn-purple-2.btn-no-focus:hover, .c-btn-border-2x.c-btn-purple-2:hover, .c-btn-border-2x.c-btn-purple-2.btn-no-focus:active, .c-btn-border-2x.c-btn-purple-2:active, .c-btn-border-2x.c-btn-purple-2.active,
  .open > .c-btn-border-2x.c-btn-purple-2.dropdown-toggle {
    color: #ffffff;
    background: #aa67a3;
    border-color: #aa67a3; }
  .c-btn-border-2x.c-btn-purple-2:active, .c-btn-border-2x.c-btn-purple-2.active,
  .open > .c-btn-border-2x.c-btn-purple-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-purple-2.disabled, .c-btn-border-2x.c-btn-purple-2.disabled:hover, .c-btn-border-2x.c-btn-purple-2.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-purple-2.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-purple-2.disabled:active, .c-btn-border-2x.c-btn-purple-2.disabled.active, .c-btn-border-2x.c-btn-purple-2[disabled], .c-btn-border-2x.c-btn-purple-2[disabled]:hover, .c-btn-border-2x.c-btn-purple-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-purple-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-purple-2[disabled]:active, .c-btn-border-2x.c-btn-purple-2[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-2,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-2:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-2:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-2.active {
    background: none;
    border-color: #aa67a3; }
  .c-btn-border-2x.c-btn-purple-2 .badge {
    color: none;
    background: #aa67a3; }

.c-btn-border-2x.c-btn-purple-3 {
  border-color: #ac3773;
  color: #ac3773;
  background: none;
  border-color: #ac3773; }
  .c-btn-border-2x.c-btn-purple-3.btn-no-focus:focus, .c-btn-border-2x.c-btn-purple-3.btn-no-focus.focus {
    color: #ac3773;
    background: none;
    border-color: #ac3773; }
  .c-btn-border-2x.c-btn-purple-3.btn-no-focus:hover, .c-btn-border-2x.c-btn-purple-3:hover, .c-btn-border-2x.c-btn-purple-3.btn-no-focus:active, .c-btn-border-2x.c-btn-purple-3:active, .c-btn-border-2x.c-btn-purple-3.active,
  .open > .c-btn-border-2x.c-btn-purple-3.dropdown-toggle {
    color: #ffffff;
    background: #ac3773;
    border-color: #ac3773; }
  .c-btn-border-2x.c-btn-purple-3:active, .c-btn-border-2x.c-btn-purple-3.active,
  .open > .c-btn-border-2x.c-btn-purple-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-purple-3.disabled, .c-btn-border-2x.c-btn-purple-3.disabled:hover, .c-btn-border-2x.c-btn-purple-3.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-purple-3.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-purple-3.disabled:active, .c-btn-border-2x.c-btn-purple-3.disabled.active, .c-btn-border-2x.c-btn-purple-3[disabled], .c-btn-border-2x.c-btn-purple-3[disabled]:hover, .c-btn-border-2x.c-btn-purple-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-purple-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-purple-3[disabled]:active, .c-btn-border-2x.c-btn-purple-3[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-3,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-3:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-3:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-purple-3.active {
    background: none;
    border-color: #ac3773; }
  .c-btn-border-2x.c-btn-purple-3 .badge {
    color: none;
    background: #ac3773; }

.c-btn-border-2x.c-btn-brown {
  border-color: #8a7f68;
  color: #8a7f68;
  background: none;
  border-color: #8a7f68; }
  .c-btn-border-2x.c-btn-brown.btn-no-focus:focus, .c-btn-border-2x.c-btn-brown.btn-no-focus.focus {
    color: #8a7f68;
    background: none;
    border-color: #8a7f68; }
  .c-btn-border-2x.c-btn-brown.btn-no-focus:hover, .c-btn-border-2x.c-btn-brown:hover, .c-btn-border-2x.c-btn-brown.btn-no-focus:active, .c-btn-border-2x.c-btn-brown:active, .c-btn-border-2x.c-btn-brown.active,
  .open > .c-btn-border-2x.c-btn-brown.dropdown-toggle {
    color: #ffffff;
    background: #8a7f68;
    border-color: #8a7f68; }
  .c-btn-border-2x.c-btn-brown:active, .c-btn-border-2x.c-btn-brown.active,
  .open > .c-btn-border-2x.c-btn-brown.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-brown.disabled, .c-btn-border-2x.c-btn-brown.disabled:hover, .c-btn-border-2x.c-btn-brown.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-brown.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-brown.disabled:active, .c-btn-border-2x.c-btn-brown.disabled.active, .c-btn-border-2x.c-btn-brown[disabled], .c-btn-border-2x.c-btn-brown[disabled]:hover, .c-btn-border-2x.c-btn-brown[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-brown[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-brown[disabled]:active, .c-btn-border-2x.c-btn-brown[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown.active {
    background: none;
    border-color: #8a7f68; }
  .c-btn-border-2x.c-btn-brown .badge {
    color: none;
    background: #8a7f68; }

.c-btn-border-2x.c-btn-brown-1 {
  border-color: #685e47;
  color: #685e47;
  background: none;
  border-color: #685e47; }
  .c-btn-border-2x.c-btn-brown-1.btn-no-focus:focus, .c-btn-border-2x.c-btn-brown-1.btn-no-focus.focus {
    color: #685e47;
    background: none;
    border-color: #685e47; }
  .c-btn-border-2x.c-btn-brown-1.btn-no-focus:hover, .c-btn-border-2x.c-btn-brown-1:hover, .c-btn-border-2x.c-btn-brown-1.btn-no-focus:active, .c-btn-border-2x.c-btn-brown-1:active, .c-btn-border-2x.c-btn-brown-1.active,
  .open > .c-btn-border-2x.c-btn-brown-1.dropdown-toggle {
    color: #ffffff;
    background: #685e47;
    border-color: #685e47; }
  .c-btn-border-2x.c-btn-brown-1:active, .c-btn-border-2x.c-btn-brown-1.active,
  .open > .c-btn-border-2x.c-btn-brown-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-brown-1.disabled, .c-btn-border-2x.c-btn-brown-1.disabled:hover, .c-btn-border-2x.c-btn-brown-1.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-brown-1.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-brown-1.disabled:active, .c-btn-border-2x.c-btn-brown-1.disabled.active, .c-btn-border-2x.c-btn-brown-1[disabled], .c-btn-border-2x.c-btn-brown-1[disabled]:hover, .c-btn-border-2x.c-btn-brown-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-brown-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-brown-1[disabled]:active, .c-btn-border-2x.c-btn-brown-1[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-1,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-1:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-1:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-1.active {
    background: none;
    border-color: #685e47; }
  .c-btn-border-2x.c-btn-brown-1 .badge {
    color: none;
    background: #685e47; }

.c-btn-border-2x.c-btn-brown-2 {
  border-color: #7a6a61;
  color: #7a6a61;
  background: none;
  border-color: #7a6a61; }
  .c-btn-border-2x.c-btn-brown-2.btn-no-focus:focus, .c-btn-border-2x.c-btn-brown-2.btn-no-focus.focus {
    color: #7a6a61;
    background: none;
    border-color: #7a6a61; }
  .c-btn-border-2x.c-btn-brown-2.btn-no-focus:hover, .c-btn-border-2x.c-btn-brown-2:hover, .c-btn-border-2x.c-btn-brown-2.btn-no-focus:active, .c-btn-border-2x.c-btn-brown-2:active, .c-btn-border-2x.c-btn-brown-2.active,
  .open > .c-btn-border-2x.c-btn-brown-2.dropdown-toggle {
    color: #ffffff;
    background: #7a6a61;
    border-color: #7a6a61; }
  .c-btn-border-2x.c-btn-brown-2:active, .c-btn-border-2x.c-btn-brown-2.active,
  .open > .c-btn-border-2x.c-btn-brown-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-brown-2.disabled, .c-btn-border-2x.c-btn-brown-2.disabled:hover, .c-btn-border-2x.c-btn-brown-2.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-brown-2.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-brown-2.disabled:active, .c-btn-border-2x.c-btn-brown-2.disabled.active, .c-btn-border-2x.c-btn-brown-2[disabled], .c-btn-border-2x.c-btn-brown-2[disabled]:hover, .c-btn-border-2x.c-btn-brown-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-brown-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-brown-2[disabled]:active, .c-btn-border-2x.c-btn-brown-2[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-2,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-2:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-2:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-2.active {
    background: none;
    border-color: #7a6a61; }
  .c-btn-border-2x.c-btn-brown-2 .badge {
    color: none;
    background: #7a6a61; }

.c-btn-border-2x.c-btn-brown-3 {
  border-color: #9d8b81;
  color: #9d8b81;
  background: none;
  border-color: #9d8b81; }
  .c-btn-border-2x.c-btn-brown-3.btn-no-focus:focus, .c-btn-border-2x.c-btn-brown-3.btn-no-focus.focus {
    color: #9d8b81;
    background: none;
    border-color: #9d8b81; }
  .c-btn-border-2x.c-btn-brown-3.btn-no-focus:hover, .c-btn-border-2x.c-btn-brown-3:hover, .c-btn-border-2x.c-btn-brown-3.btn-no-focus:active, .c-btn-border-2x.c-btn-brown-3:active, .c-btn-border-2x.c-btn-brown-3.active,
  .open > .c-btn-border-2x.c-btn-brown-3.dropdown-toggle {
    color: #ffffff;
    background: #9d8b81;
    border-color: #9d8b81; }
  .c-btn-border-2x.c-btn-brown-3:active, .c-btn-border-2x.c-btn-brown-3.active,
  .open > .c-btn-border-2x.c-btn-brown-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-brown-3.disabled, .c-btn-border-2x.c-btn-brown-3.disabled:hover, .c-btn-border-2x.c-btn-brown-3.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-brown-3.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-brown-3.disabled:active, .c-btn-border-2x.c-btn-brown-3.disabled.active, .c-btn-border-2x.c-btn-brown-3[disabled], .c-btn-border-2x.c-btn-brown-3[disabled]:hover, .c-btn-border-2x.c-btn-brown-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-brown-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-brown-3[disabled]:active, .c-btn-border-2x.c-btn-brown-3[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-3,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-3:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-3:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-brown-3.active {
    background: none;
    border-color: #9d8b81; }
  .c-btn-border-2x.c-btn-brown-3 .badge {
    color: none;
    background: #9d8b81; }

.c-btn-border-2x.c-btn-dark {
  border-color: #2f353b;
  color: #2f353b;
  background: none;
  border-color: #2f353b; }
  .c-btn-border-2x.c-btn-dark.btn-no-focus:focus, .c-btn-border-2x.c-btn-dark.btn-no-focus.focus {
    color: #2f353b;
    background: none;
    border-color: #2f353b; }
  .c-btn-border-2x.c-btn-dark.btn-no-focus:hover, .c-btn-border-2x.c-btn-dark:hover, .c-btn-border-2x.c-btn-dark.btn-no-focus:active, .c-btn-border-2x.c-btn-dark:active, .c-btn-border-2x.c-btn-dark.active,
  .open > .c-btn-border-2x.c-btn-dark.dropdown-toggle {
    color: #ffffff;
    background: #2f353b;
    border-color: #2f353b; }
  .c-btn-border-2x.c-btn-dark:active, .c-btn-border-2x.c-btn-dark.active,
  .open > .c-btn-border-2x.c-btn-dark.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-dark.disabled, .c-btn-border-2x.c-btn-dark.disabled:hover, .c-btn-border-2x.c-btn-dark.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-dark.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-dark.disabled:active, .c-btn-border-2x.c-btn-dark.disabled.active, .c-btn-border-2x.c-btn-dark[disabled], .c-btn-border-2x.c-btn-dark[disabled]:hover, .c-btn-border-2x.c-btn-dark[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-dark[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-dark[disabled]:active, .c-btn-border-2x.c-btn-dark[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark.active {
    background: none;
    border-color: #2f353b; }
  .c-btn-border-2x.c-btn-dark .badge {
    color: none;
    background: #2f353b; }

.c-btn-border-2x.c-btn-dark-1 {
  border-color: #525e64;
  color: #525e64;
  background: none;
  border-color: #525e64; }
  .c-btn-border-2x.c-btn-dark-1.btn-no-focus:focus, .c-btn-border-2x.c-btn-dark-1.btn-no-focus.focus {
    color: #525e64;
    background: none;
    border-color: #525e64; }
  .c-btn-border-2x.c-btn-dark-1.btn-no-focus:hover, .c-btn-border-2x.c-btn-dark-1:hover, .c-btn-border-2x.c-btn-dark-1.btn-no-focus:active, .c-btn-border-2x.c-btn-dark-1:active, .c-btn-border-2x.c-btn-dark-1.active,
  .open > .c-btn-border-2x.c-btn-dark-1.dropdown-toggle {
    color: #ffffff;
    background: #525e64;
    border-color: #525e64; }
  .c-btn-border-2x.c-btn-dark-1:active, .c-btn-border-2x.c-btn-dark-1.active,
  .open > .c-btn-border-2x.c-btn-dark-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-dark-1.disabled, .c-btn-border-2x.c-btn-dark-1.disabled:hover, .c-btn-border-2x.c-btn-dark-1.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-dark-1.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-dark-1.disabled:active, .c-btn-border-2x.c-btn-dark-1.disabled.active, .c-btn-border-2x.c-btn-dark-1[disabled], .c-btn-border-2x.c-btn-dark-1[disabled]:hover, .c-btn-border-2x.c-btn-dark-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-dark-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-dark-1[disabled]:active, .c-btn-border-2x.c-btn-dark-1[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-1,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-1:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-1:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-1.active {
    background: none;
    border-color: #525e64; }
  .c-btn-border-2x.c-btn-dark-1 .badge {
    color: none;
    background: #525e64; }

.c-btn-border-2x.c-btn-dark-2 {
  border-color: #31383c;
  color: #31383c;
  background: none;
  border-color: #31383c; }
  .c-btn-border-2x.c-btn-dark-2.btn-no-focus:focus, .c-btn-border-2x.c-btn-dark-2.btn-no-focus.focus {
    color: #31383c;
    background: none;
    border-color: #31383c; }
  .c-btn-border-2x.c-btn-dark-2.btn-no-focus:hover, .c-btn-border-2x.c-btn-dark-2:hover, .c-btn-border-2x.c-btn-dark-2.btn-no-focus:active, .c-btn-border-2x.c-btn-dark-2:active, .c-btn-border-2x.c-btn-dark-2.active,
  .open > .c-btn-border-2x.c-btn-dark-2.dropdown-toggle {
    color: #ffffff;
    background: #31383c;
    border-color: #31383c; }
  .c-btn-border-2x.c-btn-dark-2:active, .c-btn-border-2x.c-btn-dark-2.active,
  .open > .c-btn-border-2x.c-btn-dark-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-dark-2.disabled, .c-btn-border-2x.c-btn-dark-2.disabled:hover, .c-btn-border-2x.c-btn-dark-2.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-dark-2.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-dark-2.disabled:active, .c-btn-border-2x.c-btn-dark-2.disabled.active, .c-btn-border-2x.c-btn-dark-2[disabled], .c-btn-border-2x.c-btn-dark-2[disabled]:hover, .c-btn-border-2x.c-btn-dark-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-dark-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-dark-2[disabled]:active, .c-btn-border-2x.c-btn-dark-2[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-2,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-2:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-2:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-2.active {
    background: none;
    border-color: #31383c; }
  .c-btn-border-2x.c-btn-dark-2 .badge {
    color: none;
    background: #31383c; }

.c-btn-border-2x.c-btn-dark-3 {
  border-color: #41515b;
  color: #41515b;
  background: none;
  border-color: #41515b; }
  .c-btn-border-2x.c-btn-dark-3.btn-no-focus:focus, .c-btn-border-2x.c-btn-dark-3.btn-no-focus.focus {
    color: #41515b;
    background: none;
    border-color: #41515b; }
  .c-btn-border-2x.c-btn-dark-3.btn-no-focus:hover, .c-btn-border-2x.c-btn-dark-3:hover, .c-btn-border-2x.c-btn-dark-3.btn-no-focus:active, .c-btn-border-2x.c-btn-dark-3:active, .c-btn-border-2x.c-btn-dark-3.active,
  .open > .c-btn-border-2x.c-btn-dark-3.dropdown-toggle {
    color: #ffffff;
    background: #41515b;
    border-color: #41515b; }
  .c-btn-border-2x.c-btn-dark-3:active, .c-btn-border-2x.c-btn-dark-3.active,
  .open > .c-btn-border-2x.c-btn-dark-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-dark-3.disabled, .c-btn-border-2x.c-btn-dark-3.disabled:hover, .c-btn-border-2x.c-btn-dark-3.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-dark-3.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-dark-3.disabled:active, .c-btn-border-2x.c-btn-dark-3.disabled.active, .c-btn-border-2x.c-btn-dark-3[disabled], .c-btn-border-2x.c-btn-dark-3[disabled]:hover, .c-btn-border-2x.c-btn-dark-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-dark-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-dark-3[disabled]:active, .c-btn-border-2x.c-btn-dark-3[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-3,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-3:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-3:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-3.active {
    background: none;
    border-color: #41515b; }
  .c-btn-border-2x.c-btn-dark-3 .badge {
    color: none;
    background: #41515b; }

.c-btn-border-2x.c-btn-dark-4 {
  border-color: #24272b;
  color: #24272b;
  background: none;
  border-color: #24272b; }
  .c-btn-border-2x.c-btn-dark-4.btn-no-focus:focus, .c-btn-border-2x.c-btn-dark-4.btn-no-focus.focus {
    color: #24272b;
    background: none;
    border-color: #24272b; }
  .c-btn-border-2x.c-btn-dark-4.btn-no-focus:hover, .c-btn-border-2x.c-btn-dark-4:hover, .c-btn-border-2x.c-btn-dark-4.btn-no-focus:active, .c-btn-border-2x.c-btn-dark-4:active, .c-btn-border-2x.c-btn-dark-4.active,
  .open > .c-btn-border-2x.c-btn-dark-4.dropdown-toggle {
    color: #ffffff;
    background: #24272b;
    border-color: #24272b; }
  .c-btn-border-2x.c-btn-dark-4:active, .c-btn-border-2x.c-btn-dark-4.active,
  .open > .c-btn-border-2x.c-btn-dark-4.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-dark-4.disabled, .c-btn-border-2x.c-btn-dark-4.disabled:hover, .c-btn-border-2x.c-btn-dark-4.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-dark-4.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-dark-4.disabled:active, .c-btn-border-2x.c-btn-dark-4.disabled.active, .c-btn-border-2x.c-btn-dark-4[disabled], .c-btn-border-2x.c-btn-dark-4[disabled]:hover, .c-btn-border-2x.c-btn-dark-4[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-dark-4[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-dark-4[disabled]:active, .c-btn-border-2x.c-btn-dark-4[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-4,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-4:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-4:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-dark-4.active {
    background: none;
    border-color: #24272b; }
  .c-btn-border-2x.c-btn-dark-4 .badge {
    color: none;
    background: #24272b; }

.c-btn-border-2x.c-btn-grey {
  border-color: #eeeeee;
  color: #eeeeee;
  background: none;
  border-color: #eeeeee; }
  .c-btn-border-2x.c-btn-grey.btn-no-focus:focus, .c-btn-border-2x.c-btn-grey.btn-no-focus.focus {
    color: #eeeeee;
    background: none;
    border-color: #eeeeee; }
  .c-btn-border-2x.c-btn-grey.btn-no-focus:hover, .c-btn-border-2x.c-btn-grey:hover, .c-btn-border-2x.c-btn-grey.btn-no-focus:active, .c-btn-border-2x.c-btn-grey:active, .c-btn-border-2x.c-btn-grey.active,
  .open > .c-btn-border-2x.c-btn-grey.dropdown-toggle {
    color: #6f6f6f;
    background: #eeeeee;
    border-color: #eeeeee; }
  .c-btn-border-2x.c-btn-grey:active, .c-btn-border-2x.c-btn-grey.active,
  .open > .c-btn-border-2x.c-btn-grey.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-grey.disabled, .c-btn-border-2x.c-btn-grey.disabled:hover, .c-btn-border-2x.c-btn-grey.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-grey.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-grey.disabled:active, .c-btn-border-2x.c-btn-grey.disabled.active, .c-btn-border-2x.c-btn-grey[disabled], .c-btn-border-2x.c-btn-grey[disabled]:hover, .c-btn-border-2x.c-btn-grey[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-grey[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-grey[disabled]:active, .c-btn-border-2x.c-btn-grey[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey.active {
    background: none;
    border-color: #eeeeee; }
  .c-btn-border-2x.c-btn-grey .badge {
    color: none;
    background: #eeeeee; }

.c-btn-border-2x.c-btn-grey-1 {
  border-color: #f7f7f7;
  color: #f7f7f7;
  background: none;
  border-color: #f7f7f7; }
  .c-btn-border-2x.c-btn-grey-1.btn-no-focus:focus, .c-btn-border-2x.c-btn-grey-1.btn-no-focus.focus {
    color: #f7f7f7;
    background: none;
    border-color: #f7f7f7; }
  .c-btn-border-2x.c-btn-grey-1.btn-no-focus:hover, .c-btn-border-2x.c-btn-grey-1:hover, .c-btn-border-2x.c-btn-grey-1.btn-no-focus:active, .c-btn-border-2x.c-btn-grey-1:active, .c-btn-border-2x.c-btn-grey-1.active,
  .open > .c-btn-border-2x.c-btn-grey-1.dropdown-toggle {
    color: #787878;
    background: #f7f7f7;
    border-color: #f7f7f7; }
  .c-btn-border-2x.c-btn-grey-1:active, .c-btn-border-2x.c-btn-grey-1.active,
  .open > .c-btn-border-2x.c-btn-grey-1.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-grey-1.disabled, .c-btn-border-2x.c-btn-grey-1.disabled:hover, .c-btn-border-2x.c-btn-grey-1.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-grey-1.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-grey-1.disabled:active, .c-btn-border-2x.c-btn-grey-1.disabled.active, .c-btn-border-2x.c-btn-grey-1[disabled], .c-btn-border-2x.c-btn-grey-1[disabled]:hover, .c-btn-border-2x.c-btn-grey-1[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-grey-1[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-grey-1[disabled]:active, .c-btn-border-2x.c-btn-grey-1[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-1,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-1:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-1:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-1:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-1:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-1.active {
    background: none;
    border-color: #f7f7f7; }
  .c-btn-border-2x.c-btn-grey-1 .badge {
    color: none;
    background: #f7f7f7; }

.c-btn-border-2x.c-btn-grey-2 {
  border-color: #677083;
  color: #677083;
  background: none;
  border-color: #677083; }
  .c-btn-border-2x.c-btn-grey-2.btn-no-focus:focus, .c-btn-border-2x.c-btn-grey-2.btn-no-focus.focus {
    color: #677083;
    background: none;
    border-color: #677083; }
  .c-btn-border-2x.c-btn-grey-2.btn-no-focus:hover, .c-btn-border-2x.c-btn-grey-2:hover, .c-btn-border-2x.c-btn-grey-2.btn-no-focus:active, .c-btn-border-2x.c-btn-grey-2:active, .c-btn-border-2x.c-btn-grey-2.active,
  .open > .c-btn-border-2x.c-btn-grey-2.dropdown-toggle {
    color: #ffffff;
    background: #677083;
    border-color: #677083; }
  .c-btn-border-2x.c-btn-grey-2:active, .c-btn-border-2x.c-btn-grey-2.active,
  .open > .c-btn-border-2x.c-btn-grey-2.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-grey-2.disabled, .c-btn-border-2x.c-btn-grey-2.disabled:hover, .c-btn-border-2x.c-btn-grey-2.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-grey-2.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-grey-2.disabled:active, .c-btn-border-2x.c-btn-grey-2.disabled.active, .c-btn-border-2x.c-btn-grey-2[disabled], .c-btn-border-2x.c-btn-grey-2[disabled]:hover, .c-btn-border-2x.c-btn-grey-2[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-grey-2[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-grey-2[disabled]:active, .c-btn-border-2x.c-btn-grey-2[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-2,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-2:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-2:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-2:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-2:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-2.active {
    background: none;
    border-color: #677083; }
  .c-btn-border-2x.c-btn-grey-2 .badge {
    color: none;
    background: #677083; }

.c-btn-border-2x.c-btn-grey-3 {
  border-color: #7f8c97;
  color: #7f8c97;
  background: none;
  border-color: #7f8c97; }
  .c-btn-border-2x.c-btn-grey-3.btn-no-focus:focus, .c-btn-border-2x.c-btn-grey-3.btn-no-focus.focus {
    color: #7f8c97;
    background: none;
    border-color: #7f8c97; }
  .c-btn-border-2x.c-btn-grey-3.btn-no-focus:hover, .c-btn-border-2x.c-btn-grey-3:hover, .c-btn-border-2x.c-btn-grey-3.btn-no-focus:active, .c-btn-border-2x.c-btn-grey-3:active, .c-btn-border-2x.c-btn-grey-3.active,
  .open > .c-btn-border-2x.c-btn-grey-3.dropdown-toggle {
    color: #ffffff;
    background: #7f8c97;
    border-color: #7f8c97; }
  .c-btn-border-2x.c-btn-grey-3:active, .c-btn-border-2x.c-btn-grey-3.active,
  .open > .c-btn-border-2x.c-btn-grey-3.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-grey-3.disabled, .c-btn-border-2x.c-btn-grey-3.disabled:hover, .c-btn-border-2x.c-btn-grey-3.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-grey-3.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-grey-3.disabled:active, .c-btn-border-2x.c-btn-grey-3.disabled.active, .c-btn-border-2x.c-btn-grey-3[disabled], .c-btn-border-2x.c-btn-grey-3[disabled]:hover, .c-btn-border-2x.c-btn-grey-3[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-grey-3[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-grey-3[disabled]:active, .c-btn-border-2x.c-btn-grey-3[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-3,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-3:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-3:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-3:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-3:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-3.active {
    background: none;
    border-color: #7f8c97; }
  .c-btn-border-2x.c-btn-grey-3 .badge {
    color: none;
    background: #7f8c97; }

.c-btn-border-2x.c-btn-grey-4 {
  border-color: #a0a6ab;
  color: #a0a6ab;
  background: none;
  border-color: #a0a6ab; }
  .c-btn-border-2x.c-btn-grey-4.btn-no-focus:focus, .c-btn-border-2x.c-btn-grey-4.btn-no-focus.focus {
    color: #a0a6ab;
    background: none;
    border-color: #a0a6ab; }
  .c-btn-border-2x.c-btn-grey-4.btn-no-focus:hover, .c-btn-border-2x.c-btn-grey-4:hover, .c-btn-border-2x.c-btn-grey-4.btn-no-focus:active, .c-btn-border-2x.c-btn-grey-4:active, .c-btn-border-2x.c-btn-grey-4.active,
  .open > .c-btn-border-2x.c-btn-grey-4.dropdown-toggle {
    color: #ffffff;
    background: #a0a6ab;
    border-color: #a0a6ab; }
  .c-btn-border-2x.c-btn-grey-4:active, .c-btn-border-2x.c-btn-grey-4.active,
  .open > .c-btn-border-2x.c-btn-grey-4.dropdown-toggle {
    background-image: none; }
  .c-btn-border-2x.c-btn-grey-4.disabled, .c-btn-border-2x.c-btn-grey-4.disabled:hover, .c-btn-border-2x.c-btn-grey-4.disabled:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-grey-4.disabled:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-grey-4.disabled:active, .c-btn-border-2x.c-btn-grey-4.disabled.active, .c-btn-border-2x.c-btn-grey-4[disabled], .c-btn-border-2x.c-btn-grey-4[disabled]:hover, .c-btn-border-2x.c-btn-grey-4[disabled]:not(.btn-no-focus):focus, .c-btn-border-2x.c-btn-grey-4[disabled]:not(.btn-no-focus).focus, .c-btn-border-2x.c-btn-grey-4[disabled]:active, .c-btn-border-2x.c-btn-grey-4[disabled].active,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-4,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-4:hover,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-4:not(.btn-no-focus):focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-4:not(.btn-no-focus).focus,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-4:active,
  fieldset[disabled] .c-btn-border-2x.c-btn-grey-4.active {
    background: none;
    border-color: #a0a6ab; }
  .c-btn-border-2x.c-btn-grey-4 .badge {
    color: none;
    background: #a0a6ab; }

.btn.c-btn-icon.c-btn-white {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #2f353b; }
  .btn.c-btn-icon.c-btn-white > i {
    background: #f2f2f2;
    color: #2f353b; }
  .btn.c-btn-icon.c-btn-white > .c-helper {
    color: #2f353b; }
  .btn.c-btn-icon.c-btn-white:hover, .btn.c-btn-icon.c-btn-white:focus, .btn.c-btn-icon.c-btn-white.focus, .btn.c-btn-icon.c-btn-white:active, .btn.c-btn-icon.c-btn-white.active {
    color: #2f353b;
    background: #f2f2f2;
    border-color: #f2f2f2; }
    .btn.c-btn-icon.c-btn-white:hover > i, .btn.c-btn-icon.c-btn-white:focus > i, .btn.c-btn-icon.c-btn-white.focus > i, .btn.c-btn-icon.c-btn-white:active > i, .btn.c-btn-icon.c-btn-white.active > i {
      background: #ebebeb; }

.btn.c-btn-icon.c-btn-black {
  background: #000000;
  border-color: #000000;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-black > i {
    background: black;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-black > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-black:hover, .btn.c-btn-icon.c-btn-black:focus, .btn.c-btn-icon.c-btn-black.focus, .btn.c-btn-icon.c-btn-black:active, .btn.c-btn-icon.c-btn-black.active {
    color: #ffffff;
    background: black;
    border-color: black; }
    .btn.c-btn-icon.c-btn-black:hover > i, .btn.c-btn-icon.c-btn-black:focus > i, .btn.c-btn-icon.c-btn-black.focus > i, .btn.c-btn-icon.c-btn-black:active > i, .btn.c-btn-icon.c-btn-black.active > i {
      background: black; }

.btn.c-btn-icon.c-btn-regular {
  background: #7f8c97;
  border-color: #7f8c97;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-regular > i {
    background: #717f8b;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-regular > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-regular:hover, .btn.c-btn-icon.c-btn-regular:focus, .btn.c-btn-icon.c-btn-regular.focus, .btn.c-btn-icon.c-btn-regular:active, .btn.c-btn-icon.c-btn-regular.active {
    color: #ffffff;
    background: #717f8b;
    border-color: #717f8b; }
    .btn.c-btn-icon.c-btn-regular:hover > i, .btn.c-btn-icon.c-btn-regular:focus > i, .btn.c-btn-icon.c-btn-regular.focus > i, .btn.c-btn-icon.c-btn-regular:active > i, .btn.c-btn-icon.c-btn-regular.active > i {
      background: #6a7883; }

.btn.c-btn-icon.c-btn-green {
  background: #32c5d2;
  border-color: #32c5d2;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-green > i {
    background: #2ab4c0;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-green > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-green:hover, .btn.c-btn-icon.c-btn-green:focus, .btn.c-btn-icon.c-btn-green.focus, .btn.c-btn-icon.c-btn-green:active, .btn.c-btn-icon.c-btn-green.active {
    color: #ffffff;
    background: #2ab4c0;
    border-color: #2ab4c0; }
    .btn.c-btn-icon.c-btn-green:hover > i, .btn.c-btn-icon.c-btn-green:focus > i, .btn.c-btn-icon.c-btn-green.focus > i, .btn.c-btn-icon.c-btn-green:active > i, .btn.c-btn-icon.c-btn-green.active > i {
      background: #27a8b4; }

.btn.c-btn-icon.c-btn-green-1 {
  background: #52c9ba;
  border-color: #52c9ba;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-1 > i {
    background: #3fc3b2;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-1 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-1:hover, .btn.c-btn-icon.c-btn-green-1:focus, .btn.c-btn-icon.c-btn-green-1.focus, .btn.c-btn-icon.c-btn-green-1:active, .btn.c-btn-icon.c-btn-green-1.active {
    color: #ffffff;
    background: #3fc3b2;
    border-color: #3fc3b2; }
    .btn.c-btn-icon.c-btn-green-1:hover > i, .btn.c-btn-icon.c-btn-green-1:focus > i, .btn.c-btn-icon.c-btn-green-1.focus > i, .btn.c-btn-icon.c-btn-green-1:active > i, .btn.c-btn-icon.c-btn-green-1.active > i {
      background: #3ab9a9; }

.btn.c-btn-icon.c-btn-green-2 {
  background: #5dc09c;
  border-color: #5dc09c;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-2 > i {
    background: #4bb991;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-2 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-2:hover, .btn.c-btn-icon.c-btn-green-2:focus, .btn.c-btn-icon.c-btn-green-2.focus, .btn.c-btn-icon.c-btn-green-2:active, .btn.c-btn-icon.c-btn-green-2.active {
    color: #ffffff;
    background: #4bb991;
    border-color: #4bb991; }
    .btn.c-btn-icon.c-btn-green-2:hover > i, .btn.c-btn-icon.c-btn-green-2:focus > i, .btn.c-btn-icon.c-btn-green-2.focus > i, .btn.c-btn-icon.c-btn-green-2:active > i, .btn.c-btn-icon.c-btn-green-2.active > i {
      background: #44b089; }

.btn.c-btn-icon.c-btn-green-3 {
  background: #84c68f;
  border-color: #84c68f;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-3 > i {
    background: #73be7f;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-3 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-3:hover, .btn.c-btn-icon.c-btn-green-3:focus, .btn.c-btn-icon.c-btn-green-3.focus, .btn.c-btn-icon.c-btn-green-3:active, .btn.c-btn-icon.c-btn-green-3.active {
    color: #ffffff;
    background: #73be7f;
    border-color: #73be7f; }
    .btn.c-btn-icon.c-btn-green-3:hover > i, .btn.c-btn-icon.c-btn-green-3:focus > i, .btn.c-btn-icon.c-btn-green-3.focus > i, .btn.c-btn-icon.c-btn-green-3:active > i, .btn.c-btn-icon.c-btn-green-3.active > i {
      background: #68b976; }

.btn.c-btn-icon.c-btn-green-4 {
  background: #3cb878;
  border-color: #3cb878;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-4 > i {
    background: #36a56b;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-4 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-green-4:hover, .btn.c-btn-icon.c-btn-green-4:focus, .btn.c-btn-icon.c-btn-green-4.focus, .btn.c-btn-icon.c-btn-green-4:active, .btn.c-btn-icon.c-btn-green-4.active {
    color: #ffffff;
    background: #36a56b;
    border-color: #36a56b; }
    .btn.c-btn-icon.c-btn-green-4:hover > i, .btn.c-btn-icon.c-btn-green-4:focus > i, .btn.c-btn-icon.c-btn-green-4.focus > i, .btn.c-btn-icon.c-btn-green-4:active > i, .btn.c-btn-icon.c-btn-green-4.active > i {
      background: #329964; }

.btn.c-btn-icon.c-btn-red {
  background: #eb5d68;
  border-color: #eb5d68;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-red > i {
    background: #e84653;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-red > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-red:hover, .btn.c-btn-icon.c-btn-red:focus, .btn.c-btn-icon.c-btn-red.focus, .btn.c-btn-icon.c-btn-red:active, .btn.c-btn-icon.c-btn-red.active {
    color: #ffffff;
    background: #e84653;
    border-color: #e84653; }
    .btn.c-btn-icon.c-btn-red:hover > i, .btn.c-btn-icon.c-btn-red:focus > i, .btn.c-btn-icon.c-btn-red.focus > i, .btn.c-btn-icon.c-btn-red:active > i, .btn.c-btn-icon.c-btn-red.active > i {
      background: #e73946; }

.btn.c-btn-icon.c-btn-red-1 {
  background: #cd6262;
  border-color: #cd6262;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-red-1 > i {
    background: #c74f4f;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-red-1 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-red-1:hover, .btn.c-btn-icon.c-btn-red-1:focus, .btn.c-btn-icon.c-btn-red-1.focus, .btn.c-btn-icon.c-btn-red-1:active, .btn.c-btn-icon.c-btn-red-1.active {
    color: #ffffff;
    background: #c74f4f;
    border-color: #c74f4f; }
    .btn.c-btn-icon.c-btn-red-1:hover > i, .btn.c-btn-icon.c-btn-red-1:focus > i, .btn.c-btn-icon.c-btn-red-1.focus > i, .btn.c-btn-icon.c-btn-red-1:active > i, .btn.c-btn-icon.c-btn-red-1.active > i {
      background: #c34343; }

.btn.c-btn-icon.c-btn-red-2 {
  background: #e7505a;
  border-color: #e7505a;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-red-2 > i {
    background: #e43a45;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-red-2 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-red-2:hover, .btn.c-btn-icon.c-btn-red-2:focus, .btn.c-btn-icon.c-btn-red-2.focus, .btn.c-btn-icon.c-btn-red-2:active, .btn.c-btn-icon.c-btn-red-2.active {
    color: #ffffff;
    background: #e43a45;
    border-color: #e43a45; }
    .btn.c-btn-icon.c-btn-red-2:hover > i, .btn.c-btn-icon.c-btn-red-2:focus > i, .btn.c-btn-icon.c-btn-red-2.focus > i, .btn.c-btn-icon.c-btn-red-2:active > i, .btn.c-btn-icon.c-btn-red-2.active > i {
      background: #e22c38; }

.btn.c-btn-icon.c-btn-red-3 {
  background: #d05163;
  border-color: #d05163;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-red-3 > i {
    background: #cb3d51;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-red-3 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-red-3:hover, .btn.c-btn-icon.c-btn-red-3:focus, .btn.c-btn-icon.c-btn-red-3.focus, .btn.c-btn-icon.c-btn-red-3:active, .btn.c-btn-icon.c-btn-red-3.active {
    color: #ffffff;
    background: #cb3d51;
    border-color: #cb3d51; }
    .btn.c-btn-icon.c-btn-red-3:hover > i, .btn.c-btn-icon.c-btn-red-3:focus > i, .btn.c-btn-icon.c-btn-red-3.focus > i, .btn.c-btn-icon.c-btn-red-3:active > i, .btn.c-btn-icon.c-btn-red-3.active > i {
      background: #c33549; }

.btn.c-btn-icon.c-btn-yellow {
  background: #FF6B57;
  border-color: #FF6B57;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow > i {
    background: #ff553e;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow:hover, .btn.c-btn-icon.c-btn-yellow:focus, .btn.c-btn-icon.c-btn-yellow.focus, .btn.c-btn-icon.c-btn-yellow:active, .btn.c-btn-icon.c-btn-yellow.active {
    color: #ffffff;
    background: #ff553e;
    border-color: #ff553e; }
    .btn.c-btn-icon.c-btn-yellow:hover > i, .btn.c-btn-icon.c-btn-yellow:focus > i, .btn.c-btn-icon.c-btn-yellow.focus > i, .btn.c-btn-icon.c-btn-yellow:active > i, .btn.c-btn-icon.c-btn-yellow.active > i {
      background: #ff472e; }

.btn.c-btn-icon.c-btn-yellow-1 {
  background: #c8d046;
  border-color: #c8d046;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-1 > i {
    background: #c1c933;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-1 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-1:hover, .btn.c-btn-icon.c-btn-yellow-1:focus, .btn.c-btn-icon.c-btn-yellow-1.focus, .btn.c-btn-icon.c-btn-yellow-1:active, .btn.c-btn-icon.c-btn-yellow-1.active {
    color: #ffffff;
    background: #c1c933;
    border-color: #c1c933; }
    .btn.c-btn-icon.c-btn-yellow-1:hover > i, .btn.c-btn-icon.c-btn-yellow-1:focus > i, .btn.c-btn-icon.c-btn-yellow-1.focus > i, .btn.c-btn-icon.c-btn-yellow-1:active > i, .btn.c-btn-icon.c-btn-yellow-1.active > i {
      background: #b5bd30; }

.btn.c-btn-icon.c-btn-yellow-2 {
  background: #c5bf66;
  border-color: #c5bf66;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-2 > i {
    background: #beb754;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-2 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-2:hover, .btn.c-btn-icon.c-btn-yellow-2:focus, .btn.c-btn-icon.c-btn-yellow-2.focus, .btn.c-btn-icon.c-btn-yellow-2:active, .btn.c-btn-icon.c-btn-yellow-2.active {
    color: #ffffff;
    background: #beb754;
    border-color: #beb754; }
    .btn.c-btn-icon.c-btn-yellow-2:hover > i, .btn.c-btn-icon.c-btn-yellow-2:focus > i, .btn.c-btn-icon.c-btn-yellow-2.focus > i, .btn.c-btn-icon.c-btn-yellow-2:active > i, .btn.c-btn-icon.c-btn-yellow-2.active > i {
      background: #bab348; }

.btn.c-btn-icon.c-btn-yellow-3 {
  background: #c5b96b;
  border-color: #c5b96b;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-3 > i {
    background: #beb059;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-3 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-3:hover, .btn.c-btn-icon.c-btn-yellow-3:focus, .btn.c-btn-icon.c-btn-yellow-3.focus, .btn.c-btn-icon.c-btn-yellow-3:active, .btn.c-btn-icon.c-btn-yellow-3.active {
    color: #ffffff;
    background: #beb059;
    border-color: #beb059; }
    .btn.c-btn-icon.c-btn-yellow-3:hover > i, .btn.c-btn-icon.c-btn-yellow-3:focus > i, .btn.c-btn-icon.c-btn-yellow-3.focus > i, .btn.c-btn-icon.c-btn-yellow-3:active > i, .btn.c-btn-icon.c-btn-yellow-3.active > i {
      background: #baab4e; }

.btn.c-btn-icon.c-btn-yellow-4 {
  background: #fff200;
  border-color: #fff200;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-4 > i {
    background: #e6da00;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-4 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-yellow-4:hover, .btn.c-btn-icon.c-btn-yellow-4:focus, .btn.c-btn-icon.c-btn-yellow-4.focus, .btn.c-btn-icon.c-btn-yellow-4:active, .btn.c-btn-icon.c-btn-yellow-4.active {
    color: #ffffff;
    background: #e6da00;
    border-color: #e6da00; }
    .btn.c-btn-icon.c-btn-yellow-4:hover > i, .btn.c-btn-icon.c-btn-yellow-4:focus > i, .btn.c-btn-icon.c-btn-yellow-4.focus > i, .btn.c-btn-icon.c-btn-yellow-4:active > i, .btn.c-btn-icon.c-btn-yellow-4.active > i {
      background: #d6cb00; }

.btn.c-btn-icon.c-btn-blue {
  background: #3498DB;
  border-color: #3498DB;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue > i {
    background: #258cd1;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue:hover, .btn.c-btn-icon.c-btn-blue:focus, .btn.c-btn-icon.c-btn-blue.focus, .btn.c-btn-icon.c-btn-blue:active, .btn.c-btn-icon.c-btn-blue.active {
    color: #ffffff;
    background: #258cd1;
    border-color: #258cd1; }
    .btn.c-btn-icon.c-btn-blue:hover > i, .btn.c-btn-icon.c-btn-blue:focus > i, .btn.c-btn-icon.c-btn-blue.focus > i, .btn.c-btn-icon.c-btn-blue:active > i, .btn.c-btn-icon.c-btn-blue.active > i {
      background: #2383c4; }

.btn.c-btn-icon.c-btn-blue-1 {
  background: #5e9cd1;
  border-color: #5e9cd1;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-1 > i {
    background: #4a90cb;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-1 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-1:hover, .btn.c-btn-icon.c-btn-blue-1:focus, .btn.c-btn-icon.c-btn-blue-1.focus, .btn.c-btn-icon.c-btn-blue-1:active, .btn.c-btn-icon.c-btn-blue-1.active {
    color: #ffffff;
    background: #4a90cb;
    border-color: #4a90cb; }
    .btn.c-btn-icon.c-btn-blue-1:hover > i, .btn.c-btn-icon.c-btn-blue-1:focus > i, .btn.c-btn-icon.c-btn-blue-1.focus > i, .btn.c-btn-icon.c-btn-blue-1:active > i, .btn.c-btn-icon.c-btn-blue-1.active > i {
      background: #3e88c8; }

.btn.c-btn-icon.c-btn-blue-2 {
  background: #5893dd;
  border-color: #5893dd;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-2 > i {
    background: #4385d9;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-2 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-2:hover, .btn.c-btn-icon.c-btn-blue-2:focus, .btn.c-btn-icon.c-btn-blue-2.focus, .btn.c-btn-icon.c-btn-blue-2:active, .btn.c-btn-icon.c-btn-blue-2.active {
    color: #ffffff;
    background: #4385d9;
    border-color: #4385d9; }
    .btn.c-btn-icon.c-btn-blue-2:hover > i, .btn.c-btn-icon.c-btn-blue-2:focus > i, .btn.c-btn-icon.c-btn-blue-2.focus > i, .btn.c-btn-icon.c-btn-blue-2:active > i, .btn.c-btn-icon.c-btn-blue-2.active > i {
      background: #367dd6; }

.btn.c-btn-icon.c-btn-blue-3 {
  background: #57bfe1;
  border-color: #57bfe1;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-3 > i {
    background: #41b7dd;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-3 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-3:hover, .btn.c-btn-icon.c-btn-blue-3:focus, .btn.c-btn-icon.c-btn-blue-3.focus, .btn.c-btn-icon.c-btn-blue-3:active, .btn.c-btn-icon.c-btn-blue-3.active {
    color: #ffffff;
    background: #41b7dd;
    border-color: #41b7dd; }
    .btn.c-btn-icon.c-btn-blue-3:hover > i, .btn.c-btn-icon.c-btn-blue-3:focus > i, .btn.c-btn-icon.c-btn-blue-3.focus > i, .btn.c-btn-icon.c-btn-blue-3:active > i, .btn.c-btn-icon.c-btn-blue-3.active > i {
      background: #34b2db; }

.btn.c-btn-icon.c-btn-blue-4 {
  background: #428de4;
  border-color: #428de4;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-4 > i {
    background: #2c80e1;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-4 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-blue-4:hover, .btn.c-btn-icon.c-btn-blue-4:focus, .btn.c-btn-icon.c-btn-blue-4.focus, .btn.c-btn-icon.c-btn-blue-4:active, .btn.c-btn-icon.c-btn-blue-4.active {
    color: #ffffff;
    background: #2c80e1;
    border-color: #2c80e1; }
    .btn.c-btn-icon.c-btn-blue-4:hover > i, .btn.c-btn-icon.c-btn-blue-4:focus > i, .btn.c-btn-icon.c-btn-blue-4.focus > i, .btn.c-btn-icon.c-btn-blue-4:active > i, .btn.c-btn-icon.c-btn-blue-4.active > i {
      background: #2078de; }

.btn.c-btn-icon.c-btn-purple {
  background: #b771b0;
  border-color: #b771b0;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple > i {
    background: #ae60a7;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple:hover, .btn.c-btn-icon.c-btn-purple:focus, .btn.c-btn-icon.c-btn-purple.focus, .btn.c-btn-icon.c-btn-purple:active, .btn.c-btn-icon.c-btn-purple.active {
    color: #ffffff;
    background: #ae60a7;
    border-color: #ae60a7; }
    .btn.c-btn-icon.c-btn-purple:hover > i, .btn.c-btn-icon.c-btn-purple:focus > i, .btn.c-btn-icon.c-btn-purple.focus > i, .btn.c-btn-icon.c-btn-purple:active > i, .btn.c-btn-icon.c-btn-purple.active > i {
      background: #a956a1; }

.btn.c-btn-icon.c-btn-purple-1 {
  background: #a962bb;
  border-color: #a962bb;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple-1 > i {
    background: #9f50b3;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple-1 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple-1:hover, .btn.c-btn-icon.c-btn-purple-1:focus, .btn.c-btn-icon.c-btn-purple-1.focus, .btn.c-btn-icon.c-btn-purple-1:active, .btn.c-btn-icon.c-btn-purple-1.active {
    color: #ffffff;
    background: #9f50b3;
    border-color: #9f50b3; }
    .btn.c-btn-icon.c-btn-purple-1:hover > i, .btn.c-btn-icon.c-btn-purple-1:focus > i, .btn.c-btn-icon.c-btn-purple-1.focus > i, .btn.c-btn-icon.c-btn-purple-1:active > i, .btn.c-btn-icon.c-btn-purple-1.active > i {
      background: #974aaa; }

.btn.c-btn-icon.c-btn-purple-2 {
  background: #aa67a3;
  border-color: #aa67a3;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple-2 > i {
    background: #9f5997;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple-2 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple-2:hover, .btn.c-btn-icon.c-btn-purple-2:focus, .btn.c-btn-icon.c-btn-purple-2.focus, .btn.c-btn-icon.c-btn-purple-2:active, .btn.c-btn-icon.c-btn-purple-2.active {
    color: #ffffff;
    background: #9f5997;
    border-color: #9f5997; }
    .btn.c-btn-icon.c-btn-purple-2:hover > i, .btn.c-btn-icon.c-btn-purple-2:focus > i, .btn.c-btn-icon.c-btn-purple-2.focus > i, .btn.c-btn-icon.c-btn-purple-2:active > i, .btn.c-btn-icon.c-btn-purple-2.active > i {
      background: #95538e; }

.btn.c-btn-icon.c-btn-purple-3 {
  background: #ac3773;
  border-color: #ac3773;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple-3 > i {
    background: #993166;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple-3 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-purple-3:hover, .btn.c-btn-icon.c-btn-purple-3:focus, .btn.c-btn-icon.c-btn-purple-3.focus, .btn.c-btn-icon.c-btn-purple-3:active, .btn.c-btn-icon.c-btn-purple-3.active {
    color: #ffffff;
    background: #993166;
    border-color: #993166; }
    .btn.c-btn-icon.c-btn-purple-3:hover > i, .btn.c-btn-icon.c-btn-purple-3:focus > i, .btn.c-btn-icon.c-btn-purple-3.focus > i, .btn.c-btn-icon.c-btn-purple-3:active > i, .btn.c-btn-icon.c-btn-purple-3.active > i {
      background: #8d2d5e; }

.btn.c-btn-icon.c-btn-brown {
  background: #8a7f68;
  border-color: #8a7f68;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown > i {
    background: #7b725d;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown:hover, .btn.c-btn-icon.c-btn-brown:focus, .btn.c-btn-icon.c-btn-brown.focus, .btn.c-btn-icon.c-btn-brown:active, .btn.c-btn-icon.c-btn-brown.active {
    color: #ffffff;
    background: #7b725d;
    border-color: #7b725d; }
    .btn.c-btn-icon.c-btn-brown:hover > i, .btn.c-btn-icon.c-btn-brown:focus > i, .btn.c-btn-icon.c-btn-brown.focus > i, .btn.c-btn-icon.c-btn-brown:active > i, .btn.c-btn-icon.c-btn-brown.active > i {
      background: #736a56; }

.btn.c-btn-icon.c-btn-brown-1 {
  background: #685e47;
  border-color: #685e47;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown-1 > i {
    background: #59503d;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown-1 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown-1:hover, .btn.c-btn-icon.c-btn-brown-1:focus, .btn.c-btn-icon.c-btn-brown-1.focus, .btn.c-btn-icon.c-btn-brown-1:active, .btn.c-btn-icon.c-btn-brown-1.active {
    color: #ffffff;
    background: #59503d;
    border-color: #59503d; }
    .btn.c-btn-icon.c-btn-brown-1:hover > i, .btn.c-btn-icon.c-btn-brown-1:focus > i, .btn.c-btn-icon.c-btn-brown-1.focus > i, .btn.c-btn-icon.c-btn-brown-1:active > i, .btn.c-btn-icon.c-btn-brown-1.active > i {
      background: #504836; }

.btn.c-btn-icon.c-btn-brown-2 {
  background: #7a6a61;
  border-color: #7a6a61;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown-2 > i {
    background: #6c5e56;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown-2 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown-2:hover, .btn.c-btn-icon.c-btn-brown-2:focus, .btn.c-btn-icon.c-btn-brown-2.focus, .btn.c-btn-icon.c-btn-brown-2:active, .btn.c-btn-icon.c-btn-brown-2.active {
    color: #ffffff;
    background: #6c5e56;
    border-color: #6c5e56; }
    .btn.c-btn-icon.c-btn-brown-2:hover > i, .btn.c-btn-icon.c-btn-brown-2:focus > i, .btn.c-btn-icon.c-btn-brown-2.focus > i, .btn.c-btn-icon.c-btn-brown-2:active > i, .btn.c-btn-icon.c-btn-brown-2.active > i {
      background: #63564f; }

.btn.c-btn-icon.c-btn-brown-3 {
  background: #9d8b81;
  border-color: #9d8b81;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown-3 > i {
    background: #927e73;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown-3 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-brown-3:hover, .btn.c-btn-icon.c-btn-brown-3:focus, .btn.c-btn-icon.c-btn-brown-3.focus, .btn.c-btn-icon.c-btn-brown-3:active, .btn.c-btn-icon.c-btn-brown-3.active {
    color: #ffffff;
    background: #927e73;
    border-color: #927e73; }
    .btn.c-btn-icon.c-btn-brown-3:hover > i, .btn.c-btn-icon.c-btn-brown-3:focus > i, .btn.c-btn-icon.c-btn-brown-3.focus > i, .btn.c-btn-icon.c-btn-brown-3:active > i, .btn.c-btn-icon.c-btn-brown-3.active > i {
      background: #8a766b; }

.btn.c-btn-icon.c-btn-dark {
  background: #2f353b;
  border-color: #2f353b;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark > i {
    background: #24282d;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark:hover, .btn.c-btn-icon.c-btn-dark:focus, .btn.c-btn-icon.c-btn-dark.focus, .btn.c-btn-icon.c-btn-dark:active, .btn.c-btn-icon.c-btn-dark.active {
    color: #ffffff;
    background: #24282d;
    border-color: #24282d; }
    .btn.c-btn-icon.c-btn-dark:hover > i, .btn.c-btn-icon.c-btn-dark:focus > i, .btn.c-btn-icon.c-btn-dark.focus > i, .btn.c-btn-icon.c-btn-dark:active > i, .btn.c-btn-icon.c-btn-dark.active > i {
      background: #1d2124; }

.btn.c-btn-icon.c-btn-dark-1 {
  background: #525e64;
  border-color: #525e64;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-1 > i {
    background: #475156;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-1 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-1:hover, .btn.c-btn-icon.c-btn-dark-1:focus, .btn.c-btn-icon.c-btn-dark-1.focus, .btn.c-btn-icon.c-btn-dark-1:active, .btn.c-btn-icon.c-btn-dark-1.active {
    color: #ffffff;
    background: #475156;
    border-color: #475156; }
    .btn.c-btn-icon.c-btn-dark-1:hover > i, .btn.c-btn-icon.c-btn-dark-1:focus > i, .btn.c-btn-icon.c-btn-dark-1.focus > i, .btn.c-btn-icon.c-btn-dark-1:active > i, .btn.c-btn-icon.c-btn-dark-1.active > i {
      background: #40494e; }

.btn.c-btn-icon.c-btn-dark-2 {
  background: #31383c;
  border-color: #31383c;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-2 > i {
    background: #262b2e;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-2 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-2:hover, .btn.c-btn-icon.c-btn-dark-2:focus, .btn.c-btn-icon.c-btn-dark-2.focus, .btn.c-btn-icon.c-btn-dark-2:active, .btn.c-btn-icon.c-btn-dark-2.active {
    color: #ffffff;
    background: #262b2e;
    border-color: #262b2e; }
    .btn.c-btn-icon.c-btn-dark-2:hover > i, .btn.c-btn-icon.c-btn-dark-2:focus > i, .btn.c-btn-icon.c-btn-dark-2.focus > i, .btn.c-btn-icon.c-btn-dark-2:active > i, .btn.c-btn-icon.c-btn-dark-2.active > i {
      background: #1f2326; }

.btn.c-btn-icon.c-btn-dark-3 {
  background: #41515b;
  border-color: #41515b;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-3 > i {
    background: #36444c;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-3 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-3:hover, .btn.c-btn-icon.c-btn-dark-3:focus, .btn.c-btn-icon.c-btn-dark-3.focus, .btn.c-btn-icon.c-btn-dark-3:active, .btn.c-btn-icon.c-btn-dark-3.active {
    color: #ffffff;
    background: #36444c;
    border-color: #36444c; }
    .btn.c-btn-icon.c-btn-dark-3:hover > i, .btn.c-btn-icon.c-btn-dark-3:focus > i, .btn.c-btn-icon.c-btn-dark-3.focus > i, .btn.c-btn-icon.c-btn-dark-3:active > i, .btn.c-btn-icon.c-btn-dark-3.active > i {
      background: #303c43; }

.btn.c-btn-icon.c-btn-dark-4 {
  background: #24272b;
  border-color: #24272b;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-4 > i {
    background: #181a1d;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-4 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-dark-4:hover, .btn.c-btn-icon.c-btn-dark-4:focus, .btn.c-btn-icon.c-btn-dark-4.focus, .btn.c-btn-icon.c-btn-dark-4:active, .btn.c-btn-icon.c-btn-dark-4.active {
    color: #ffffff;
    background: #181a1d;
    border-color: #181a1d; }
    .btn.c-btn-icon.c-btn-dark-4:hover > i, .btn.c-btn-icon.c-btn-dark-4:focus > i, .btn.c-btn-icon.c-btn-dark-4.focus > i, .btn.c-btn-icon.c-btn-dark-4:active > i, .btn.c-btn-icon.c-btn-dark-4.active > i {
      background: #111315; }

.btn.c-btn-icon.c-btn-grey {
  background: #eeeeee;
  border-color: #eeeeee;
  color: #6f6f6f; }
  .btn.c-btn-icon.c-btn-grey > i {
    background: #e1e1e1;
    color: #6f6f6f; }
  .btn.c-btn-icon.c-btn-grey > .c-helper {
    color: #6f6f6f; }
  .btn.c-btn-icon.c-btn-grey:hover, .btn.c-btn-icon.c-btn-grey:focus, .btn.c-btn-icon.c-btn-grey.focus, .btn.c-btn-icon.c-btn-grey:active, .btn.c-btn-icon.c-btn-grey.active {
    color: #6f6f6f;
    background: #e1e1e1;
    border-color: #e1e1e1; }
    .btn.c-btn-icon.c-btn-grey:hover > i, .btn.c-btn-icon.c-btn-grey:focus > i, .btn.c-btn-icon.c-btn-grey.focus > i, .btn.c-btn-icon.c-btn-grey:active > i, .btn.c-btn-icon.c-btn-grey.active > i {
      background: #dadada; }

.btn.c-btn-icon.c-btn-grey-1 {
  background: #f7f7f7;
  border-color: #f7f7f7;
  color: #787878; }
  .btn.c-btn-icon.c-btn-grey-1 > i {
    background: #eaeaea;
    color: #787878; }
  .btn.c-btn-icon.c-btn-grey-1 > .c-helper {
    color: #787878; }
  .btn.c-btn-icon.c-btn-grey-1:hover, .btn.c-btn-icon.c-btn-grey-1:focus, .btn.c-btn-icon.c-btn-grey-1.focus, .btn.c-btn-icon.c-btn-grey-1:active, .btn.c-btn-icon.c-btn-grey-1.active {
    color: #787878;
    background: #eaeaea;
    border-color: #eaeaea; }
    .btn.c-btn-icon.c-btn-grey-1:hover > i, .btn.c-btn-icon.c-btn-grey-1:focus > i, .btn.c-btn-icon.c-btn-grey-1.focus > i, .btn.c-btn-icon.c-btn-grey-1:active > i, .btn.c-btn-icon.c-btn-grey-1.active > i {
      background: #e3e3e3; }

.btn.c-btn-icon.c-btn-grey-2 {
  background: #677083;
  border-color: #677083;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-grey-2 > i {
    background: #5c6475;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-grey-2 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-grey-2:hover, .btn.c-btn-icon.c-btn-grey-2:focus, .btn.c-btn-icon.c-btn-grey-2.focus, .btn.c-btn-icon.c-btn-grey-2:active, .btn.c-btn-icon.c-btn-grey-2.active {
    color: #ffffff;
    background: #5c6475;
    border-color: #5c6475; }
    .btn.c-btn-icon.c-btn-grey-2:hover > i, .btn.c-btn-icon.c-btn-grey-2:focus > i, .btn.c-btn-icon.c-btn-grey-2.focus > i, .btn.c-btn-icon.c-btn-grey-2:active > i, .btn.c-btn-icon.c-btn-grey-2.active > i {
      background: #555c6c; }

.btn.c-btn-icon.c-btn-grey-3 {
  background: #7f8c97;
  border-color: #7f8c97;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-grey-3 > i {
    background: #717f8b;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-grey-3 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-grey-3:hover, .btn.c-btn-icon.c-btn-grey-3:focus, .btn.c-btn-icon.c-btn-grey-3.focus, .btn.c-btn-icon.c-btn-grey-3:active, .btn.c-btn-icon.c-btn-grey-3.active {
    color: #ffffff;
    background: #717f8b;
    border-color: #717f8b; }
    .btn.c-btn-icon.c-btn-grey-3:hover > i, .btn.c-btn-icon.c-btn-grey-3:focus > i, .btn.c-btn-icon.c-btn-grey-3.focus > i, .btn.c-btn-icon.c-btn-grey-3:active > i, .btn.c-btn-icon.c-btn-grey-3.active > i {
      background: #6a7883; }

.btn.c-btn-icon.c-btn-grey-4 {
  background: #a0a6ab;
  border-color: #a0a6ab;
  color: #ffffff; }
  .btn.c-btn-icon.c-btn-grey-4 > i {
    background: #92999f;
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-grey-4 > .c-helper {
    color: #ffffff; }
  .btn.c-btn-icon.c-btn-grey-4:hover, .btn.c-btn-icon.c-btn-grey-4:focus, .btn.c-btn-icon.c-btn-grey-4.focus, .btn.c-btn-icon.c-btn-grey-4:active, .btn.c-btn-icon.c-btn-grey-4.active {
    color: #ffffff;
    background: #92999f;
    border-color: #92999f; }
    .btn.c-btn-icon.c-btn-grey-4:hover > i, .btn.c-btn-icon.c-btn-grey-4:focus > i, .btn.c-btn-icon.c-btn-grey-4.focus > i, .btn.c-btn-icon.c-btn-grey-4:active > i, .btn.c-btn-icon.c-btn-grey-4.active > i {
      background: #8a9298; }

.btn.c-btn-border-1x.c-btn-white,
.btn.c-btn-border-2x.c-btn-white {
  border-color: rba(#ffffff, 0.9); }

.dropdown-menu {
  border: 0;
  box-shadow: 0px 3px 12px -5px rgba(0, 0, 0, 0.35); }
  .dropdown-menu > li > a {
    font-size: 16px;
    color: #5c6873; }

/* Dropdown submenu support for Bootsrap 3 */
.dropdown-submenu {
  position: relative; }
  .dropdown-submenu > .dropdown-menu {
    top: 5px;
    left: 100%;
    margin-top: -6px;
    margin-left: 1px; }
    .dropdown-submenu > .dropdown-menu.c-pull-left {
      left: -100%;
      margin-left: -1px; }
  .dropdown-submenu:hover > .dropdown-menu {
    display: block; }
  .dropup .dropdown-submenu > .dropdown-menu {
    top: auto;
    bottom: 0;
    margin-top: 0;
    margin-bottom: -2px; }

.modal {
  z-index: 10050;
  overflow-y: auto; }

.modal-open {
  overflow: auto; }

.modal-header {
  padding: 20px 20px 15px 20px;
  border-bottom: 1px solid #eeeeee; }
  .modal-header > .close {
    margin-top: -4px; }

.modal-body {
  padding: 20px; }

.modal-footer {
  padding: 20px;
  border-top: 1px solid #eeeeee; }

.modal-title {
  font-weight: 500;
  font-size: 18px;
  color: #3f444a; }

.table > tfooter > tr > td,
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > thead > tr > th {
  border-color: #eeeeee; }

.table > thead > tr > th {
  font-weight: 500;
  font-size: 17px;
  color: #3f444a; }

.table tr.success > th,
.table tr.success > td, .table tr.info > th,
.table tr.info > td, .table tr.danger > th,
.table tr.danger > td, .table tr.warning > th,
.table tr.warning > td {
  color: #fff; }

.table-responsive {
  border-color: #eeeeee; }

/* Left and right tabs */
.tabs-right.nav-tabs,
.tabs-left.nav-tabs {
  border-bottom: 0; }
  .tabs-right.nav-tabs > li,
  .tabs-left.nav-tabs > li {
    float: none; }
    .tabs-right.nav-tabs > li > a,
    .tabs-left.nav-tabs > li > a {
      margin-right: 0;
      margin-bottom: 3px; }

/* Left tabs */
.tabs-left.nav-tabs {
  border-right: 1px solid #ddd; }
  .tabs-left.nav-tabs > li > a {
    display: block;
    margin-right: -1px; }
    .tabs-left.nav-tabs > li > a:hover, .tabs-left.nav-tabs > li > a:focus {
      border-color: #eeeeee #dddddd #eeeeee #eeeeee; }
  .tabs-left.nav-tabs > li.active > a,
  .tabs-left.nav-tabs > li.active > a:hover
> li.active > a:focus {
    border-color: #ddd transparent #ddd #ddd;
    *border-right-color: #ffffff; }

/* Right tabs */
.tabs-right.nav-tabs {
  border-left: 1px solid #ddd; }
  .tabs-right.nav-tabs > li > a {
    display: block;
    margin-left: -1px; }
    .tabs-right.nav-tabs > li > a:hover, .tabs-right.nav-tabs > li > a:focus {
      border-color: #eeeeee #eeeeee #eeeeee #dddddd; }
  .tabs-right.nav-tabs > li.active > a,
  .tabs-right.nav-tabs > li.active > a:hover
> li.active > a:focus {
    border-color: #ddd #ddd #ddd transparent;
    *border-left-color: #ffffff; }

.tp-banner-container {
  position: relative; }
  .tp-banner-container.tp-fullscreen {
    height: 1100px; }

.tp-banner-container .fulllscreenvideo.tp-videolayer {
  left: 0px !important; }

.tp-banner {
  display: none;
  width: 100%;
  position: relative; }
  .tp-banner iframe {
    border: 0 !important; }

.tp-bullets.round > .tp-bullet {
  background: #e3e7ee;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  width: 12px;
  height: 12px; }
  .tp-bullets.round > .tp-bullet.selected {
    background: #32c5d2; }
  .tp-bullets.round > .tp-bullet:hover {
    background: #c4ccd8; }

.tparrows.c-tparrows-hide {
  display: none; }

.tparrows.tp-leftarrow, .tparrows.tp-rightarrow {
  background: none;
  font-family: FontAwesome;
  font-weight: 100; }

.tparrows.tp-leftarrow {
  background-position: 0px 3600%; }
  .tparrows.tp-leftarrow:before {
    content: ''; }

.tparrows.tp-rightarrow {
  background-position: 0px 3700%; }
  .tparrows.tp-rightarrow:before {
    content: ''; }

.tparrows.circle {
  background-image: url(/public/c825d71be0ba46a3cb15bab040082549.png);
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: cover;
  transition: all 0.3s;
  color: #ffffff;
  opacity: 0.3;
  filter: alpha(opacity=30); }
  .tparrows.circle.hidearrows {
    opacity: 0;
    filter: alpha(opacity=0); }
  .tparrows.circle:hover {
    transition: all 0.3s;
    opacity: 1;
    filter: alpha(opacity=100); }

.tp-banner-container.c-arrow-dark .tparrows.circle {
  background-image: url(/public/e7115c0d439c58741658077af3b5da98.png); }

.tp-banner-container.c-arrow-darken .tparrows.circle {
  background-image: url(/public/e61ed3a677d7a61bd97cc7d3b3b5fb97.png); }

.tp-loader.spinner2 {
  background-color: #999DA7; }

@media (max-width: 991px) {
  /* 991px */
  .tp-banner-container.tp-fullscreen {
    height: auto; }
  .tp-banner-container.tp-fullscreen-mobile {
    height: 800px; } }

.cbp-panel {
  width: 100%;
  max-width: auto;
  margin: 0 auto;
  font-family: "Roboto Condensed", sans-serif !important; }

.cbp-popup-wrap {
  z-index: 10005; }

.cbp-l-caption-title {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
  margin: 0; }

.cbp-l-caption-desc {
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif; }

.cbp-caption-activeWrap {
  background: #000000; }

.cbp-l-inline-desc {
  font-size: 17px;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 10px;
  font-weight: 300;
  color: #3f444a; }

.cbp-l-filters-dropdownWrap {
  background: none;
  border: 1px solid #3f444a; }
  .cbp-l-filters-dropdownWrap .cbp-l-filters-dropdownHeader {
    color: #3f444a;
    font-size: 16px; }
  .cbp-l-filters-dropdownWrap .cbp-l-filters-dropdownList {
    background: #ffffff; }
    .cbp-l-filters-dropdownWrap .cbp-l-filters-dropdownList .cbp-filter-item {
      font-size: 16px;
      color: #3f444a;
      border: 0; }
      .cbp-l-filters-dropdownWrap .cbp-l-filters-dropdownList .cbp-filter-item:hover {
        background: white; }
      .cbp-l-filters-dropdownWrap .cbp-l-filters-dropdownList .cbp-filter-item.cbp-filter-item-active {
        background: #f6f7f8; }

.c-content-box > .cbp {
  margin-right: -2px; }

.cbp-l-inline-view {
  margin-top: 20px; }

.cbp-l-filters-work .cbp-filter-item,
.cbp-l-filters-button .cbp-filter-item,
.cbp-l-filters-buttonCenter .cbp-filter-item {
  border-radius: 0;
  font-family: "Roboto Condensed", sans-serif;
  background-color: #FFFFFF;
  border: 1px solid #3f444a;
  color: #3f444a;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  padding: 0px 12px; }
  .cbp-l-filters-work .cbp-filter-item:hover,
  .cbp-l-filters-button .cbp-filter-item:hover,
  .cbp-l-filters-buttonCenter .cbp-filter-item:hover {
    background-color: #3f444a;
    color: #fff; }
  .cbp-l-filters-work .cbp-filter-item.cbp-filter-item-active,
  .cbp-l-filters-button .cbp-filter-item.cbp-filter-item-active,
  .cbp-l-filters-buttonCenter .cbp-filter-item.cbp-filter-item-active {
    background-color: #3f444a;
    color: #fff;
    border: 1px solid #3f444a; }

.cbp-l-filters-work .cbp-filter-counter {
  background: none;
  display: inline-block;
  top: -1px;
  position: relative; }
  .cbp-l-filters-work .cbp-filter-counter:before {
    border: 0; }

.cbp-l-inline-title {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #3f444a; }

.cbp-l-inline-subtitle {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  color: #3f444a;
  margin-top: 0px; }

.cbp-l-grid-masonry-projects-desc {
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 2px;
  font-size: 13px;
  color: #7a838e; }

.cbp-l-caption-buttonLeft,
.cbp-l-caption-buttonRight {
  padding-left: 10px;
  padding-right: 10px;
  min-width: 90px; }

.cbp-l-grid-masonry-projects .cbp-caption-activeWrap {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.6); }

.cbp-popup-singlePage .cbp-popup-navigation-wrap {
  z-index: 10006;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.8); }

.cbp-l-grid-masonry-projects-title {
  color: #3f444a;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600; }

.cbp-l-grid-masonry-projects-desc {
  color: #5c6873;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 300; }

.cbp-l-project-title {
  color: #3f444a;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 1px; }

.cbp-l-project-subtitle {
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 2px;
  font-size: 13px;
  color: #626a73; }

.cbp-l-project-related-link {
  color: #3f444a;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 17px; }

.cbp-l-project-desc-title span,
.cbp-l-project-details-title span {
  font-family: "Roboto Condensed", sans-serif;
  display: inline-block;
  color: #3f444a;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 0;
  margin: 5px 0 -1px 0;
  padding: 0 5px 0 0; }

.cbp-l-project-desc-title,
.cbp-l-project-details-title {
  margin-bottom: 40px;
  border-bottom: 0;
  display: block;
  position: relative;
  overflow: visible; }
  .cbp-l-project-desc-title:before,
  .cbp-l-project-details-title:before {
    position: absolute;
    top: 50px;
    content: '';
    width: 20px;
    height: 3px;
    display: block; }

.cbp-l-project-desc-text {
  font-family: "Roboto Condensed", sans-serif;
  color: #626a73;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 10px; }

.cbp-l-project-details-title {
  margin-bottom: 10px; }

.cbp-l-project-details-list {
  list-style: none;
  margin: 35px 0 20px 0;
  padding: 0; }
  .cbp-l-project-details-list > li {
    font-family: "Roboto Condensed", sans-serif;
    padding: 5px 0;
    margin: 0;
    color: #6e7781;
    font-size: 16px;
    font-weight: 300; }
    .cbp-l-project-details-list > li:first-child {
      padding-top: 0; }
    .cbp-l-project-details-list > li > strong {
      color: #4b5158;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 16px;
      font-weight: 500; }

.cbp-l-project-container {
  margin: 40px 0; }

.cbp-l-project-related-wrap {
  padding: 0;
  margin: 0; }

.cbp-l-project-related-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #626a73;
  font-size: 16px;
  font-weight: 600; }

.cbp-l-grid-work-title,
.cbp-l-grid-projects-title,
.cbp-l-grid-agency-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #3f444a;
  font-size: 18px;
  font-weight: 600; }

.cbp-l-grid-work-desc,
.cbp-l-grid-projects-desc,
.cbp-l-grid-agency-desc {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  color: #7a838e; }

.cbp-l-filters-alignCenter,
.cbp-l-filters-text {
  font-family: "Roboto Condensed", sans-serif; }
  .cbp-l-filters-alignCenter .cbp-l-filters-text-sort,
  .cbp-l-filters-text .cbp-l-filters-text-sort {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #626a73; }
  .cbp-l-filters-alignCenter .cbp-filter-item,
  .cbp-l-filters-text .cbp-filter-item {
    text-transform: uppercase;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #565d66; }

.cbp-popup-lightbox-title {
  color: #eee;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 300; }

.cbp-l-filters-underline .cbp-filter-item.cbp-filter-item-active {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: default; }

.cbp-l-filters-underline .cbp-filter-item {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  color: #3f444a; }

.cbp-caption-expand .cbp-caption-defaultWrap {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #3f444a; }
  .cbp-caption-expand .cbp-caption-defaultWrap .fa {
    margin-right: 6px;
    width: 20px;
    text-align: center;
    font-size: 20px;
    color: #cad5e0; }

.cbp-caption-expand .cbp-l-caption-body {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #3f444a; }

.cbp-l-grid-masonry-projects .cbp-l-caption-body a {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 16px;
  font-size: 12px;
  font-weight: 4600; }

.cbp-caption-activeWrap .c-masonry-border {
  border: 1px solid rgba(255, 255, 255, 0.2);
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  position: absolute; }

.owl-carousel .owl-controls {
  margin-top: 60px; }
  .owl-carousel .owl-controls .owl-dot {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%; }

.owl-carousel.c-owl-nav-center .owl-controls {
  text-align: center; }

.owl-carousel.owl-bordered {
  margin-top: 30px; }
  .owl-carousel.owl-bordered .owl-controls {
    margin-top: 20px; }
  .owl-carousel.owl-bordered .owl-wrapper-outer {
    border: 1px solid #eeeeee; }
  .owl-carousel.owl-bordered .owl-item {
    border-right: 1px solid #eeeeee; }
    .owl-carousel.owl-bordered .owl-item:last-child {
      border-right: 0; }

.owl-carousel.owl-reset-space:not(.owl-single):not(.owl-bordered) {
  margin: 0;
  width: 100%; }
  .owl-carousel.owl-reset-space:not(.owl-single):not(.owl-bordered) .owl-wrapper .owl-item {
    padding: 0; }

.owl-carousel.owl-small-space:not(.owl-single):not(.owl-bordered) {
  margin: 0;
  width: 100%; }
  .owl-carousel.owl-small-space:not(.owl-single):not(.owl-bordered) .owl-wrapper .owl-item {
    padding: 5px; }

.owl-theme:not(.owl-single):not(.owl-bordered) {
  margin-left: -30px;
  width: calc(100% + 60px); }
  .owl-theme:not(.owl-single):not(.owl-bordered) .owl-wrapper .owl-item, .owl-theme:not(.owl-single):not(.owl-bordered) .owl-stage-outer .owl-item {
    padding: 0 30px; }

.owl-theme.owl-theme-white .owl-pagination .owl-page span {
  background: #ffffff;
  opacity: 0.5;
  filter: alpha(opacity=50); }

.owl-theme.owl-theme-white .owl-pagination .owl-page.active span {
  background: #ffffff;
  opacity: 1;
  filter: alpha(opacity=100); }

@media (max-width: 767px) {
  /* 767px */
  .owl-theme:not(.owl-single):not(.owl-bordered) {
    margin-left: -10px;
    width: calc(100% + 20px); }
    .owl-theme:not(.owl-single):not(.owl-bordered) .owl-wrapper .owl-item {
      padding: 0 10px; } }

.fancybox-overlay {
  z-index: 10200; }

.fancybox-margin {
  margin: 0; }

/*** 
Fontawesome Demo
***/
.fontawesome-icon-list {
  margin-top: 20px;
  margin-bottom: 50px; }
  .fontawesome-icon-list .fa-hover > a {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #eaeaea;
    padding: 5px 10px; }
    .fontawesome-icon-list .fa-hover > a > i {
      width: 20px;
      font-size: 18px;
      margin-right: 5px; }

/***
Simple Line Icons Demo
***/
.simplelineicons-demo .item-box {
  display: inline-block;
  font-size: 16px;
  margin: 0 -0.22em 1em 0;
  padding-left: 1em;
  width: 100%; }

.simplelineicons-demo .item-box .item {
  border: 1px solid #eaeaea;
  background-color: #fff;
  color: #33383e;
  display: inline-block;
  padding: 10px;
  width: 100%;
  vertical-align: center; }

.simplelineicons-demo .item-box .item span {
  font-size: 22px; }

.customline-demo.simplelineicons-demo .item-box a {
  display: inline-block; }

.customline-demo.simplelineicons-demo .c-content-line-icon {
  float: left;
  margin-top: -4px;
  margin-right: 15px; }

@media only screen and (min-width: 768px) {
  .simplelineicons-demo .item-box {
    width: 24.333%; } }

/*** 
Glyphicons Demo
***/
.glyphicons-demo ul {
  padding-left: 0;
  padding-bottom: 1px;
  margin-bottom: 20px;
  list-style: none;
  overflow: hidden; }

.bs-glyphicon-class {
  text-align: center; }

.bs-glyphicons {
  padding-left: 0;
  padding-bottom: 1px;
  margin-bottom: 20px;
  list-style: none;
  overflow: hidden; }

.glyphicons-demo ul li {
  float: left;
  width: 25%;
  height: 115px;
  padding: 10px;
  margin: 0 -1px -1px 0;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  border: 1px solid #ddd; }

.glyphicons-demo .glyphicon {
  display: block;
  margin: 5px auto 10px;
  font-size: 24px; }

@media (min-width: 768px) {
  .glyphicons-demo ul li {
    width: 12.5%; } }

.socicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'socicon';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased; }

.socicon-btn:empty
.socicon:empty {
  width: 1em; }

.socicon-btn {
  position: relative;
  display: inline-block;
  font-family: 'socicon';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  width: 44px;
  height: 44px;
  padding-top: 11px;
  font-size: 24px;
  border: 1px solid #eeeeee;
  color: #3f444a;
  transition: background, color 0.3s; }
  .socicon-btn.socicon-solid {
    border: 0;
    width: 46px;
    height: 46px;
    padding-top: 12px; }
  .socicon-btn.socicon-btn-circle {
    border-radius: 44px; }
  .socicon-btn:hover {
    transition: background, color 0.3s; }
  .socicon-btn.socicon-lg {
    width: 54px;
    height: 54px;
    padding-top: 13px;
    font-size: 28px; }
    .socicon-btn.socicon-lg.socicon-solid {
      border: 0;
      width: 55px;
      height: 55px;
      padding-top: 13px; }
  .socicon-btn.socicon-sm {
    width: 30px;
    height: 30px;
    padding-top: 8px;
    font-size: 16px; }
    .socicon-btn.socicon-sm.socicon-solid {
      border: 0;
      width: 30px;
      height: 30px;
      padding-top: 8px; }

.socicons .socicon-btn {
  margin-bottom: 5px; }

.btn-social {
  padding-left: 40px; }
  .btn-social > :first-child {
    font-size: 18px; }
  .btn-social:hover, .btn-social:active, .btn-social:focus {
    color: #fff; }
  .btn-social.btn-md > :first-child {
    padding-top: 4px;
    width: 40px;
    font-size: 20px; }
  .btn-social.btn-lg > :first-child {
    width: 44px;
    font-size: 22px; }

.c-spinner {
  width: 100%; }
  .c-spinner input {
    float: left;
    width: 40px;
    padding: 6px;
    border-radius: 0;
    border-color: #d0d7de; }

.c-input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: inline-block; }
  .c-input-group-btn-vertical i {
    position: absolute;
    top: 0;
    left: 4px; }
  .c-input-group-btn-vertical .btn {
    display: block;
    float: none;
    max-width: 100%;
    padding: 8px;
    margin-left: -1px;
    position: relative;
    border-radius: 0;
    color: #d0d7de;
    border-color: #d0d7de; }
    .c-input-group-btn-vertical .btn:first-child {
      border-top-right-radius: 0; }
    .c-input-group-btn-vertical .btn:last-child {
      margin-top: -2px;
      border-bottom-right-radius: 0; }

.simplegallery {
  margin: 0 auto;
  width: 417px;
  height: 380px;
  overflow: hidden; }
  .simplegallery .content {
    background: #fff;
    position: relative;
    width: 418px;
    height: 270px;
    overflow: hidden; }
    .simplegallery .content img {
      width: 415px;
      border: 1px solid #9c9c9c; }
  .simplegallery .thumbnail {
    margin-top: 5px; }
    .simplegallery .thumbnail .thumb {
      float: left;
      width: 100px;
      height: 100px;
      margin: 0 5px 0 0;
      cursor: pointer; }
      .simplegallery .thumbnail .thumb img {
        border: 1px solid #9c9c9c;
        width: 100px; }
    .simplegallery .thumbnail .last {
      margin: 0; }

.ilightbox-caption > h4 {
  font-size: 18px;
  text-shadow: none; }

.ilightbox-caption > p {
  font-size: 14px;
  text-shadow: none; }

.ilightbox-holder.dark .ilightbox-caption > h1, .ilightbox-holder.dark .ilightbox-caption h2, .ilightbox-holder.dark .ilightbox-caption h3, .ilightbox-holder.dark .ilightbox-caption h4 {
  color: #fff; }

.ilightbox-holder.light .ilightbox-caption > h1, .ilightbox-holder.light .ilightbox-caption h2, .ilightbox-holder.light .ilightbox-caption h3, .ilightbox-holder.light .ilightbox-caption h4 {
  color: #000; }

.wow {
  opacity: 0; }

/*********************
THEME COLOR - ORANGE1
*********************/
a {
  color: #3f444a; }
  a:active, a:hover, a:focus {
    color: #FF6A00; }

.c-theme-link:focus, .c-theme-link:active, .c-theme-link:hover {
  color: #FF6A00 !important; }
  .c-theme-link:focus > i, .c-theme-link:active > i, .c-theme-link:hover > i {
    color: #FF6A00 !important; }

.c-theme-link.c-active {
  color: #FF6A00 !important; }
  .c-theme-link.c-active > i {
    color: #FF6A00 !important; }

.c-theme-nav li:focus > a:not(.btn), .c-theme-nav li:active > a:not(.btn), .c-theme-nav li:hover > a:not(.btn) {
  color: #FF6A00 !important; }

.c-theme-nav li:focus > .c-quick-sidebar-toggler > .c-line, .c-theme-nav li:active > .c-quick-sidebar-toggler > .c-line, .c-theme-nav li:hover > .c-quick-sidebar-toggler > .c-line {
  background: #FF6A00 !important; }

.c-theme-nav li.c-active {
  color: #FF6A00 !important; }
  .c-theme-nav li.c-active > a:not(.btn) {
    color: #FF6A00 !important; }
  .c-theme-nav li.c-active > .c-quick-sidebar-toggler > .c-line {
    background: #FF6A00 !important; }

.c-theme-nav > li > .dropdown-menu.c-menu-type-mega > .nav.nav-tabs > li:hover > a {
  color: #FF6A00 !important; }

.c-theme-nav > li > .dropdown-menu.c-menu-type-mega > .nav.nav-tabs > li.active {
  border-bottom: 1px solid #FF6A00 !important; }
  .c-theme-nav > li > .dropdown-menu.c-menu-type-mega > .nav.nav-tabs > li.active > a {
    color: #FF6A00 !important; }

.c-theme-nav.nav.nav-tabs > li:hover > a {
  color: #FF6A00 !important; }

.c-theme-nav.nav.nav-tabs > li.active {
  border-bottom: 1px solid #FF6A00 !important; }
  .c-theme-nav.nav.nav-tabs > li.active > a {
    color: #FF6A00 !important; }

.c-theme-ul > li:focus > a:not(.btn), .c-theme-ul > li:active > a:not(.btn), .c-theme-ul > li:hover > a:not(.btn) {
  color: #FF6A00 !important; }
  .c-theme-ul > li:focus > a:not(.btn) > i, .c-theme-ul > li:active > a:not(.btn) > i, .c-theme-ul > li:hover > a:not(.btn) > i {
    color: #FF6A00 !important; }

.c-theme-ul > li:focus > button > .c-line, .c-theme-ul > li:active > button > .c-line, .c-theme-ul > li:hover > button > .c-line {
  background: #FF6A00 !important; }

.c-theme-ul > li.active, .c-theme-ul > li.c-active {
  color: #FF6A00 !important; }
  .c-theme-ul > li.active > a:not(.btn), .c-theme-ul > li.c-active > a:not(.btn) {
    color: #FF6A00 !important; }
    .c-theme-ul > li.active > a:not(.btn) > i, .c-theme-ul > li.c-active > a:not(.btn) > i {
      color: #FF6A00 !important; }

.c-theme-ul-bg > li {
  color: #ffffff;
  background: #FF6A00 !important; }

.c-theme-font,
.c-theme-color {
  color: #FF6A00 !important; }
  .c-theme-font > i,
  .c-theme-color > i {
    color: #FF6A00 !important; }

.c-theme-font-hover:hover {
  color: #FF6A00 !important; }

.c-theme-bg {
  background-color: #FF6A00 !important; }
  .c-theme-bg.c-theme-darken {
    background-color: #cc5500 !important; }

.c-theme-bg-after:after {
  background-color: #FF6A00 !important; }

.c-theme-bg-before:before {
  background-color: #FF6A00 !important; }

.c-theme-border-after:after {
  border-color: #FF6A00 !important; }

.c-theme-border-before:before {
  border-color: #FF6A00 !important; }

.c-theme-bg-on-hover:hover {
  background-color: #FF6A00 !important; }

.c-theme-border {
  border-color: #FF6A00 !important; }

.c-theme-on-hover:hover {
  color: #FF6A00 !important; }

.c-theme-bg-parent-hover:hover .c-theme-bg-on-parent-hover {
  background-color: #FF6A00 !important; }

.c-theme-border {
  border-color: #FF6A00; }

.c-theme-border-top {
  border-top-color: #FF6A00; }

.c-theme-border-bottom {
  border-bottom-color: #FF6A00 !important; }

.c-theme-border-left {
  border-left-color: #FF6A00; }

.c-theme-border-right {
  border-right-color: #FF6A00; }

.c-content-iconlist-1.c-theme > li:hover i {
  color: #fff;
  background: #FF6A00; }

.c-content-ver-nav .c-menu.c-theme > li:before {
  color: #FF6A00; }

.c-content-ver-nav .c-menu.c-theme.c-arrow-dot > li:before {
  background: #FF6A00; }

.c-content-pagination.c-theme > li:hover > a {
  border-color: #FF6A00;
  background: #FF6A00;
  color: #fff; }
  .c-content-pagination.c-theme > li:hover > a > i {
    color: #fff; }

.c-content-pagination.c-theme > li.c-active > span,
.c-content-pagination.c-theme > li.c-active > a {
  border-color: #FF6A00;
  background: #FF6A00;
  color: #fff; }
  .c-content-pagination.c-theme > li.c-active > span > i,
  .c-content-pagination.c-theme > li.c-active > a > i {
    color: #fff; }

.c-theme-btn.btn {
  color: #ffffff;
  background: #FF6A00;
  border-color: #FF6A00; }
  .c-theme-btn.btn.btn-no-focus:focus, .c-theme-btn.btn.btn-no-focus.focus {
    color: #ffffff;
    background: #FF6A00;
    border-color: #FF6A00; }
  .c-theme-btn.btn.btn-no-focus:hover, .c-theme-btn.btn:hover, .c-theme-btn.btn.btn-no-focus:active, .c-theme-btn.btn:active, .c-theme-btn.btn.active,
  .open > .c-theme-btn.btn.dropdown-toggle {
    color: #ffffff;
    background: #d65900;
    border-color: #d65900; }
  .c-theme-btn.btn:active, .c-theme-btn.btn.active,
  .open > .c-theme-btn.btn.dropdown-toggle {
    background-image: none; }
  .c-theme-btn.btn.disabled, .c-theme-btn.btn.disabled:hover, .c-theme-btn.btn.disabled:not(.btn-no-focus):focus, .c-theme-btn.btn.disabled:not(.btn-no-focus).focus, .c-theme-btn.btn.disabled:active, .c-theme-btn.btn.disabled.active, .c-theme-btn.btn[disabled], .c-theme-btn.btn[disabled]:hover, .c-theme-btn.btn[disabled]:not(.btn-no-focus):focus, .c-theme-btn.btn[disabled]:not(.btn-no-focus).focus, .c-theme-btn.btn[disabled]:active, .c-theme-btn.btn[disabled].active,
  fieldset[disabled] .c-theme-btn.btn,
  fieldset[disabled] .c-theme-btn.btn:hover,
  fieldset[disabled] .c-theme-btn.btn:not(.btn-no-focus):focus,
  fieldset[disabled] .c-theme-btn.btn:not(.btn-no-focus).focus,
  fieldset[disabled] .c-theme-btn.btn:active,
  fieldset[disabled] .c-theme-btn.btn.active {
    background: #FF6A00;
    border-color: #FF6A00; }
  .c-theme-btn.btn .badge {
    color: #FF6A00;
    background: #ffffff; }

.c-theme-btn.c-btn-border-1x {
  border-color: #FF6A00;
  border-width: 1px;
  color: #FF6A00;
  background: none;
  border-color: #FF6A00; }
  .c-theme-btn.c-btn-border-1x.btn-no-focus:focus, .c-theme-btn.c-btn-border-1x.btn-no-focus.focus {
    color: #FF6A00;
    background: none;
    border-color: #FF6A00; }
  .c-theme-btn.c-btn-border-1x.btn-no-focus:hover, .c-theme-btn.c-btn-border-1x:hover, .c-theme-btn.c-btn-border-1x.btn-no-focus:active, .c-theme-btn.c-btn-border-1x:active, .c-theme-btn.c-btn-border-1x.active,
  .open > .c-theme-btn.c-btn-border-1x.dropdown-toggle {
    color: #ffffff;
    background: #FF6A00;
    border-color: #FF6A00; }
  .c-theme-btn.c-btn-border-1x:active, .c-theme-btn.c-btn-border-1x.active,
  .open > .c-theme-btn.c-btn-border-1x.dropdown-toggle {
    background-image: none; }
  .c-theme-btn.c-btn-border-1x.disabled, .c-theme-btn.c-btn-border-1x.disabled:hover, .c-theme-btn.c-btn-border-1x.disabled:not(.btn-no-focus):focus, .c-theme-btn.c-btn-border-1x.disabled:not(.btn-no-focus).focus, .c-theme-btn.c-btn-border-1x.disabled:active, .c-theme-btn.c-btn-border-1x.disabled.active, .c-theme-btn.c-btn-border-1x[disabled], .c-theme-btn.c-btn-border-1x[disabled]:hover, .c-theme-btn.c-btn-border-1x[disabled]:not(.btn-no-focus):focus, .c-theme-btn.c-btn-border-1x[disabled]:not(.btn-no-focus).focus, .c-theme-btn.c-btn-border-1x[disabled]:active, .c-theme-btn.c-btn-border-1x[disabled].active,
  fieldset[disabled] .c-theme-btn.c-btn-border-1x,
  fieldset[disabled] .c-theme-btn.c-btn-border-1x:hover,
  fieldset[disabled] .c-theme-btn.c-btn-border-1x:not(.btn-no-focus):focus,
  fieldset[disabled] .c-theme-btn.c-btn-border-1x:not(.btn-no-focus).focus,
  fieldset[disabled] .c-theme-btn.c-btn-border-1x:active,
  fieldset[disabled] .c-theme-btn.c-btn-border-1x.active {
    background: none;
    border-color: #FF6A00; }
  .c-theme-btn.c-btn-border-1x .badge {
    color: none;
    background: #FF6A00; }

.c-theme-btn.c-btn-border-2x {
  border-color: #FF6A00;
  border-width: 2px;
  color: #FF6A00;
  background: none;
  border-color: #FF6A00; }
  .c-theme-btn.c-btn-border-2x.btn-no-focus:focus, .c-theme-btn.c-btn-border-2x.btn-no-focus.focus {
    color: #FF6A00;
    background: none;
    border-color: #FF6A00; }
  .c-theme-btn.c-btn-border-2x.btn-no-focus:hover, .c-theme-btn.c-btn-border-2x:hover, .c-theme-btn.c-btn-border-2x.btn-no-focus:active, .c-theme-btn.c-btn-border-2x:active, .c-theme-btn.c-btn-border-2x.active,
  .open > .c-theme-btn.c-btn-border-2x.dropdown-toggle {
    color: #ffffff;
    background: #FF6A00;
    border-color: #FF6A00; }
  .c-theme-btn.c-btn-border-2x:active, .c-theme-btn.c-btn-border-2x.active,
  .open > .c-theme-btn.c-btn-border-2x.dropdown-toggle {
    background-image: none; }
  .c-theme-btn.c-btn-border-2x.disabled, .c-theme-btn.c-btn-border-2x.disabled:hover, .c-theme-btn.c-btn-border-2x.disabled:not(.btn-no-focus):focus, .c-theme-btn.c-btn-border-2x.disabled:not(.btn-no-focus).focus, .c-theme-btn.c-btn-border-2x.disabled:active, .c-theme-btn.c-btn-border-2x.disabled.active, .c-theme-btn.c-btn-border-2x[disabled], .c-theme-btn.c-btn-border-2x[disabled]:hover, .c-theme-btn.c-btn-border-2x[disabled]:not(.btn-no-focus):focus, .c-theme-btn.c-btn-border-2x[disabled]:not(.btn-no-focus).focus, .c-theme-btn.c-btn-border-2x[disabled]:active, .c-theme-btn.c-btn-border-2x[disabled].active,
  fieldset[disabled] .c-theme-btn.c-btn-border-2x,
  fieldset[disabled] .c-theme-btn.c-btn-border-2x:hover,
  fieldset[disabled] .c-theme-btn.c-btn-border-2x:not(.btn-no-focus):focus,
  fieldset[disabled] .c-theme-btn.c-btn-border-2x:not(.btn-no-focus).focus,
  fieldset[disabled] .c-theme-btn.c-btn-border-2x:active,
  fieldset[disabled] .c-theme-btn.c-btn-border-2x.active {
    background: none;
    border-color: #FF6A00; }
  .c-theme-btn.c-btn-border-2x .badge {
    color: none;
    background: #FF6A00; }

.c-theme.form-control:focus, .c-theme.form-control:active, .c-theme.form-control.active {
  border-color: #FF6A00 !important; }

.c-content-line-icon.c-theme {
  background-image: url(/public/70279f20ce8fb8ceaaef42c05f4eef0e.png); }

.c-content-list-1.c-theme.c-separator-dot > li:before,
.c-content-list-1.c-theme > li:before {
  background: #FF6A00; }

.c-content-tab-1.c-theme .nav > li:hover > a, .c-content-tab-1.c-theme .nav > li:focus > a, .c-content-tab-1.c-theme .nav > li:active > a, .c-content-tab-1.c-theme .nav > li.active > a,
.c-content-tab-1.c-theme .nav.nav-justified > li:hover > a,
.c-content-tab-1.c-theme .nav.nav-justified > li:focus > a,
.c-content-tab-1.c-theme .nav.nav-justified > li:active > a,
.c-content-tab-1.c-theme .nav.nav-justified > li.active > a {
  border-bottom-color: #FF6A00; }

.c-content-tab-2.c-theme > ul > li.active > a > .c-title, .c-content-tab-2.c-theme > ul > li:hover > a > .c-title {
  color: #FF6A00; }

.c-content-tab-2.c-theme > ul > li.active > a > .c-content-line-icon, .c-content-tab-2.c-theme > ul > li:hover > a > .c-content-line-icon {
  background-image: url(/public/70279f20ce8fb8ceaaef42c05f4eef0e.png); }

.c-content-tab-5.c-theme .c-nav-tab > li.active > a,
.c-content-tab-5.c-theme .c-nav-tab > li a:hover {
  color: #fff;
  background-color: #FF6A00; }

.c-content-tab-5.c-theme .c-nav-tab.c-arrow a:hover:after {
  border-left-color: #FF6A00; }

.c-content-tab-5.c-theme .c-nav-tab.c-arrow .active > a:after {
  border-left-color: #FF6A00; }

.c-content-accordion-1.c-theme .panel > .panel-heading > .panel-title > a {
  background-color: #FF6A00; }
  .c-content-accordion-1.c-theme .panel > .panel-heading > .panel-title > a.collapsed {
    background-color: #ffffff; }
    .c-content-accordion-1.c-theme .panel > .panel-heading > .panel-title > a.collapsed:hover, .c-content-accordion-1.c-theme .panel > .panel-heading > .panel-title > a.collapsed:focus {
      background-color: #FF6A00; }

.c-content-accordion-1.c-theme .panel > .panel-collapse > .panel-body {
  background-color: #FF6A00; }

.c-mega-menu-onepage-dots.c-theme .c-onepage-dots-nav > li.c-onepage-link:hover > a, .c-mega-menu-onepage-dots.c-theme .c-onepage-dots-nav > li.c-onepage-link.c-active > a, .c-mega-menu-onepage-dots.c-theme .c-onepage-dots-nav > li.c-onepage-link.active > a {
  background: rgba(255, 106, 0, 0.9); }

.c-layout-sidebar-menu.c-theme .c-sidebar-menu li.c-active > a {
  transition: all 0.2s;
  color: #FF6A00; }
  .c-layout-sidebar-menu.c-theme .c-sidebar-menu li.c-active > a > .c-arrow {
    color: #FF6A00; }

.c-layout-sidebar-menu.c-theme .c-sidebar-menu li .c-dropdown-menu > li:hover > a {
  color: #FF6A00; }

.c-layout-sidebar-menu.c-theme .c-sidebar-menu.c-option-2 > li.c-active > a {
  transition: all 0.2s;
  color: #ffffff;
  background-color: #FF6A00; }
  .c-layout-sidebar-menu.c-theme .c-sidebar-menu.c-option-2 > li.c-active > a > .c-arrow {
    color: #ffffff; }

.c-content-title-4.c-theme .c-line-strike:before {
  border-top: 1px solid #FF6A00; }

.owl-carousel.c-theme .owl-controls .owl-dot {
  background: #e1e1e1; }
  .owl-carousel.c-theme .owl-controls .owl-dot:hover {
    background: #fff; }
  .owl-carousel.c-theme .owl-controls .owl-dot.active {
    background: #FF6A00; }

.cbp-l-filters-button .cbp-filter-counter,
.cbp-l-filters-buttonCenter .cbp-filter-counter {
  background-color: #FF6A00; }
  .cbp-l-filters-button .cbp-filter-counter:before,
  .cbp-l-filters-buttonCenter .cbp-filter-counter:before {
    border-top: 4px solid #FF6A00; }

.cbp-l-filters-alignCenter .cbp-filter-item.cbp-filter-item-active,
.cbp-l-filters-text .cbp-filter-item.cbp-filter-item-active {
  color: #FF6A00; }

.cbp-l-filters-alignCenter .cbp-filter-counter,
.cbp-l-filters-text .cbp-filter-counter {
  background: none repeat scroll 0 0 #FF6A00; }
  .cbp-l-filters-alignCenter .cbp-filter-counter:before,
  .cbp-l-filters-text .cbp-filter-counter:before {
    border-top: 4px solid #FF6A00; }

.cbp-l-filters-underline .cbp-filter-item.cbp-filter-item-active {
  border-bottom-color: #FF6A00; }

.cbp-l-project-desc-title:before,
.cbp-l-project-details-title:before {
  background: #FF6A00; }

.tp-bullets.round.c-theme .bullet {
  margin-right: 5px; }
  .tp-bullets.round.c-theme .bullet.selected {
    background: #FF6A00; }

.tp-banner-container.c-theme .tparrows.circle {
  background-image: url(/public/70279f20ce8fb8ceaaef42c05f4eef0e.png); }
