@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * 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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated.flip {
  -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, 900px, 0);
    transform: translate3d(0, 900px, 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; }

/*
Trix 0.9.1
Copyright © 2015 Basecamp, LLC
http://trix-editor.org/
*/
trix-editor {
  color: #111;
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 4px 8px;
  min-height: 88px;
  outline: none; }

trix-toolbar * {
  box-sizing: border-box; }

trix-toolbar .button_group {
  display: inline-block;
  font-size: 0;
  margin: 0 8px 4px 0;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 5px;
  overflow: hidden; }

trix-toolbar .button_group:last-of-type {
  margin-right: 0; }

trix-toolbar .button_group button, trix-toolbar .button_group input[type=button] {
  position: relative;
  font-size: 0;
  margin: 0;
  height: 28px;
  width: 40px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #ddd; }

trix-toolbar .button_group button::before, trix-toolbar .button_group input[type=button]::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .6;
  content: ""; }

trix-toolbar .button_group button.active, trix-toolbar .button_group input[type=button].active {
  background: #cbeefa; }

trix-toolbar .button_group button.active::before, trix-toolbar .button_group input[type=button].active::before {
  opacity: 1; }

trix-toolbar .button_group button:disabled::before, trix-toolbar .button_group input[type=button]:disabled::before {
  opacity: .125; }

trix-toolbar .button_group button:not(:first-child), trix-toolbar .button_group input[type=button]:not(:first-child) {
  border-left: 1px solid #ccc; }

trix-toolbar .dialogs {
  position: relative; }

trix-toolbar .dialogs .dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 8px;
  line-height: 12px;
  background: #fff;
  box-shadow: 0 0.3rem 1rem #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5; }

trix-toolbar .dialogs .dialog input[type=button] {
  font-size: 12px;
  height: 24px;
  width: 50px;
  padding: 1px 8px 0 8px;
  width: auto;
  opacity: .6;
  -webkit-appearance: none;
  -webkit-border-radius: 0; }

trix-toolbar .dialogs .dialog input[type=url], trix-toolbar .dialogs .dialog input[type=text] {
  display: inline-block;
  height: 26px;
  font-size: 12px;
  padding: 0 8px;
  margin: 0 8px 0 0;
  border-radius: 5px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none; }

trix-toolbar .dialogs .dialog input[type=url].validate:invalid, trix-toolbar .dialogs .dialog input[type=text].validate:invalid {
  box-shadow: #F00 0px 0px 1.5px 1px; }

trix-toolbar .dialogs .dialog.link_dialog {
  min-width: 300px;
  max-width: 600px; }

trix-toolbar .dialogs .dialog.link_dialog .button_group {
  max-width: 110px; }

trix-toolbar .dialogs .dialog.link_dialog input[type=url] {
  float: left;
  width: calc(100% - 120px); }

trix-toolbar .button_group button.bold::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgd2lkdGg9IjI0cHgiIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCAyNCAyNCI%2BCiA8cGF0aCBpZD0iU2hhcGUiIGZpbGw9IiMwMDAiIGQ9Im0xNS42IDExLjc5YzAuOTY1LTAuNjc1IDEuNjUtMS43NjUgMS42NS0yLjc5IDAtMi4yNTUtMS43NDUtNC00LTRoLTYuMjV2MTRoNy4wNGMyLjA5NSAwIDMuNzEtMS43IDMuNzEtMy43OSAwLTEuNTItMC44NjUtMi44MTUtMi4xNS0zLjQyem0tNS42LTQuMjloM2MwLjgzIDAgMS41IDAuNjcgMS41IDEuNXMtMC42NyAxLjUtMS41IDEuNWgtM3YtM3ptMy41IDloLTMuNXYtM2gzLjVjMC44MyAwIDEuNSAwLjY3IDEuNSAxLjVzLTAuNjcgMS41LTEuNSAxLjV6Ii8%2BCjwvc3ZnPgo%3D); }

trix-toolbar .button_group button.italic::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgd2lkdGg9IjI0cHgiIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCAyNCAyNCI%2BCiA8cGF0aCBpZD0iU2hhcGUiIGZpbGw9IiMwMDAiIGQ9Im0xMCA1djNoMi4yMTVsLTMuNDMgOGgtMi43ODV2M2g4di0zaC0yLjIxNWwzLjQzLThoMi43ODV2LTNoLTh6Ii8%2BCjwvc3ZnPgo%3D); }

trix-toolbar .button_group button.link::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8%2BCjxzdmcgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDI0IDI0IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogIDxwYXRoIGQ9Ik05Ljg3OTIzNDM3LDEzLjY5NjUgQzguMjA2OTIxODgsMTIuMDI0MTg3NSA4LjIwNjkyMTg4LDkuMzAzMzc1IDkuODc5MjM0MzcsNy42MzEwNjI1IEwxMy4yNTQyMzQ0LDQuMjU2MDYyNSBDMTQuMDY0MjM0NCwzLjQ0NjA2MjUgMTUuMTQxNDIxOSwzIDE2LjI4NzIzNDQsMyBDMTcuNDMzMDQ2OSwzIDE4LjUwOTY3MTksMy40NDYwNjI1IDE5LjMyMDIzNDQsNC4yNTYwNjI1IEMyMC45OTI1NDY5LDUuOTI4Mzc1IDIwLjk5MjU0NjksOC42NDkxODc1IDE5LjMyMDIzNDQsMTAuMzIxNSBMMTcuMzU4MDU0NywxMi4wMzY1NjY3IEMxNy4wMDA4NjcyLDEyLjM5Mzc1NDIgMTYuNDIyNjE3MiwxMi4zOTM3NTQyIDE2LjA2NTQyOTcsMTIuMDM2NTY2NyBDMTUuNzA4MjQyMiwxMS42NzkzNzkyIDE1LjcwODI0MjIsMTEuMTAxMTI5MiAxNi4wNjU0Mjk3LDEwLjc0Mzk0MTcgTDE4LjAyNzYwOTQsOS4wMjg4NzUgQzE4Ljk4NzIzNDQsOC4wNjkyNSAxOC45ODcyMzQ0LDYuNTA4MzEyNSAxOC4wMjc2MDk0LDUuNTQ4Njg3NSBDMTcuNTYyOTg0NCw1LjA4NDA2MjUgMTYuOTQ0Nzk2OSw0LjgyODEyNSAxNi4yODcyMzQ0LDQuODI4MTI1IEMxNS42Mjk2NzE5LDQuODI4MTI1IDE1LjAxMjA0NjksNS4wODQwNjI1IDE0LjU0Njg1OTQsNS41NDg2ODc1IEwxMS4xNzE4NTk0LDguOTIzNjg3NSBDMTAuMjEyMjM0NCw5Ljg4MzMxMjUgMTAuMjEyMjM0NCwxMS40NDQyNSAxMS4xNzE4NTk0LDEyLjQwMzg3NSBDMTEuNTI5MDQ2OSwxMi43NjEwNjI1IDExLjUyOTA0NjksMTMuMzM5MzEyNSAxMS4xNzE4NTk0LDEzLjY5NjUgQzEwLjk5MzU0NjksMTMuODc0ODEyNSAxMC43NTk1NDY5LDEzLjk2NDI1IDEwLjUyNTU0NjksMTMuOTY0MjUgQzEwLjI5MTU0NjksMTMuOTY0MjUgMTAuMDU3NTQ2OSwxMy44NzQ4MTI1IDkuODc5MjM0MzcsMTMuNjk2NSBaIiBpZD0iU2hhcGUiIGZpbGw9IiMwMDAiPjwvcGF0aD4KICA8cGF0aCBkPSJNNC4yNTQyMzQzNywxOS40NTgzMjgxIEMyLjU4MTkyMTg3LDE3Ljc4NjAxNTYgMi41ODE5MjE4NywxNS4wNjUyMDMxIDQuMjU0MjM0MzcsMTMuMzkyODkwNiBMNi4xNzg3MjkwMSwxMS40OTAyMzQ0IEM2LjUzNTkxNjUxLDExLjEzMzA0NjkgNy4xMTQ3MjkwMSwxMS4xMzMwNDY5IDcuNDcxMzU0MDEsMTEuNDkwMjM0NCBDNy44Mjc5NzkwMSwxMS44NDc0MjE5IDcuODI4NTQxNTEsMTIuNDI1NjcxOSA3LjQ3MTM1NDAxLDEyLjc4Mjg1OTQgTDUuNTQ2ODU5MzcsMTQuNjg1NTE1NiBDNC41ODcyMzQzNywxNS42NDUxNDA2IDQuNTg3MjM0MzcsMTcuMjA2MDc4MSA1LjU0Njg1OTM3LDE4LjE2NTcwMzEgQzYuMDExNDg0MzcsMTguNjMwMzI4MSA2LjYyOTY3MTg3LDE4Ljg4NjI2NTYgNy4yODcyMzQzNywxOC44ODYyNjU2IEM3Ljk0NDc5Njg3LDE4Ljg4NjI2NTYgOC41NjI0MjE4NywxOC42MzAzMjgxIDkuMDI3NjA5MzcsMTguMTY1NzAzMSBMMTIuNDAyNjA5NCwxNC43OTA3MDMxIEMxMy4zNjIyMzQ0LDEzLjgzMTA3ODEgMTMuMzYyMjM0NCwxMi4yNzAxNDA2IDEyLjQwMjYwOTQsMTEuMzEwNTE1NiBDMTIuMDQ1NDIxOSwxMC45NTMzMjgxIDEyLjA0NTQyMTksMTAuMzc1MDc4MSAxMi40MDI2MDk0LDEwLjAxNzg5MDYgQzEyLjc1OTc5NjksOS42NjA3MDMxMiAxMy4zMzgwNDY5LDkuNjYwNzAzMTIgMTMuNjk1MjM0NCwxMC4wMTc4OTA2IEMxNS4zNjc1NDY5LDExLjY5MDIwMzEgMTUuMzY3NTQ2OSwxNC40MTEwMTU2IDEzLjY5NTIzNDQsMTYuMDgzMzI4MSBMMTAuMzIwMjM0NCwxOS40NTgzMjgxIEM5LjUxMDIzNDM3LDIwLjI2ODMyODEgOC40MzMwNDY4NywyMC43MTQzOTA2IDcuMjg3MjM0MzcsMjAuNzE0MzkwNiBDNi4xNDE0MjE4NywyMC43MTQzOTA2IDUuMDY0MjM0MzcsMjAuMjY4MzI4MSA0LjI1NDIzNDM3LDE5LjQ1ODMyODEgWiIgaWQ9IlNoYXBlIiBmaWxsPSIjMDAwIj48L3BhdGg%2BCjwvc3ZnPgo%3D); }

trix-toolbar .button_group button.strike::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgd2lkdGg9IjI0cHgiIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCAyNCAyNCI%2BCiA8cGF0aCBpZD0iUyIgZmlsbD0iIzAwMCIgZD0ibTEyLjcyOCAxNGMwLjEyMiAwLjA1NyAwLjIxNiAwLjEwNCAwLjI4MiAwLjE0MSAwLjI2MiAwLjE0NyAwLjQ1MSAwLjI5MyAwLjU3IDAuNDM2IDAuMTE4IDAuMTQ0IDAuMTc3IDAuMzEyIDAuMTc3IDAuNTAzIDAgMC4zMDctMC4xNDcgMC41NTgtMC40NDEgMC43NTItMC4yOTMgMC4xOTUtMC43NTUgMC4yOTMtMS4zODUgMC4yOTMtMC43MzEgMC0xLjUzMy0wLjEwNC0yLjQwNjYtMC4zMTItMC44NzM3LTAuMjA3LTEuNzE1Mi0wLjQ5Ni0yLjUyNDQtMC44Njd2My4zNzNjMC43NjYzIDAuMzI1IDEuNTAzOSAwLjU1NCAyLjIxMjkgMC42ODVzMS41ODYxIDAuMTk2IDIuNjMyMSAwLjE5NmMxLjI1MyAwIDIuMzQ1LTAuMTg3IDMuMjc2LTAuNTYgMC45MzEtMC4zNzQgMS42NDQtMC44OTggMi4xMzgtMS41NzJzMC43NDEtMS40NDUgMC43NDEtMi4zMTRjMC0wLjI2NC0wLjAyMS0wLjUxNS0wLjA2Mi0wLjc1NGgtNS4yMXptLTUuNDk3Ny00Yy0wLjA4MTktMC4zMzU4LTAuMTIyOS0wLjcwMjItMC4xMjI5LTEuMDk5NCAwLTEuMjkwMiAwLjUyNjQtMi4yOTYyIDEuNTc5MS0zLjAxOCAxLjA1MjgtMC43MjE3IDIuNDk5NS0xLjA4MjYgNC4zMzk1LTEuMDgyNiAxLjYyNiAwIDMuMjg0IDAuMzM1MyA0Ljk3NCAxLjAwNmwtMS4zIDIuOTIyMWMtMS40NjgtMC42MDA0LTIuNzM1LTAuOTAwNi0zLjgwMy0wLjkwMDYtMC41NTEgMC0wLjk1MiAwLjA4NjMtMS4yMDMgMC4yNTg3LTAuMjUgMC4xNzI1LTAuMzc2IDAuMzg2NS0wLjM3NiAwLjY0MTkgMCAwLjI3NDcgMC4xNiAwLjUyMDYgMC40NzggMC43Mzc4IDAuMTc5IDAuMTIxOCAwLjUzIDAuMjk5OCAxLjA1MiAwLjUzNDFoLTUuNjE3N3oiLz4KIDxwYXRoIGlkPSJQYXRoLTIiIGZpbGw9IiMwMDAiIGQ9Im0zIDEzaDE4di0yaC0xOHYyeiIvPgo8L3N2Zz4K); }

trix-toolbar .button_group button.quote::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KPHBhdGggZD0iTTYgMTdoM2wyLTR2LTZoLTZ2Nmgzek0xNCAxN2gzbDItNHYtNmgtNnY2aDN6IiBmaWxsPSIjMDAwIj48L3BhdGg%2BCjwvc3ZnPgo%3D); }

trix-toolbar .button_group button.code::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KPHBhdGggZD0iTTE4LjE3IDEybC0zLjE3IDMuMTcgMS40MTUgMS40MTUgNC41ODUtNC41ODUtNC41ODUtNC41ODUtMS40MTUgMS40MTUgMy4xNyAzLjE3ek01LjgzIDEybDMuMTctMy4xNy0xLjQxNS0xLjQxNS00LjU4NSA0LjU4NSA0LjU4NSA0LjU4NSAxLjQxNS0xLjQxNS0zLjE3LTMuMTd6IiBmaWxsPSIjMDAwIj48L3BhdGg%2BCjwvc3ZnPgo%3D); }

trix-toolbar .button_group button.bullets::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgd2lkdGg9IjI0cHgiIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCAyNCAyNCI%2BCiAgPHBhdGggaWQ9IlNoYXBlIiBmaWxsPSIjMDAwIiBkPSJtNCA0Yy0xLjEwNjcgMC0yIDAuODkzMy0yIDJzMC44OTMzIDIgMiAyIDItMC44OTMzIDItMi0wLjg5MzMtMi0yLTJ6bTAgNmMtMS4xMDY3IDAtMiAwLjg5My0yIDJzMC44OTMzIDIgMiAyIDItMC44OTMgMi0yLTAuODkzMy0yLTItMnptMCA2Yy0xLjEwNjcgMC0yIDAuODkzLTIgMnMwLjg5MzMgMiAyIDIgMi0wLjg5MyAyLTItMC44OTMzLTItMi0yem00IDNoMTR2LTJoLTE0djJ6bTAtNmgxNHYtMmgtMTR2MnptMC04djJoMTR2LTJoLTE0eiIvPgo8L3N2Zz4K); }

trix-toolbar .button_group button.numbers::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KPHBhdGggZD0iTTIgMTdoMnYwLjVoLTF2MWgxdjAuNWgtMnYxaDN2LTRoLTN2MXpNMyA4aDF2LTRoLTJ2MWgxdjN6TTIgMTFoMS44bC0xLjggMi4xdjAuOWgzdi0xaC0xLjhsMS44LTIuMXYtMC45aC0zdjF6TTcgNXYyaDE0di0yaC0xNHpNNyAxOWgxNHYtMmgtMTR2MnpNNyAxM2gxNHYtMmgtMTR2MnoiIGZpbGw9IiMwMDAiPjwvcGF0aD4KPC9zdmc%2BCg%3D%3D); }

trix-toolbar .button_group button.block-level.decrease::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8%2BCjxzdmcgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDI0IDI0IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogIDxwYXRoIGQ9Ik0zLDE5IEwyMiwxOSBMMjIsMTcgTDMsMTcgTDMsMTkgTDMsMTkgWiBNMTAsMTMgTDIyLDEzIEwyMiwxMSBMMTAsMTEgTDEwLDEzIEwxMCwxMyBaIE0xLjcwNzEwNjc4LDEyLjc0MjY0MDcgTDQuNTM1NTMzOTEsMTUuNTcxMDY3OCBMNS45NDk3NDc0NywxNC4xNTY4NTQyIEwzLjgyODQyNzEyLDEyLjAzNTUzMzkgTDUuOTQ5NzQ3NDcsOS45MTQyMTM1NiBMNC41MzU1MzM5MSw4LjUgTDEsMTIuMDM1NTMzOSBMMS43MDcxMDY3OCwxMi43NDI2NDA3IFogTTMsNSBMMyw3IEwyMiw3IEwyMiw1IEwzLDUgWiIgaWQ9IlNoYXBlIiBmaWxsPSIjMDAwIj48L3BhdGg%2BCjwvc3ZnPgo%3D); }

trix-toolbar .button_group button.block-level.increase::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8%2BCjxzdmcgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDI0IDI0IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogIDxwYXRoIGQ9Ik0zLDE5IEwyMiwxOSBMMjIsMTcgTDMsMTcgTDMsMTkgTDMsMTkgWiBNMTAsMTMgTDIyLDEzIEwyMiwxMSBMMTAsMTEgTDEwLDEzIEwxMCwxMyBaIE0zLjEyMTMyMDM0LDEyLjAzNTUzMzkgTDEsMTQuMTU2ODU0MiBMMi40MTQyMTM1NiwxNS41NzEwNjc4IEw1Ljk0OTc0NzQ3LDEyLjAzNTUzMzkgTDUuMjQyNjQwNjksMTEuMzI4NDI3MSBMMi40MTQyMTM1Niw4LjUgTDEsOS45MTQyMTM1NiBMMy4xMjEzMjAzNCwxMi4wMzU1MzM5IFogTTMsNSBMMyw3IEwyMiw3IEwyMiw1IEwzLDUgWiIgaWQ9IlNoYXBlLUNvcHkiIGZpbGw9IiMwMDAiPjwvcGF0aD4KPC9zdmc%2BCg%3D%3D); }

trix-toolbar .button_group button.undo::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KPHBhdGggZD0iTTEyLjUgOGMtMi42NDUgMC01LjA1NSAwLjk4NS02LjkgMi42bC0zLjYtMy42djloOWwtMy42MTUtMy42MTVjMS4zODUtMS4xNjUgMy4xNi0xLjg4NSA1LjExNS0xLjg4NSAzLjU0NSAwIDYuNTQ1IDIuMzA1IDcuNTk1IDUuNWwyLjM2NS0wLjc4Yy0xLjM3NS00LjE5LTUuMzEtNy4yMi05Ljk2LTcuMjJ6IiBmaWxsPSIjMDAwIj48L3BhdGg%2BCjwvc3ZnPgo%3D); }

trix-toolbar .button_group button.redo::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KPHBhdGggZD0iTTE4LjM5NSAxMC42Yy0xLjg0LTEuNjE1LTQuMjUtMi42LTYuODk1LTIuNi00LjY1IDAtOC41ODUgMy4wMzAtOS45NiA3LjIybDIuMzY1IDAuNzhjMS4wNTAtMy4xOTUgNC4wNTAtNS41IDcuNTk1LTUuNSAxLjk1NSAwIDMuNzMgMC43MiA1LjExNSAxLjg4NWwtMy42MTUgMy42MTVoOXYtOWwtMy42MDUgMy42eiIgZmlsbD0iIzAwMCI%2BPC9wYXRoPgo8L3N2Zz4K); }

trix-editor a[data-trix-attachment] {
  color: inherit;
  text-decoration: none; }

trix-editor a[data-trix-attachment]:hover, trix-editor a[data-trix-attachment]:visited:hover {
  color: inherit; }

trix-editor [data-trix-mutable=true] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

trix-editor [data-trix-mutable=true] img {
  box-shadow: 0 0 0 2px highlight; }

trix-editor .attachment {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 13px; }

trix-editor .attachment .remove {
  display: block;
  position: absolute;
  top: -12px;
  right: -12px;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  line-height: 22px;
  font-size: 0;
  color: black;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #bbb;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1); }

trix-editor .attachment .remove:after {
  content: '×';
  font-size: 18px;
  font-weight: bold;
  opacity: 0.6; }

trix-editor .attachment .remove:hover:after {
  opacity: 1; }

trix-editor .attachment .caption {
  display: block;
  margin: 4px auto 0 auto;
  padding: 0;
  text-align: center; }

trix-editor .attachment .caption .size:before {
  content: ' · '; }

trix-editor .attachment .caption.caption-editing textarea {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 13px;
  text-align: center;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none; }

trix-editor .attachment.attachment-file {
  color: #333;
  line-height: 30px;
  padding: 0 16px;
  border: 1px solid #bbb;
  border-radius: 5px; }

.trix-content blockquote {
  margin: 0 0 0 5px;
  padding: 0 0 0 10px;
  border-left: 5px solid #ccc; }

.trix-content pre {
  font-family: monospace;
  font-size: 12px;
  margin: 0;
  padding: 10px;
  white-space: pre-wrap;
  background-color: #eee; }

.trix-content ul, .trix-content ol, .trix-content li {
  margin: 0;
  padding: 0; }

.trix-content ul li, .trix-content ol li, .trix-content li li {
  margin-left: 20px; }

/* ---------------------------------------------------------
   Font face
   ---------------------------------------------------------*/
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on December 27, 2015 */
@font-face {
  font-family: 'GothamRounded';
  src: url("../../fonts/gotham/GothamRounded-Light.eot");
  src: url("../../fonts/gotham/GothamRounded-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/gotham/GothamRounded-Light.woff2") format("woff2"), url("../../fonts/gotham/GothamRounded-Light.woff") format("woff"), url("../../fonts/gotham/GothamRounded-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'GothamRounded';
  src: url("../../fonts/gotham/GothamRounded-Book.eot");
  src: url("../../fonts/gotham/GothamRounded-Book.eot?#iefix") format("embedded-opentype"), url("../../fonts/gotham/GothamRounded-Book.woff2") format("woff2"), url("../../fonts/gotham/GothamRounded-Book.woff") format("woff"), url("../../fonts/gotham/GothamRounded-Book.ttf") format("truetype"), url("../../fonts/gotham/GothamRounded-Book.svg#GothamRounded-Book") format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'GothamRounded';
  src: url("../../fonts/gotham/GothamRounded-Bold.eot");
  src: url("../../fonts/gotham/GothamRounded-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/gotham/GothamRounded-Bold.woff2") format("woff2"), url("../../fonts/gotham/GothamRounded-Bold.woff") format("woff"), url("../../fonts/gotham/GothamRounded-Bold.ttf") format("truetype"), url("../../fonts/gotham/GothamRounded-Bold.svg#GothamRounded-Bold") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'GothamRounded';
  src: url("../../fonts/gotham/GothamRounded-Medium.eot");
  src: url("../../fonts/gotham/GothamRounded-Medium.eot?#iefix") format("embedded-opentype"), url("../../fonts/gotham/GothamRounded-Medium.woff2") format("woff2"), url("../../fonts/gotham/GothamRounded-Medium.woff") format("woff"), url("../../fonts/gotham/GothamRounded-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Archer';
  src: url("../../fonts/archer/Archer-Semibold.eot?#iefix") format("embedded-opentype"), url("../../fonts/archer/Archer-Semibold.otf") format("opentype"), url("../../fonts/archer/Archer-Semibold.woff") format("woff"), url("../../fonts/archer/Archer-Semibold.ttf") format("truetype"), url("../../fonts/archer/Archer-Semibold.svg#Archer-Semibold") format("svg");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'Archer';
  src: url("../../fonts/archer/Archer-SemiboldItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/archer/Archer-SemiboldItalic.otf") format("opentype"), url("../../fonts/archer/Archer-SemiboldItalic.woff") format("woff"), url("../../fonts/archer/Archer-SemiboldItalic.ttf") format("truetype"), url("../../fonts/archer/Archer-SemiboldItalic.svg#Archer-SemiboldItalic") format("svg");
  font-weight: 600;
  font-style: italic; }

@font-face {
  font-family: 'Archer';
  src: url("../../fonts/archer/Archer-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/archer/Archer-Bold.otf") format("opentype"), url("../../fonts/archer/Archer-Bold.woff") format("woff"), url("../../fonts/archer/Archer-Bold.ttf") format("truetype"), url("../../fonts/archer/Archer-Bold.svg#Archer-Bold") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Archer';
  src: url("../../fonts/archer/Archer-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/archer/Archer-BoldItalic.otf") format("opentype"), url("../../fonts/archer/Archer-BoldItalic.woff") format("woff"), url("../../fonts/archer/Archer-BoldItalic.ttf") format("truetype"), url("../../fonts/archer/Archer-BoldItalic.svg#Archer-BoldItalic") format("svg");
  font-weight: 700;
  font-style: italic; }

body.stop-scrolling {
  height: 100%;
  overflow: hidden; }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: white;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 1000001; }

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px; } }

.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block; }

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal; }

.sweet-alert fieldset {
  border: none;
  position: relative; }

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  -webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s; }

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  -webkit-transition: padding 0.25s, max-height 0.25s;
  transition: padding 0.25s, max-height 0.25s; }

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px; }

.sweet-alert .sa-error-container p {
  display: inline-block; }

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s; }

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px; }

.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed; }

.sweet-alert input:focus::-moz-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus:-ms-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd; }

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd; }

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd; }

.sweet-alert.show-input input {
  display: block; }

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative; }

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden; }

.sweet-alert button {
  background-color: #8CD4F5;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer; }

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }

.sweet-alert button:hover {
  background-color: #7ecff4; }

.sweet-alert button:active {
  background-color: #5dc2f1; }

.sweet-alert button.cancel {
  background-color: #C1C1C1; }

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9; }

.sweet-alert button.cancel:active {
  background-color: #a8a8a8; }

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important; }

.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default; }

.sweet-alert button.confirm[disabled] {
  color: transparent; }

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
  transition-delay: 0s; }

.sweet-alert button::-moz-focus-inner {
  border: 0; }

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important; }

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px; }

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box; }

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474; }

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block; }

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px; }

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86; }

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: '';
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px; }

.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px; }

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat; }

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@-webkit-keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

@keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s; }

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s; }

.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s; }

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s; }

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s; }

.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s; }

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s; }

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in; }

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s; }

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s; }

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate; }

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate; }

@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  box-sizing: border-box; }

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff; }

.la-ball-fall.la-dark {
  color: #333; }

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-ball-fall {
  width: 54px;
  height: 18px; }

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite; }

.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  animation-delay: -200ms; }

.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  animation-delay: -100ms; }

.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms; }

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px; }

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px; }

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px; }

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px; }

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px; }

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px; }

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%); } }

@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%); } }

/*!
 *  Font Awesome 4.6.3 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("../../fonts/font-awesome/fontawesome-webfont.eot?v=4.6.3");
  src: url("../../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.6.3") format("embedded-opentype"), url("../../fonts/font-awesome/fontawesome-webfont.woff2?v=4.6.3") format("woff2"), url("../../fonts/font-awesome/fontawesome-webfont.woff?v=4.6.3") format("woff"), url("../../fonts/font-awesome/fontawesome-webfont.ttf?v=4.6.3") format("truetype"), url("../../fonts/font-awesome/fontawesome-webfont.svg?v=4.6.3#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.3333333333em;
  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.2857142857em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.8571428571em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  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 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-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 {
  -webkit-filter: none;
  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: #fff; }

/* 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: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper-pp:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

.fa-gitlab:before {
  content: ""; }

.fa-wpbeginner:before {
  content: ""; }

.fa-wpforms:before {
  content: ""; }

.fa-envira:before {
  content: ""; }

.fa-universal-access:before {
  content: ""; }

.fa-wheelchair-alt:before {
  content: ""; }

.fa-question-circle-o:before {
  content: ""; }

.fa-blind:before {
  content: ""; }

.fa-audio-description:before {
  content: ""; }

.fa-volume-control-phone:before {
  content: ""; }

.fa-braille:before {
  content: ""; }

.fa-assistive-listening-systems:before {
  content: ""; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: ""; }

.fa-glide:before {
  content: ""; }

.fa-glide-g:before {
  content: ""; }

.fa-signing:before,
.fa-sign-language:before {
  content: ""; }

.fa-low-vision:before {
  content: ""; }

.fa-viadeo:before {
  content: ""; }

.fa-viadeo-square:before {
  content: ""; }

.fa-snapchat:before {
  content: ""; }

.fa-snapchat-ghost:before {
  content: ""; }

.fa-snapchat-square:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-first-order:before {
  content: ""; }

.fa-yoast:before {
  content: ""; }

.fa-themeisle:before {
  content: ""; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: ""; }

.fa-fa:before,
.fa-font-awesome:before {
  content: ""; }

.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; }

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

body {
  margin: 0; }

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

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

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

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

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

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

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

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

pre {
  overflow: auto; }

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

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

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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

input {
  line-height: normal; }

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

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

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

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

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

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

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

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot");
  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }

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

.glyphicon-asterisk:before {
  content: "\002a"; }

.glyphicon-plus:before {
  content: "\002b"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

* {
  box-sizing: border-box; }

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

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

body {
  font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 1.375;
  color: #000;
  background-color: #fff; }

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

a {
  color: #3075b9;
  text-decoration: none; }
  a:hover, a:focus {
    color: #204f7c;
    text-decoration: none; }
  a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

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

.img-thumbnail, .wysiwyg img {
  padding: 0;
  line-height: 1.375;
  background-color: #fff;
  border: 1px solid none;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

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

hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0;
  border-top: 1px solid #9da9b0; }

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

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

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

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Archer", serif;
  font-weight: 700;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #9da9b0; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 22px;
  margin-bottom: 11px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 11px;
  margin-bottom: 11px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

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

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

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

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

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

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

p {
  margin: 0 0 11px; }

.lead {
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 24px; } }

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

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

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

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

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

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

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

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

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

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

.text-muted {
  color: #9da9b0; }

.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; }

.bg-primary {
  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: 10px;
  margin: 44px 0 22px;
  border-bottom: 1px solid #9da9b0; }

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

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

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

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

dt,
dd {
  line-height: 1.375; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }

.dl-horizontal dd:after {
  clear: both; }

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

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

.initialism {
  font-size: 90%; }

blockquote {
  padding: 11px 22px;
  margin: 0 0 22px;
  font-size: 26px;
  border-left: 5px solid transparent; }
  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.375;
    color: #000; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: '\2014 \00A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid transparent;
  border-left: 0;
  text-align: right; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ''; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: '\00A0 \2014'; }

address {
  margin-bottom: 22px;
  font-style: normal;
  line-height: 1.375; }

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;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none; }

pre {
  display: block;
  padding: 10.5px;
  margin: 0 0 11px;
  font-size: 15px;
  line-height: 1.375;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0; }

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

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1241px) {
    .container {
      width: 1224px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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-1 {
    width: 8.3333333333%; }
  .col-sm-2 {
    width: 16.6666666667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.3333333333%; }
  .col-sm-5 {
    width: 41.6666666667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.3333333333%; }
  .col-sm-8 {
    width: 66.6666666667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.3333333333%; }
  .col-sm-11 {
    width: 91.6666666667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.3333333333%; }
  .col-sm-pull-2 {
    right: 16.6666666667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.3333333333%; }
  .col-sm-pull-5 {
    right: 41.6666666667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.3333333333%; }
  .col-sm-pull-8 {
    right: 66.6666666667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.3333333333%; }
  .col-sm-pull-11 {
    right: 91.6666666667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.3333333333%; }
  .col-sm-push-2 {
    left: 16.6666666667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.3333333333%; }
  .col-sm-push-5 {
    left: 41.6666666667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.3333333333%; }
  .col-sm-push-8 {
    left: 66.6666666667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.3333333333%; }
  .col-sm-push-11 {
    left: 91.6666666667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%; }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%; }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%; }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%; }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@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-1 {
    width: 8.3333333333%; }
  .col-md-2 {
    width: 16.6666666667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.3333333333%; }
  .col-md-5 {
    width: 41.6666666667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.3333333333%; }
  .col-md-8 {
    width: 66.6666666667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.3333333333%; }
  .col-md-11 {
    width: 91.6666666667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.3333333333%; }
  .col-md-pull-2 {
    right: 16.6666666667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.3333333333%; }
  .col-md-pull-5 {
    right: 41.6666666667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.3333333333%; }
  .col-md-pull-8 {
    right: 66.6666666667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.3333333333%; }
  .col-md-pull-11 {
    right: 91.6666666667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.3333333333%; }
  .col-md-push-2 {
    left: 16.6666666667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.3333333333%; }
  .col-md-push-5 {
    left: 41.6666666667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.3333333333%; }
  .col-md-push-8 {
    left: 66.6666666667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.3333333333%; }
  .col-md-push-11 {
    left: 91.6666666667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.3333333333%; }
  .col-md-offset-2 {
    margin-left: 16.6666666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.3333333333%; }
  .col-md-offset-5 {
    margin-left: 41.6666666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.3333333333%; }
  .col-md-offset-8 {
    margin-left: 66.6666666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.3333333333%; }
  .col-md-offset-11 {
    margin-left: 91.6666666667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1241px) {
  .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-1 {
    width: 8.3333333333%; }
  .col-lg-2 {
    width: 16.6666666667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.3333333333%; }
  .col-lg-5 {
    width: 41.6666666667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.3333333333%; }
  .col-lg-8 {
    width: 66.6666666667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.3333333333%; }
  .col-lg-11 {
    width: 91.6666666667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.3333333333%; }
  .col-lg-pull-2 {
    right: 16.6666666667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.3333333333%; }
  .col-lg-pull-5 {
    right: 41.6666666667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.3333333333%; }
  .col-lg-pull-8 {
    right: 66.6666666667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.3333333333%; }
  .col-lg-pull-11 {
    right: 91.6666666667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.3333333333%; }
  .col-lg-push-2 {
    left: 16.6666666667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.3333333333%; }
  .col-lg-push-5 {
    left: 41.6666666667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.3333333333%; }
  .col-lg-push-8 {
    left: 66.6666666667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.3333333333%; }
  .col-lg-push-11 {
    left: 91.6666666667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%; }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%; }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%; }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%; }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

table {
  background-color: transparent; }

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

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.375;
    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 > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .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 > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

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

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

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

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

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

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.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 > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.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 > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.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 > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.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 > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

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

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 16.5px;
      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 > thead > tr > td,
        .table-responsive > .table > tbody > tr > th,
        .table-responsive > .table > tbody > tr > td,
        .table-responsive > .table > tfoot > tr > th,
        .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 > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th: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 > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th: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 > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

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

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

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

input[type="search"] {
  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: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.375;
  color: #959595; }

.form-control, .mastermind-users .algolia-search input {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.375;
  color: #959595;
  background-color: #fff;
  background-image: none;
  border: 1px solid #a4a4a4;
  border-radius: 5px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control:focus, .mastermind-users .algolia-search input:focus {
    border-color: #1e6ab4;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(30, 106, 180, 0.6); }
  .form-control::-moz-placeholder, .mastermind-users .algolia-search input::-moz-placeholder {
    color: #959595;
    opacity: 1; }
  .form-control:-ms-input-placeholder, .mastermind-users .algolia-search input:-ms-input-placeholder {
    color: #959595; }
  .form-control::-webkit-input-placeholder, .mastermind-users .algolia-search input::-webkit-input-placeholder {
    color: #959595; }
  .form-control::-ms-expand, .mastermind-users .algolia-search input::-ms-expand {
    border: 0;
    background-color: transparent; }
  .form-control[disabled], .mastermind-users .algolia-search input[disabled], .form-control[readonly], .mastermind-users .algolia-search input[readonly],
  fieldset[disabled] .form-control,
  fieldset[disabled] .mastermind-users .algolia-search input, .mastermind-users .algolia-search
  fieldset[disabled] input {
    background-color: #9da9b0;
    opacity: 1; }
  .form-control[disabled], .mastermind-users .algolia-search input[disabled],
  fieldset[disabled] .form-control,
  fieldset[disabled] .mastermind-users .algolia-search input, .mastermind-users .algolia-search
  fieldset[disabled] input {
    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, .mastermind-users .algolia-search input[type="date"],
  input[type="time"].form-control,
  .mastermind-users .algolia-search input[type="time"],
  input[type="datetime-local"].form-control,
  .mastermind-users .algolia-search input[type="datetime-local"],
  input[type="month"].form-control,
  .mastermind-users .algolia-search input[type="month"] {
    line-height: 36px; }
  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control, .mastermind-users .algolia-search .input-group-sm > input[type="date"],
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn,
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input[type="time"].form-control,
  .mastermind-users .algolia-search .input-group-sm > input[type="time"],
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn,
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input[type="datetime-local"].form-control,
  .mastermind-users .algolia-search .input-group-sm > input[type="datetime-local"],
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input[type="month"].form-control,
  .mastermind-users .algolia-search .input-group-sm > input[type="month"],
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn,
  .input-group-sm
  input[type="month"] {
    line-height: 33px; }
  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control, .mastermind-users .algolia-search .input-group-lg > input[type="date"],
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn,
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input[type="time"].form-control,
  .mastermind-users .algolia-search .input-group-lg > input[type="time"],
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn,
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input[type="datetime-local"].form-control,
  .mastermind-users .algolia-search .input-group-lg > input[type="datetime-local"],
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input[type="month"].form-control,
  .mastermind-users .algolia-search .input-group-lg > input[type="month"],
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn,
  .input-group-lg
  input[type="month"] {
    line-height: 49px; } }

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

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label,
  .checkbox label {
    min-height: 22px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

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

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

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

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

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

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

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

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 38px; }
  .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, .mastermind-users .algolia-search .input-group-lg > input.form-control-static,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, .mastermind-users .algolia-search .input-group-sm > input.form-control-static,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0; }

.input-sm, .input-group-sm > .form-control, .mastermind-users .algolia-search .input-group-sm > input,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 33px;
  line-height: 33px; }

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

.form-group-sm .form-control, .form-group-sm .mastermind-users .algolia-search input, .mastermind-users .algolia-search .form-group-sm input {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px; }

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

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

.form-group-sm .form-control-static {
  height: 33px;
  min-height: 36px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1.5; }

.input-lg, .input-group-lg > .form-control, .mastermind-users .algolia-search .input-group-lg > input,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px; }

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 49px;
  line-height: 49px; }

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

.form-group-lg .form-control, .form-group-lg .mastermind-users .algolia-search input, .mastermind-users .algolia-search .form-group-lg input {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px; }

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

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

.form-group-lg .form-control-static {
  height: 49px;
  min-height: 42px;
  padding: 11px 16px;
  font-size: 20px;
  line-height: 1.3333333; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control, .has-feedback .mastermind-users .algolia-search input, .mastermind-users .algolia-search .has-feedback input {
    padding-right: 45px; }

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

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .mastermind-users .algolia-search .input-group-lg > input + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback,
.form-group-lg .mastermind-users .algolia-search input + .form-control-feedback, .mastermind-users .algolia-search
.form-group-lg input + .form-control-feedback {
  width: 49px;
  height: 49px;
  line-height: 49px; }

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .mastermind-users .algolia-search .input-group-sm > input + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback,
.form-group-sm .mastermind-users .algolia-search input + .form-control-feedback, .mastermind-users .algolia-search
.form-group-sm input + .form-control-feedback {
  width: 33px;
  height: 33px;
  line-height: 33px; }

.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, .has-success .mastermind-users .algolia-search input, .mastermind-users .algolia-search .has-success input {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus, .has-success .mastermind-users .algolia-search input:focus, .mastermind-users .algolia-search .has-success input:focus {
    border-color: #2b542c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

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

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

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

.has-warning .form-control, .has-warning .mastermind-users .algolia-search input, .mastermind-users .algolia-search .has-warning input {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus, .has-warning .mastermind-users .algolia-search input:focus, .mastermind-users .algolia-search .has-warning input:focus {
    border-color: #66512c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control, .form-inline .mastermind-users .algolia-search input, .mastermind-users .algolia-search .form-inline input {
    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,
    .form-inline .input-group .mastermind-users .algolia-search input, .mastermind-users .algolia-search
    .form-inline .input-group input {
      width: auto; }
  .form-inline .input-group > .form-control, .form-inline .mastermind-users .algolia-search .input-group > input, .mastermind-users .algolia-search .form-inline .input-group > input {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

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

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

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after {
    clear: both; }

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

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

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

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

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.375;
  border-radius: 31px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus, .btn.focus {
    color: #112e4a;
    text-decoration: none; }
  .btn:active, .btn.active {
    outline: 0;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .btn[disabled],
  fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none; }

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

.btn-default {
  color: #112e4a;
  background-color: transparent;
  border-color: #c3ced8; }
  .btn-default:focus, .btn-default.focus {
    color: #112e4a;
    background-color: transparent;
    border-color: #768fa6; }
  .btn-default:hover {
    color: #112e4a;
    background-color: transparent;
    border-color: #9eb0c0; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #112e4a;
    background-color: transparent;
    border-color: #9eb0c0; }
    .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
    .open > .btn-default.dropdown-toggle:hover,
    .open > .btn-default.dropdown-toggle:focus,
    .open > .btn-default.dropdown-toggle.focus {
      color: #112e4a;
      background-color: transparent;
      border-color: #768fa6; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus {
    background-color: transparent;
    border-color: #c3ced8; }
  .btn-default .badge {
    color: transparent;
    background-color: #112e4a; }

.btn-primary {
  color: #fff;
  background-color: #3075b9;
  border-color: #3075b9; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #255b91;
    border-color: #163554; }
  .btn-primary:hover {
    color: #fff;
    background-color: #255b91;
    border-color: #235688; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #255b91;
    border-color: #235688; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #1e4974;
      border-color: #163554; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus {
    background-color: #3075b9;
    border-color: #3075b9; }
  .btn-primary .badge {
    color: #3075b9;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #96d019;
  border-color: #96d019; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #75a214;
    border-color: #445e0b; }
  .btn-success:hover {
    color: #fff;
    background-color: #75a214;
    border-color: #6f9912; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #75a214;
    border-color: #6f9912; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #5e8310;
      border-color: #445e0b; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #96d019;
    border-color: #96d019; }
  .btn-success .badge {
    color: #96d019;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: transparent;
  border-color: #1e6ab4; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: transparent;
    border-color: #0c2a47; }
  .btn-info:hover {
    color: #fff;
    background-color: transparent;
    border-color: #154b80; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: transparent;
    border-color: #154b80; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: transparent;
      border-color: #0c2a47; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: transparent;
    border-color: #1e6ab4; }
  .btn-info .badge {
    color: transparent;
    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 > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #d58512;
      border-color: #985f0d; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning: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 > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #ac2925;
      border-color: #761c19; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #3075b9;
  font-weight: normal;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #204f7c;
    text-decoration: none;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #9da9b0;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 14px;
  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 0.15s linear;
  transition: opacity 0.15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16px;
  text-align: left;
  background-color: #222;
  border: 1px solid #ccc;
  border: 1px solid #222;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    height: 1px;
    margin: 10px 0;
    overflow: hidden;
    background-color: #fff; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.375;
    color: #fff;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #1e6ab4;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #9da9b0; }

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.375;
  color: #9da9b0;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    float: left; }
    .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
    .btn-group-vertical > .btn:hover,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .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:before, .btn-toolbar:after {
    content: " ";
    display: table; }
  .btn-toolbar:after {
    clear: both; }
  .btn-toolbar .btn,
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .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:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }

.btn-group-vertical > .btn-group:after {
  clear: both; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 31px;
  border-top-left-radius: 31px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 31px;
  border-bottom-left-radius: 31px; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn,
  .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
  .btn-group-justified > .btn-group .btn {
    width: 100%; }
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0; }
  .input-group .form-control, .input-group .mastermind-users .algolia-search input, .mastermind-users .algolia-search .input-group input {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    .input-group .form-control:focus, .input-group .mastermind-users .algolia-search input:focus, .mastermind-users .algolia-search .input-group input:focus {
      z-index: 3; }

.input-group-addon,
.input-group-btn,
.input-group .form-control,
.input-group .mastermind-users .algolia-search input, .mastermind-users .algolia-search
.input-group input {
  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),
  .input-group .mastermind-users .algolia-search input:not(:first-child):not(:last-child), .mastermind-users .algolia-search
  .input-group input: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: 16px;
  font-weight: normal;
  line-height: 1;
  color: #959595;
  text-align: center;
  background-color: #ccc;
  border: 1px solid #a4a4a4;
  border-radius: 5px; }
  .input-group-addon.input-sm, .mastermind-users .algolia-search .input-group-sm > input.input-group-addon,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 3px; }
  .input-group-addon.input-lg, .mastermind-users .algolia-search .input-group-lg > input.input-group-addon,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 20px;
    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 .mastermind-users .algolia-search input:first-child, .mastermind-users .algolia-search .input-group input:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child, .input-group .mastermind-users .algolia-search input:last-child, .mastermind-users .algolia-search .input-group input:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn {
    position: relative; }
    .input-group-btn > .btn + .btn {
      margin-left: -1px; }
    .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
      z-index: 2; }
  .input-group-btn:first-child > .btn,
  .input-group-btn:first-child > .btn-group {
    margin-right: -1px; }
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
  .nav:before, .nav:after {
    content: " ";
    display: table; }
  .nav:after {
    clear: both; }
  .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: #9da9b0; }
    .nav > li.disabled > a {
      color: #9da9b0; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #9da9b0;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #9da9b0;
    border-color: #3075b9; }
  .nav .nav-divider {
    height: 1px;
    margin: 10px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ccc; }
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.375;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: transparent transparent #ccc; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #1e6ab4;
      background-color: transparent;
      border: 1px solid #ccc;
      border-bottom-color: transparent;
      cursor: default; }

.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, .nav-tabs.nav-justified {
  width: 100%; }
  .nav-justified > li, .nav-tabs.nav-justified > li {
    float: none; }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
      text-align: center;
      margin-bottom: 5px; }
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
  @media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%; }
      .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px; }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ccc; }
  @media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ccc;
      border-radius: 4px 4px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: transparent; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 22px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    content: " ";
    display: table; }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table; }

.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 768px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none; }
      .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important; }
      .navbar-collapse.in {
        overflow-y: visible; }
      .navbar-fixed-top .navbar-collapse,
      .navbar-static-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }
  @media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      max-height: 200px; } }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
  @media (min-width: 768px) {
    .navbar-static-top {
      border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 14px 15px;
  font-size: 20px;
  line-height: 22px;
  height: 50px; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }
  @media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggle:focus {
    outline: 0; }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 768px) {
    .navbar-toggle {
      display: none; } }

.navbar-nav {
  margin: 7px -15px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 22px; }
  @media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      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: 22px; }
        .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: 14px;
          padding-bottom: 14px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 7px;
  margin-bottom: 7px; }
  @media (min-width: 768px) {
    .navbar-form .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .form-control, .navbar-form .mastermind-users .algolia-search input, .mastermind-users .algolia-search .navbar-form input {
      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,
      .navbar-form .input-group .mastermind-users .algolia-search input, .mastermind-users .algolia-search
      .navbar-form .input-group input {
        width: auto; }
    .navbar-form .input-group > .form-control, .navbar-form .mastermind-users .algolia-search .input-group > input, .mastermind-users .algolia-search .navbar-form .input-group > input {
      width: 100%; }
    .navbar-form .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .radio,
    .navbar-form .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      .navbar-form .radio label,
      .navbar-form .checkbox label {
        padding-left: 0; }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    .navbar-form .has-feedback .form-control-feedback {
      top: 0; } }
  @media (max-width: 767px) {
    .navbar-form .form-group {
      margin-bottom: 5px; }
      .navbar-form .form-group:last-child {
        margin-bottom: 0; } }
  @media (min-width: 768px) {
    .navbar-form {
      width: auto;
      border: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 7px;
  margin-bottom: 7px; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: 8.5px;
    margin-bottom: 8.5px; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: 14px;
    margin-bottom: 14px; }

.navbar-text {
  margin-top: 14px;
  margin-bottom: 14px; }
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
    .navbar-right ~ .navbar-right {
      margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }
  .navbar-default .navbar-brand {
    color: #000; }
    .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
      color: black;
      background-color: transparent; }
  .navbar-default .navbar-text {
    color: #777; }
  .navbar-default .navbar-nav > li > a {
    color: #000; }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
      color: #1e6ab4;
      background-color: transparent; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #1e6ab4;
    background-color: transparent; }
  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  .navbar-default .navbar-toggle {
    border-color: #ddd; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: #ddd; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #888; }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #e7e7e7; }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: transparent;
    color: #1e6ab4; }
  @media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #000; }
      .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #1e6ab4;
        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: #1e6ab4;
      background-color: transparent; }
    .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: #000; }
    .navbar-default .navbar-link:hover {
      color: #1e6ab4; }
  .navbar-default .btn-link {
    color: #000; }
    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
      color: #1e6ab4; }
    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #090909; }
  .navbar-inverse .navbar-brand {
    color: #c7ced2; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: #c7ced2; }
  .navbar-inverse .navbar-nav > li > a {
    color: #c7ced2; }
    .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: #090909; }
  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  .navbar-inverse .navbar-toggle {
    border-color: #333; }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
      background-color: #333; }
    .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #101010; }
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #090909;
    color: #fff; }
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #c7ced2; }
      .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: #090909; }
    .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: #c7ced2; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: #c7ced2; }
    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
      color: #fff; }
    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
      color: #444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 22px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }
  .breadcrumb > li {
    display: inline-block; }
    .breadcrumb > li + li:before {
      content: "/ ";
      padding: 0 5px;
      color: #ccc; }
  .breadcrumb > .active {
    color: #9da9b0; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 22px 0;
  border-radius: 4px; }
  .pagination > li {
    display: inline; }
    .pagination > li > a,
    .pagination > li > span {
      position: relative;
      float: left;
      padding: 6px 12px;
      line-height: 1.375;
      text-decoration: none;
      color: #3075b9;
      background-color: #fff;
      border: 1px solid #ddd;
      margin-left: -1px; }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
      margin-left: 0;
      border-bottom-left-radius: 4px;
      border-top-left-radius: 4px; }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
      border-bottom-right-radius: 4px;
      border-top-right-radius: 4px; }
  .pagination > li > a:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    z-index: 2;
    color: #204f7c;
    background-color: #9da9b0;
    border-color: #ddd; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default; }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #9da9b0;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 22px 0;
  list-style: none;
  text-align: center; }
  .pager:before, .pager:after {
    content: " ";
    display: table; }
  .pager:after {
    clear: both; }
  .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: #9da9b0; }
  .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: #9da9b0;
    background-color: #fff;
    cursor: not-allowed; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label:empty {
    display: none; }
  .btn .label {
    position: relative;
    top: -1px; }

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-default {
  background-color: #9da9b0; }
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: #819099; }

.label-primary {
  background-color: #337ab7; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #286090; }

.label-success {
  background-color: #96d019; }
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #75a214; }

.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: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #9da9b0;
  border-radius: 10px; }
  .badge:empty {
    display: none; }
  .btn .badge {
    position: relative;
    top: -1px; }
  .btn-xs .badge, .btn-group-xs > .btn .badge,
  .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px; }
  .list-group-item.active > .badge,
  .nav-pills > .active > a > .badge {
    color: #3075b9;
    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; }

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #9da9b0; }
  .jumbotron h1,
  .jumbotron .h1 {
    color: inherit; }
  .jumbotron p {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 200; }
  .jumbotron > hr {
    border-top-color: #819099; }
  .container .jumbotron,
  .container-fluid .jumbotron {
    border-radius: 6px;
    padding-left: 15px;
    padding-right: 15px; }
  .jumbotron .container {
    max-width: 100%; }
  @media screen and (min-width: 768px) {
    .jumbotron {
      padding-top: 48px;
      padding-bottom: 48px; }
      .container .jumbotron,
      .container-fluid .jumbotron {
        padding-left: 60px;
        padding-right: 60px; }
      .jumbotron h1,
      .jumbotron .h1 {
        font-size: 72px; } }

.thumbnail {
  display: block;
  padding: 0;
  margin-bottom: 22px;
  line-height: 1.375;
  background-color: #fff;
  border: 1px solid none;
  border-radius: 0;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out; }
  .thumbnail > img,
  .thumbnail a > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto; }
  .thumbnail .caption {
    padding: 28px 34px 31px;
    color: #000; }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #3075b9; }

.alert {
  padding: 15px;
  margin-bottom: 22px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c9e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6e1ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7e1b5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9c0; }
  .alert-danger .alert-link {
    color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  overflow: hidden;
  height: 22px;
  margin-bottom: 22px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.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: 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-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #96d019; }
  .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: 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: 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: 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: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media {
  margin-top: 15px; }
  .media:first-child {
    margin-top: 0; }

.media,
.media-body {
  zoom: 1;
  overflow: hidden; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }
  .media-object.img-thumbnail, .wysiwyg img.media-object {
    max-width: none; }

.media-right,
.media > .pull-right {
  padding-left: 10px; }

.media-left,
.media > .pull-left {
  padding-right: 10px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

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

.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }

a.list-group-item,
button.list-group-item {
  color: #555; }
  a.list-group-item .list-group-item-heading,
  button.list-group-item .list-group-item-heading {
    color: #333; }
  a.list-group-item:hover, a.list-group-item:focus,
  button.list-group-item:hover,
  button.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #9da9b0;
  color: #9da9b0;
  cursor: not-allowed; }
  .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit; }
  .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
    color: #9da9b0; }

.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 .list-group-item-heading > small,
  .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
  .list-group-item.active:hover .list-group-item-heading > small,
  .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
  .list-group-item.active:focus .list-group-item-heading > small,
  .list-group-item.active:focus .list-group-item-heading > .small {
    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, a.list-group-item-success:focus,
  button.list-group-item-success:hover,
  button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6; }
  a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
  button.list-group-item-success.active,
  button.list-group-item-success.active:hover,
  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, a.list-group-item-info:focus,
  button.list-group-item-info:hover,
  button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3; }
  a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
  button.list-group-item-info.active,
  button.list-group-item-info.active:hover,
  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, a.list-group-item-warning:focus,
  button.list-group-item-warning:hover,
  button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
  button.list-group-item-warning.active,
  button.list-group-item-warning.active:hover,
  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, a.list-group-item-danger:focus,
  button.list-group-item-danger:hover,
  button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc; }
  a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
  button.list-group-item-danger.active,
  button.list-group-item-danger.active:hover,
  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: 22px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }
  .panel-body:before, .panel-body:after {
    content: " ";
    display: table; }
  .panel-body:after {
    clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: inherit; }
  .panel-title > a,
  .panel-title > small,
  .panel-title > .small,
  .panel-title > small > a,
  .panel-title > .small > a {
    color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }
  .panel > .list-group .list-group-item,
  .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0; }
  .panel > .list-group:first-child .list-group-item:first-child,
  .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
  .panel > .list-group:last-child .list-group-item:last-child,
  .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }
  .panel > .table caption,
  .panel > .table-responsive > .table caption,
  .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > thead: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:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
      border-top-left-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
      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:last-child > tfoot:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
      border-bottom-left-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
      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-bordered > thead > tr > td:first-child,
  .panel > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-bordered > tfoot > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th: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-bordered > thead > tr > td:last-child,
  .panel > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-bordered > tfoot > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th: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-bordered > thead > tr:first-child > th,
  .panel > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-bordered > tbody > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  .panel > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-bordered > tfoot > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

.panel-group {
  margin-bottom: 22px; }
  .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: #333333;
    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: #333333; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-primary {
  border-color: #337ab7; }
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7; }
    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #337ab7; }
    .panel-primary > .panel-heading .badge {
      color: #337ab7;
      background-color: #fff; }
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #337ab7; }

.panel-success {
  border-color: #d6e9c6; }
  .panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }
    .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #d6e9c6; }
    .panel-success > .panel-heading .badge {
      color: #dff0d8;
      background-color: #3c763d; }
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }
  .panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1; }
    .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #bce8f1; }
    .panel-info > .panel-heading .badge {
      color: #d9edf7;
      background-color: #31708f; }
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }
  .panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc; }
    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #faebcc; }
    .panel-warning > .panel-heading .badge {
      color: #fcf8e3;
      background-color: #8a6d3b; }
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ebccd1; }
    .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  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: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1080;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1070;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
  .modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  .modal-header:before, .modal-header:after {
    content: " ";
    display: table; }
  .modal-header:after {
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.375; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0; }
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    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: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.375;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  opacity: 0;
  filter: alpha(opacity=0); }
  .tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .tooltip.top {
    margin-top: -3px;
    padding: 5px 0; }
  .tooltip.right {
    margin-left: 3px;
    padding: 0 5px; }
  .tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0; }
  .tooltip.left {
    margin-left: -3px;
    padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.375;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 16px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 16px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }
  .popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }
  .popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }
  .popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }
  .popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        transition: -webkit-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: transparent; }
  .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: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  .carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev:before {
    content: '\2039'; }
  .carousel-control .icon-next:before {
    content: '\203a'; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: transparent; }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix:before, .page-content .sidebar .profile-box .mobile-profile-box:before, .cmv_platform .btn-oval-sm:before, .cmv_platform .uploadcare-widget-button-open:before, .cmv_platform .btn_oval_xs:before, .col-wrap:before, .grid:before, .sorting:before, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item:before, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list:before, #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels:before, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right:before, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2):before, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider:before, #top-info:before, .footer:before, .discussion .media-heading:before, .step-process:before, .step-process_mobile:before, .panel-project-details .item:before, .panel-stats .inner-box .inner_stats ul:before, .panel_team_list .item:before, .panel_team_list:before, .heading_wrap:before, .brief .summary-box .item:before, .collapse-wrapper > .item .iteam-header ul li:before, .collapse-wrapper > .item .iteam-header:before, .sitemap .tree li > div.leaf p:before,
.sitemap .tree li div.root p:before, .sitemap .tree li > div.leaf:before,
.sitemap .tree li div.root:before, #top-info_filters:before, .filters_wrap:before, .box_task ul:before, .cmv-landing .header .container ul:before, .cmv-landing .header .container:before, .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper:before, .clearfix:after, .page-content .sidebar .profile-box .mobile-profile-box:after, .cmv_platform .btn-oval-sm:after, .cmv_platform .uploadcare-widget-button-open:after, .cmv_platform .btn_oval_xs:after, .col-wrap:after, .grid:after, .sorting:after, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item:after, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list:after, #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels:after, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right:after, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2):after, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider:after, #top-info:after, .footer:after, .discussion .media-heading:after, .step-process:after, .step-process_mobile:after, .panel-project-details .item:after, .panel-stats .inner-box .inner_stats ul:after, .panel_team_list .item:after, .panel_team_list:after, .heading_wrap:after, .brief .summary-box .item:after, .collapse-wrapper > .item .iteam-header ul li:after, .collapse-wrapper > .item .iteam-header:after, .sitemap .tree li > div.leaf p:after,
.sitemap .tree li div.root p:after, .sitemap .tree li > div.leaf:after,
.sitemap .tree li div.root:after, #top-info_filters:after, .filters_wrap:after, .box_task ul:after, .cmv-landing .header .container ul:after, .cmv-landing .header .container:after, .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper:after {
  content: " ";
  display: table; }

.clearfix:after, .page-content .sidebar .profile-box .mobile-profile-box:after, .cmv_platform .btn-oval-sm:after, .cmv_platform .uploadcare-widget-button-open:after, .cmv_platform .btn_oval_xs:after, .col-wrap:after, .grid:after, .sorting:after, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item:after, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list:after, #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels:after, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right:after, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2):after, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider:after, #top-info:after, .footer:after, .discussion .media-heading:after, .step-process:after, .step-process_mobile:after, .panel-project-details .item:after, .panel-stats .inner-box .inner_stats ul:after, .panel_team_list .item:after, .panel_team_list:after, .heading_wrap:after, .brief .summary-box .item:after, .collapse-wrapper > .item .iteam-header ul li:after, .collapse-wrapper > .item .iteam-header:after, .sitemap .tree li > div.leaf p:after,
.sitemap .tree li div.root p:after, .sitemap .tree li > div.leaf:after,
.sitemap .tree li div.root:after, #top-info_filters:after, .filters_wrap:after, .box_task ul:after, .cmv-landing .header .container ul:after, .cmv-landing .header .container:after, .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs {
  display: none !important; }

.visible-sm {
  display: none !important; }

.visible-md {
  display: none !important; }

.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: 1240px) {
  .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: 1240px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1240px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1240px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1241px) {
  .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: 1241px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1241px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1241px) {
  .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: 1240px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1241px) {
  .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; } }

/* ---------------------------------------------------------
   Slick styles
   ---------------------------------------------------------*/
/* slick slider styles */
.slick-slider {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }
  .slick-slider.slick-initialized .slick-slide {
    display: block; }
    .bild-detail .slick-slider.slick-initialized .slick-slide {
      padding: 0 1px; }
  .slick-slider .slick-list {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
    .slick-slider .slick-list:focus {
      outline: none; }
    .slick-slider .slick-list.dragging {
      cursor: pointer;
      cursor: hand; }
  .slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden; }
    .slick-slider .slick-track:after {
      display: table;
      content: '';
      clear: both; }
  .slick-slider .slick-slide {
    display: none;
    float: left;
    min-height: 1%;
    height: 100%;
    position: relative; }
  .slick-slider .slick-dots {
    line-height: 0; }
    .slick-slider .slick-dots li {
      display: inline-block;
      vertical-align: top;
      line-height: 1;
      margin: 0 10px; }
      .slick-slider .slick-dots li.slick-active button,
      .slick-slider .slick-dots li button:hover {
        background: transparent;
        box-shadow: 0 0 0 3px #fff; }
    .slick-slider .slick-dots button {
      font: 0/0 a;
      color: transparent;
      text-shadow: none;
      background-color: transparent;
      border: 0;
      border: none;
      background: #687993;
      width: 15px;
      height: 15px;
      padding: 0;
      border-radius: 50%;
      outline: none;
      border: none; }
  .slick-slider .slick-arrow {
    position: absolute;
    color: #fff;
    font-size: 62px;
    font-family: 'FontAwesome';
    top: 29.4%;
    line-height: 1;
    width: 18px;
    z-index: 1;
    display: none !important; }
    .slick-slider .slick-arrow:hover {
      color: #000; }
  .slick-slider .slick-prev {
    left: 0; }
    .slick-slider .slick-prev:before {
      content: '\f104'; }
  .slick-slider .slick-next {
    right: 0; }
    .slick-slider .slick-next:before {
      content: '\f105'; }

/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Ashley Novak
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  /*.dow {
    border-top: 1px solid #ddd !important;
  }*/ }
  .datepicker.datepicker-inline {
    width: 220px; }
  .datepicker.datepicker-dropdown {
    position: absolute;
    left: 0;
    z-index: 9999; }
    .datepicker.datepicker-dropdown:before {
      content: '';
      display: inline-block;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 7px solid #ccc;
      border-top: 0;
      border-bottom-color: rgba(0, 0, 0, 0.2);
      position: absolute; }
    .datepicker.datepicker-dropdown:after {
      content: '';
      display: inline-block;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #fff;
      border-top: 0;
      position: absolute; }
    .datepicker.datepicker-dropdown.datepicker-orient-left:before {
      left: 107px; }
    .datepicker.datepicker-dropdown.datepicker-orient-left:after {
      left: 108px; }
    .datepicker.datepicker-dropdown.datepicker-orient-right:before {
      right: 107px; }
    .datepicker.datepicker-dropdown.datepicker-orient-right:after {
      right: 108px; }
    .datepicker.datepicker-dropdown.datepicker-orient-top:before {
      top: -7px; }
    .datepicker.datepicker-dropdown.datepicker-orient-top:after {
      top: -6px; }
    .datepicker.datepicker-dropdown.datepicker-orient-bottom:before {
      bottom: -7px;
      border-bottom: 0;
      border-top: 7px solid #999; }
    .datepicker.datepicker-dropdown.datepicker-orient-bottom:after {
      bottom: -6px;
      border-bottom: 0;
      border-top: 6px solid #fff; }
  .datepicker > div {
    display: none; }
  .datepicker.days div.datepicker-days {
    display: block; }
  .datepicker.months div.datepicker-months {
    display: block; }
  .datepicker.years div.datepicker-years {
    display: block; }
  .datepicker table {
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .datepicker table tr td, .datepicker table tr th {
      text-align: center;
      width: 30px;
      height: 30px;
      border-radius: 4px;
      border: none; }
  .table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
    background-color: transparent; }
  .datepicker table tr td.day:hover, .datepicker table tr td.day.focused {
    background: #9da9b0;
    cursor: pointer; }
  .datepicker table tr td.old, .datepicker table tr td.new {
    color: #9da9b0; }
  .datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
    background: none;
    color: #9da9b0;
    cursor: default; }
  .datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
    color: #333333;
    background-color: #5bc0de;
    border-color: #2390b0; }
    .datepicker table tr td.today:focus, .datepicker table tr td.today:active, .datepicker table tr td.today.active, .datepicker table tr td.today:hover:focus, .datepicker table tr td.today:hover:active, .datepicker table tr td.today:hover.active, .datepicker table tr td.today.disabled:focus, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled:hover:focus, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today.disabled:hover.active {
      color: #333333;
      background-color: #5bc0de;
      border-color: #19667d; }
    .datepicker table tr td.today:hover, .datepicker table tr td.today:hover:hover, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today.disabled:hover:hover {
      color: #333333;
      background-color: #39b3d7;
      border-color: #19667d; }
  .datepicker table tr td.today:hover:hover {
    color: #000; }
  .datepicker table tr td.today.active:hover {
    color: #fff; }
  .datepicker table tr td.range, .datepicker table tr td.range:hover, .datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:hover {
    background: #9da9b0;
    border-radius: 0; }
  .datepicker table tr td.range.today, .datepicker table tr td.range.today:hover, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled:hover {
    color: #000;
    background-color: #5bc0de;
    border-color: #2390b0;
    border-radius: 0; }
    .datepicker table tr td.range.today:focus, .datepicker table tr td.range.today:active, .datepicker table tr td.range.today.active, .datepicker table tr td.range.today:hover:focus, .datepicker table tr td.range.today:hover:active, .datepicker table tr td.range.today:hover.active, .datepicker table tr td.range.today.disabled:focus, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled:hover:focus, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today.disabled:hover.active {
      color: #000;
      background-color: #5bc0de;
      border-color: #19667d; }
    .datepicker table tr td.range.today:hover, .datepicker table tr td.range.today:hover:hover, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today.disabled:hover:hover {
      color: #000;
      background-color: #39b3d7;
      border-color: #19667d; }
  .datepicker table tr td.selected, .datepicker table tr td.selected:hover, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled:hover {
    color: #fff;
    background-color: #9da9b0;
    border-color: #5d5d5d;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); }
    .datepicker table tr td.selected:focus, .datepicker table tr td.selected:active, .datepicker table tr td.selected.active, .datepicker table tr td.selected:hover:focus, .datepicker table tr td.selected:hover:active, .datepicker table tr td.selected:hover.active, .datepicker table tr td.selected.disabled:focus, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled:hover:focus, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected.disabled:hover.active {
      color: #fff;
      background-color: #9da9b0;
      border-color: #3e3e3e; }
    .datepicker table tr td.selected:hover, .datepicker table tr td.selected:hover:hover, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected.disabled:hover:hover {
      color: #fff;
      background-color: #86959e;
      border-color: #3e3e3e; }
  .datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); }
    .datepicker table tr td.active:focus, .datepicker table tr td.active:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover:focus, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled:focus, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover:focus, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover.active {
      color: #fff;
      background-color: #337ab7;
      border-color: #265a88; }
    .datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover {
      color: #fff;
      background-color: #2a6598;
      border-color: #265a88; }
  .datepicker table tr td span {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    border-radius: 4px; }
    .datepicker table tr td span:hover {
      background: #9da9b0; }
    .datepicker table tr td span.disabled, .datepicker table tr td span.disabled:hover {
      background: none;
      color: #9da9b0;
      cursor: default; }
    .datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover {
      color: #fff;
      background-color: #3075b9;
      border-color: #3075b9;
      text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); }
      .datepicker table tr td span.active:focus, .datepicker table tr td span.active:active, .datepicker table tr td span.active.active, .datepicker table tr td span.active:hover:focus, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active.disabled:focus, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:hover:focus, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.disabled:hover.active {
        color: #fff;
        background-color: #3075b9;
        border-color: #235688; }
      .datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover:hover {
        color: #fff;
        background-color: #286199;
        border-color: #235688; }
    .datepicker table tr td span.old, .datepicker table tr td span.new {
      color: #9da9b0; }
  .datepicker th.datepicker-switch {
    width: 145px; }
  .datepicker thead tr:first-child th,
  .datepicker tfoot tr th {
    cursor: pointer;
    color: #337ab7; }
    .datepicker thead tr:first-child th:hover,
    .datepicker tfoot tr th:hover {
      background: #9da9b0; }
  .datepicker .cw {
    font-size: 10px;
    width: 12px;
    padding: 0 2px 0 5px;
    vertical-align: middle; }
  .datepicker thead tr:first-child th.cw {
    cursor: default;
    background-color: transparent; }

.input-group.date .input-group-addon i {
  cursor: pointer;
  width: 16px;
  height: 16px; }

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

.input-daterange input:first-child {
  border-radius: 3px 0 0 3px; }

.input-daterange input:last-child {
  border-radius: 0 3px 3px 0; }

.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 1.375;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #ccc;
  border: solid #a4a4a4;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px; }

.settings-page .panel-body {
  font-weight: 300; }

.settings-page .panel-heading {
  font-size: 16px;
  font-weight: 300; }

.settings-page .panel-flush .panel-body, .settings-page .panel-flush .panel-header {
  padding: 0; }

.settings-page td.spark-table-pad {
  padding-top: 14px; }

.settings-page .tooltip-inner {
  max-width: 500px;
  width: 300px; }

.settings-page .tooltip-inner ul {
  padding-top: 10px;
  padding-right: 25px;
  padding-left: 25px; }

.settings-page .tooltip-inner li {
  font-size: 14px;
  line-height: 25px;
  text-align: left; }

.settings-page label {
  display: inline !important;
  font-weight: 300; }

.settings-page .spark-settings-tabs-stacked {
  border-radius: 4px; }
  .settings-page .spark-settings-tabs-stacked a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 3px solid transparent;
    color: #555; }
    .settings-page .spark-settings-tabs-stacked a i {
      color: #aaa;
      position: relative; }
  .settings-page .spark-settings-tabs-stacked li:last-child a {
    border-bottom: 0; }
  .settings-page .spark-settings-tabs-stacked li.active a {
    border-left: 3px solid #337ab7; }
  .settings-page .spark-settings-tabs-stacked li a:active, .settings-page .spark-settings-tabs-stacked li a:hover, .settings-page .spark-settings-tabs-stacked li a:link, .settings-page .spark-settings-tabs-stacked li a:visited {
    background-color: white; }

.settings-page .spark-plan-change-selector-heading {
  font-size: 16px;
  margin-bottom: 15px; }

.settings-page .btn {
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease; }

.settings-page .btn-link {
  font-weight: 300; }

.modal-title {
  font-weight: 300; }

.fa-btn {
  margin-right: 8px; }

/* Required styles; changing these may break the menu */
.slinky-menu {
  overflow: hidden;
  transform: translateZ(0);
  transition: all 300ms ease;
  -webkit-transform: translateZ(0);
  -webkit-transition: all 300ms ease; }

.slinky-menu > ul {
  left: 0;
  position: relative;
  transform: translateZ(0);
  transition: all 300ms ease;
  -webkit-transform: translateZ(0);
  -webkit-transition: all 300ms ease; }

.slinky-menu ul,
.slinky-menu li {
  list-style: none;
  margin: 0; }

.slinky-menu ul {
  width: 100%; }

.slinky-menu a {
  display: block; }

.slinky-menu ul > li > ul {
  display: none;
  left: 100%;
  position: absolute;
  top: 0; }

.slinky-menu .header {
  position: relative; }

.slinky-menu h2 ~ a.back {
  left: 0;
  position: absolute;
  top: 0; }

/*!
 * jQuery UI CSS Framework 1.11.4
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none; }

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none; }

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse; }

.ui-helper-clearfix:after {
  clear: both; }

.ui-helper-clearfix {
  min-height: 0;
  /* support: IE7 */ }

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */ }

.ui-front {
  z-index: 100; }

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important; }

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ui-sortable-handle {
  touch-action: none; }

.ui-sortable {
  overflow-y: auto; }

/* ---------------------------------------------------------
   Custom mixins
   ---------------------------------------------------------*/
/* ==========================================================================
   Author's mixins
   ========================================================================== */
/* Clearfix */
.clearfix, .page-content .sidebar .profile-box .mobile-profile-box, .cmv_platform .btn-oval-sm, .cmv_platform .uploadcare-widget-button-open, .cmv_platform .btn_oval_xs, .col-wrap, .grid, .sorting, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list, #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2), #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider, #top-info, .footer, .discussion .media-heading, .step-process, .step-process_mobile, .panel-project-details .item, .panel-stats .inner-box .inner_stats ul, .panel_team_list .item, .panel_team_list, .heading_wrap, .brief .summary-box .item, .collapse-wrapper > .item .iteam-header ul li, .collapse-wrapper > .item .iteam-header, .sitemap .tree li > div.leaf p,
.sitemap .tree li div.root p, .sitemap .tree li > div.leaf,
.sitemap .tree li div.root, #top-info_filters, .filters_wrap, .box_task ul, .cmv-landing .header .container ul, .cmv-landing .header .container, .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper {
  display: block;
  zoom: 1; }
  .clearfix:after, .page-content .sidebar .profile-box .mobile-profile-box:after, .cmv_platform .btn-oval-sm:after, .cmv_platform .uploadcare-widget-button-open:after, .cmv_platform .btn_oval_xs:after, .col-wrap:after, .grid:after, .sorting:after, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item:after, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list:after, #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels:after, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right:after, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2):after, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider:after, #top-info:after, .footer:after, .discussion .media-heading:after, .step-process:after, .step-process_mobile:after, .panel-project-details .item:after, .panel-stats .inner-box .inner_stats ul:after, .panel_team_list .item:after, .panel_team_list:after, .heading_wrap:after, .brief .summary-box .item:after, .collapse-wrapper > .item .iteam-header ul li:after, .collapse-wrapper > .item .iteam-header:after, .sitemap .tree li > div.leaf p:after,
  .sitemap .tree li div.root p:after, .sitemap .tree li > div.leaf:after,
  .sitemap .tree li div.root:after, #top-info_filters:after, .filters_wrap:after, .box_task ul:after, .cmv-landing .header .container ul:after, .cmv-landing .header .container:after, .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden; }

.clearfix, .page-content .sidebar .profile-box .mobile-profile-box, .cmv_platform .btn-oval-sm, .cmv_platform .uploadcare-widget-button-open, .cmv_platform .btn_oval_xs, .col-wrap, .grid, .sorting, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list, #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2), #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider, #top-info, .footer, .discussion .media-heading, .step-process, .step-process_mobile, .panel-project-details .item, .panel-stats .inner-box .inner_stats ul, .panel_team_list .item, .panel_team_list, .heading_wrap, .brief .summary-box .item, .collapse-wrapper > .item .iteam-header ul li, .collapse-wrapper > .item .iteam-header, .sitemap .tree li > div.leaf p,
.sitemap .tree li div.root p, .sitemap .tree li > div.leaf,
.sitemap .tree li div.root, #top-info_filters, .filters_wrap, .box_task ul, .cmv-landing .header .container ul, .cmv-landing .header .container, .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper, .time-zone .map-holder, .two-cols, .widget-member {
  display: block;
  zoom: 1; }
  .clearfix:after, .page-content .sidebar .profile-box .mobile-profile-box:after, .cmv_platform .btn-oval-sm:after, .cmv_platform .uploadcare-widget-button-open:after, .cmv_platform .btn_oval_xs:after, .col-wrap:after, .grid:after, .sorting:after, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item:after, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list:after, #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels:after, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right:after, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2):after, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider:after, #top-info:after, .footer:after, .discussion .media-heading:after, .step-process:after, .step-process_mobile:after, .panel-project-details .item:after, .panel-stats .inner-box .inner_stats ul:after, .panel_team_list .item:after, .panel_team_list:after, .heading_wrap:after, .brief .summary-box .item:after, .collapse-wrapper > .item .iteam-header ul li:after, .collapse-wrapper > .item .iteam-header:after, .sitemap .tree li > div.leaf p:after,
  .sitemap .tree li div.root p:after, .sitemap .tree li > div.leaf:after,
  .sitemap .tree li div.root:after, #top-info_filters:after, .filters_wrap:after, .box_task ul:after, .cmv-landing .header .container ul:after, .cmv-landing .header .container:after, .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper:after, .time-zone .map-holder:after, .two-cols:after, .widget-member:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden; }

/* Mixin */
.hr-divider {
  position: relative;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase; }
  .hr-divider:before {
    position: absolute;
    top: 50%;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #9da9b0; }

.hr-divider-content {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
  color: #5d5d5d;
  vertical-align: middle;
  background-color: #fff; }

.hr-divider-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 100%;
  color: inherit; }

.hr-divider-nav > li > a {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 100%; }

.hr-divider-nav > .active > a {
  font-weight: 300;
  background: transparent; }

/* ---------------------------------------------------------
   General styles
   ---------------------------------------------------------*/
html,
body {
  height: 100%; }

body {
  font-weight: 400;
  min-width: 320px;
  overflow-x: hidden; }
  @media (max-width: 767px) {
    body {
      font-size: 14px; } }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px; }

@media (max-width: 767px) {
  h1 {
    font-size: 38px; } }

@media (max-width: 767px) {
  h2 {
    font-size: 32px; } }

@media (max-width: 767px) {
  h3 {
    font-size: 28px; } }

a {
  -webkit-transition: color, 0.3s, ease-in-out;
  transition: color, 0.3s, ease-in-out; }

img {
  max-width: 100%;
  height: auto; }

blockquote {
  border: none;
  background: #f2f2f2;
  line-height: 33px;
  font-family: "Archer", serif;
  padding: 41px 49px 57px;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    blockquote {
      padding: 30px 20px;
      font-size: 16px; } }
  blockquote q {
    font-style: italic; }
    blockquote q:before, blockquote q:after {
      content: ''; }

input [type="email"],
input [type="tel"],
input[type="search"],
input[type="text"],
input[type="password"],
input[type="file"],
input[type="submit"],
textarea {
  -webkit-appearance: none; }

hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border-top: 1px solid #d4dbe0; }

.fa-btn {
  margin-right: 10px; }

.bg-green {
  background: #8abc19; }

.bg-blue {
  background: #1e6ab4; }

.bg-grey {
  background: #404753; }

.bg-smoke {
  background: #ecf1f7; }

.bg-pink {
  background: #f48af8; }

.bg-light-blue {
  background: #71ebea; }

.text-primary {
  color: #1e6ab4; }

.text-success {
  color: #8abc19; }

.text-grey {
  color: #848e9e; }

.text-gray {
  color: #999; }

.font-sm {
  font-size: 14px; }

@media only screen and (min-width: 1025px) {
  a[href^=tel], a[href^=skype], a[href^=sms] {
    cursor: default;
    pointer-events: none; } }

.nav-tabs {
  border-bottom: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase; }
  .nav-tabs > li {
    border: solid #ccc;
    border-width: 0px 0 1px 1px; }
    @media (max-width: 767px) {
      .nav-tabs > li {
        border-left: none; } }
    .nav-tabs > li:first-child {
      border-left-width: 0; }
    .nav-tabs > li.active a,
    .nav-tabs > li a:hover {
      color: #1e6ab4; }
      .nav-tabs > li.active a:before,
      .nav-tabs > li a:hover:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        height: 3px;
        background: #1e6ab4; }
    .nav-tabs > li > a {
      border: none;
      position: relative;
      padding: 15px 7px;
      color: rgba(0, 0, 0, 0.5); }
      @media (min-width: 768px) {
        .nav-tabs > li > a {
          padding: 10px 7px;
          white-space: nowrap;
          text-align: center; }
          .nav-tabs > li > a:after {
            content: '';
            display: inline-block;
            vertical-align: middle;
            width: 0;
            min-height: 45px; }
          .nav-tabs > li > a > * {
            white-space: normal;
            display: inline-block;
            vertical-align: middle;
            max-width: 99%; } }
  .nav-tabs.nav-justified > li.active > a {
    border: none !important; }
  .nav-tabs.nav-justified > li > a {
    border-bottom: none;
    background: none;
    border: none;
    margin: 0; }

.list-custom {
  counter-reset: item; }
  .list-custom > li {
    padding: 10px 0 0 71px;
    min-height: 47px;
    margin-bottom: 20px; }
    @media (min-width: 480px) {
      .list-custom > li {
        margin-bottom: 46px; } }
    .list-custom > li:before {
      width: 47px;
      height: 47px;
      counter-increment: item;
      content: counter(item);
      float: left;
      margin: -10px 0 0 -71px;
      background: #e7eef6;
      border-radius: 50%;
      font: 700 28px/40px "Archer", serif;
      text-align: center; }

.btn {
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -ms-transform: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  border-width: 4px;
  font: 700 14px/18px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  padding: 7px 12px; }
  .btn .fa {
    font-size: 18px;
    margin-right: 7px;
    display: inline-block;
    vertical-align: middle; }
  .btn .fa-rocket {
    font-size: 21px; }

.btn-blue {
  background: #1e6ab4;
  border: none;
  border-radius: 4px;
  color: #fff; }
  .btn-blue:hover {
    color: #fff;
    background: #134372; }

.btn-blue-o {
  border-color: #1e6ab4 !important;
  color: #1e6ab4 !important;
  text-transform: none;
  font-weight: 500;
  border-width: 2px !important;
  letter-spacing: 0; }
  .btn-blue-o:hover {
    color: #fff !important;
    background: #1e6ab4 !important; }

.btn-green-a {
  background: #8abc19;
  border-color: #8abc19;
  color: #fff; }
  .btn-green-a:hover {
    border-color: #587810;
    background: #587810;
    color: #fff; }

.btn-sm, .btn-group-sm > .btn,
.btn-group-sm > .btn {
  font-size: 12px;
  padding: 5px 9px;
  text-transform: none; }

.btn-md {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0;
  padding: 10px 12px; }
  @media (max-width: 767px) {
    .btn-md {
      line-height: 1.3; } }

.btn-xl {
  font-size: 18px;
  line-height: 28px;
  text-transform: none;
  border-radius: 25px;
  padding: 15px 20px;
  letter-spacing: 0; }
  @media (max-width: 767px) {
    .btn-xl {
      padding: 8px 16px;
      font-size: 14px; } }

.btn-quote {
  border-color: #799d4b;
  background-color: #416137;
  color: #fff; }
  .btn-quote:hover {
    color: #fff;
    background-color: #465b2c; }

.btn-info:hover {
  background: #1e6ab4;
  border-color: #1e6ab4; }

.btn-gray {
  border-color: #bfbfbf;
  color: #000; }
  .btn-gray:hover {
    background: #bfbfbf; }

.btn-gray1 {
  border-color: #536570;
  color: #536570;
  border-radius: 5px; }
  .btn-gray1:hover {
    color: #fff;
    background: #96d019;
    border-color: #96d019; }

.btn-gray2 {
  background: #e8e8e8;
  border-color: #e8e8e8;
  color: #1e3948;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  padding: 3px 12px; }
  .btn-gray2:hover {
    background: #d9d9d9; }

.btn-circle {
  position: absolute;
  left: 14px;
  bottom: -194px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #000;
  font-size: 22px;
  background: #fff;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
  @media (max-width: 991px) {
    .btn-circle {
      bottom: -119px; } }
  @media (max-width: 767px) {
    .btn-circle {
      width: 30px;
      height: 30px;
      font-size: 16px;
      bottom: -71px;
      left: 15px; } }
  .btn-circle:hover {
    color: #fff;
    background: #134372; }
  .btn-circle.blue {
    background: #1e6ab4;
    color: #fff; }
    .btn-circle.blue:hover {
      background: #134372; }
  .btn-circle .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 2em; }

.btn-white {
  color: #536574;
  border-color: transparent; }
  .btn-white:hover {
    color: #fff;
    background: #e6e6e6;
    border-color: #b0bdc6;
    color: #536574; }

.btn-green {
  color: #96d019;
  border-color: #96d019; }
  .btn-green:hover {
    background: #96d019;
    color: #fff; }

.heading {
  padding-bottom: 68px; }
  @media (max-width: 767px) {
    .heading {
      padding-bottom: 29px; } }
  .heading h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    font-style: italic;
    color: #000;
    margin-bottom: 13px; }
    @media (max-width: 1240px) {
      .heading h2 {
        font-size: 38px; } }
    @media (max-width: 767px) {
      .heading h2 {
        font-size: 24px;
        line-height: 1.21; } }
  .heading h3 {
    font: 400 48px/52px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    color: #1e6ab4;
    letter-spacing: 4px; }
    @media (max-width: 1240px) {
      .heading h3 {
        font-size: 44px; } }
    @media (max-width: 767px) {
      .heading h3 {
        font-size: 30px;
        line-height: 35px;
        letter-spacing: 0; } }

.form-control, .mastermind-users .algolia-search input {
  height: 44px;
  line-height: 30px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05) inset; }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

#wrapper {
  position: relative;
  overflow: hidden;
  width: 100%; }

.hole:before, .hole:after {
  position: absolute;
  background: url("../../images/bg-hole.png") no-repeat;
  width: 30px;
  height: 30px; }

.hole:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.has-circle:before, .has-circle:after {
  position: absolute;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 7px solid #8dbe1c;
  border-radius: 50%;
  z-index: 1; }

@media (max-width: 991px) {
  .pipes {
    display: none; } }

.pipes [class*="pipe-"],
.pipes [class^="pipe-"] {
  border: solid #000;
  position: absolute;
  z-index: -1; }

.pipes .has-circle:before, .pipes .has-circle:after {
  position: absolute;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 7px solid #8dbe1c;
  border-radius: 50%;
  z-index: 1; }

.pipes .reverse {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.pipes [class*="joint-"] {
  width: 87px;
  height: 137px;
  position: absolute;
  overflow: hidden;
  z-index: 2; }
  .pipes [class*="joint-"]:before {
    content: '';
    background: #fff;
    width: 26px;
    left: 50%;
    top: 8px;
    bottom: 9px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    z-index: -1; }
  .pipes [class*="joint-"].reverse {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1); }
  .pipes [class*="joint-"] [class*="line-"] {
    height: 17px;
    background: #000;
    position: absolute; }
  .pipes [class*="joint-"] .line-1 {
    width: 53px;
    -webkit-transform: rotate(-46deg);
    transform: rotate(-46deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    left: -15px;
    top: -4px; }
  .pipes [class*="joint-"] .line-2 {
    width: 107px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    top: 24px;
    left: 11px; }
  .pipes [class*="joint-"] .line-3 {
    width: 54px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    left: 33px;
    bottom: -9px; }

.pipes .joint-1 {
  right: -54px;
  top: 275px; }

.pipes .joint-2 {
  right: -50px;
  top: auto;
  bottom: 1055px; }

.pipes .pipe-1 {
  width: 100px;
  height: 429px;
  border-width: 17px 17px 0 0;
  right: 15px;
  top: -14px; }
  @media (max-width: 1599px) {
    .pipes .pipe-1 {
      width: 278px; } }
  @media (max-width: 1240px) {
    .pipes .pipe-1 {
      top: -78px;
      height: 493px; } }
  .pipes .pipe-1:after {
    content: '';
    right: -22px;
    top: -22px; }
  .pipes .pipe-1:before {
    content: '';
    right: -22px;
    bottom: -6px; }

.pipes .pipe-2 {
  border-width: 17px 0 0 17px;
  right: 15px;
  left: 11px;
  top: 398px;
  bottom: -5px; }
  .pipes .pipe-2:before {
    content: '';
    left: -23px;
    top: -22px; }
  .pipes .pipe-2 .hole:after {
    content: '';
    bottom: -3px;
    left: -24px; }

.pipes .pipe-4 {
  top: -12px;
  left: 15px;
  width: 23%;
  height: 144px;
  border-width: 0 0 17px 17px; }
  .pipes .pipe-4:after {
    content: '';
    bottom: -22px;
    left: -22px; }
  .pipes .pipe-4 .hole:before, .pipes .pipe-4 .hole:after {
    content: ''; }
  .pipes .pipe-4 .hole:after {
    top: -3px;
    left: -24px; }
  .pipes .pipe-4 .hole:before {
    right: -4px;
    bottom: -23px; }

.pipes .pipe-5 {
  width: 37%;
  top: 116px;
  bottom: 20px;
  right: -12%;
  border-width: 17px 17px 0 0; }
  @media (max-width: 1599px) {
    .pipes .pipe-5 {
      right: -28px;
      width: 24%; } }
  .pipes .pipe-5:before {
    content: '';
    top: -22px;
    right: -22px; }
  .pipes .pipe-5:after {
    content: '';
    bottom: -7px;
    right: -23px; }
  .pipes .pipe-5 .hole:before {
    content: '';
    top: -24px;
    left: -3px; }

.pipes .pipe-6 {
  height: 231px;
  bottom: -195px;
  width: 25%;
  left: 37px;
  border-width: 17px 0 0 17px; }
  .pipes .pipe-6:after {
    content: '';
    left: -22px;
    top: -22px; }
  .pipes .pipe-6 .hole:before {
    content: '';
    right: -3px;
    top: -24px; }

.pipes .pipe-7 {
  position: absolute;
  right: -12%;
  bottom: 19px;
  width: 40%;
  border-width: 17px 0 0; }
  @media (max-width: 1599px) {
    .pipes .pipe-7 {
      right: -2%;
      width: 30%; } }
  .pipes .pipe-7 .hole:before {
    content: '';
    left: -3px;
    top: -24px; }

.pipes .pipe-8 {
  top: -91px;
  left: 37px;
  bottom: -260px;
  border-width: 0 0 0 17px; }

.pipes .pipe-10 {
  border-width: 0 17px 0 0;
  top: -273px;
  bottom: -78px;
  right: -88px; }
  .pipes .pipe-10:before {
    content: '';
    left: -7px;
    top: -2px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg); }
  .pipes .pipe-10 .pipe-bent {
    left: auto;
    top: 215px;
    right: -17px; }
  .pipes .pipe-10 .switcher {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    left: -29px;
    bottom: 142px; }

.pipes .joint-3 {
  left: 0;
  top: 152px; }

.pipes .switcher-v {
  right: -47px;
  top: 553px; }

.tab-blue {
  text-align: center; }
  .tab-blue > li {
    display: inline-block;
    vertical-align: top;
    padding: 0 30px; }
    @media (max-width: 767px) {
      .tab-blue > li {
        padding: 0;
        margin-right: -0.5em; } }
    @media (max-width: 767px) {
      .tab-blue > li:first-child > a {
        border-top-left-radius: 6px; } }
    @media (max-width: 767px) {
      .tab-blue > li:last-child > a {
        border-top-right-radius: 6px; } }
    .tab-blue > li.active > a,
    .tab-blue > li > a:hover {
      background: #1e6ab4;
      color: #fff;
      z-index: 1; }
      .tab-blue > li.active > a:before, .tab-blue > li.active > a:after,
      .tab-blue > li > a:hover:before,
      .tab-blue > li > a:hover:after {
        background-position: 0 0; }
    .tab-blue > li > a {
      background: #e8f0f7;
      position: relative;
      padding: 19px 15px;
      min-width: 132px; }
      @media (max-width: 767px) {
        .tab-blue > li > a {
          min-width: 50px;
          padding: 11px 15px; } }
      .tab-blue > li > a:before, .tab-blue > li > a:after {
        content: '';
        position: absolute;
        top: 0;
        width: 63px;
        bottom: 0;
        background: url("../../images/bg-tab-blue.png") no-repeat 0 100%; }
        @media (max-width: 767px) {
          .tab-blue > li > a:before, .tab-blue > li > a:after {
            display: none; } }
      .tab-blue > li > a:before {
        right: 100%; }
      .tab-blue > li > a:after {
        left: 100%;
        -webkit-transform: scale(-1, 1);
        transform: scale(-1, 1); }

.list-check {
  margin-bottom: 11px; }
  .list-check:before {
    content: '';
    clear: both;
    display: block; }
  .list-check > li {
    padding: 10px 0 0 60px;
    position: relative;
    min-height: 44px;
    margin-bottom: 21px; }
    .list-check > li:before {
      content: '\f00c';
      font: 20px/1 'FontAwesome';
      width: 46px;
      height: 46px;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 50%;
      overflow: hidden;
      background: #e7eef6;
      color: #8cc01b;
      text-align: center;
      padding: 12px 5px; }

.list-tick > li {
  padding-left: 25px;
  position: relative; }
  .list-tick > li:before {
    content: '\f00c';
    font: 15px/1 'FontAwesome';
    color: #96d019;
    left: 0;
    top: 3px;
    position: absolute; }

@media (min-width: 768px) {
  .text-col-2 > li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    margin-right: -0.5em; } }

textarea.form-control {
  resize: vertical; }

[v-cloak] {
  opacity: 0; }

[data-controller][v-cloak] {
  opacity: 0; }

[data-controller] {
  opacity: 1;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out; }

.table-middle {
  vertical-align: middle !important; }
  .table-middle tr, .table-middle td, .table-middle th {
    vertical-align: middle !important; }

trix-toolbar .strike, trix-toolbar .block-level.increase, trix-toolbar .block-level.decrease, trix-toolbar .history_tools {
  display: none; }

.uploadcare-dialog-footer {
  display: none; }

.uploadcare-dialog-inner-wrap {
  font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif !important; }

.uploadcare-widget-button-open {
  background: white;
  content: "Add files"; }
  .uploadcare-widget-button-open:hover {
    background: white; }

.dropdown-header {
  padding: 10px 20px 2px; }

.panel-profile-img {
  max-width: 100px;
  margin-top: -70px;
  margin-bottom: 5px;
  border: 3px solid #fff;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); }

/* ==========================================================================
   Author's general
   ========================================================================== */
ol, ul {
  list-style: outside none none;
  padding: 0;
  margin: 0; }

/* ---------- Removing The Dotted Outline ---------- */
input::-moz-focus-inner {
  border: 0; }

a:hover, a:active, a:focus,
input:hover, input:active, input:focus,
select:hover, select:active, select:focus,
textarea:hover, textarea:active, textarea:focus {
  outline: none;
  -moz-outline-style: none; }

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000; }

a {
  text-decoration: none; }
  a:hover, a:focus, a:active {
    text-decoration: none; }

input, textarea {
  border: none; }

.txt {
  font-size: 0 !important;
  line-height: 0;
  outline: medium none;
  overflow: hidden;
  text-indent: -9999px !important; }

.clear {
  clear: both;
  visibility: hidden;
  height: 0;
  width: 0;
  line-height: 0; }

.fa.selectable {
  cursor: pointer;
  padding: 5px; }
  .fa.selectable.selected {
    border-bottom: 1px solid #000;
    padding: 5px 5px 4px 5px; }

/* ---------------------------------------------------------
   helpers
   ---------------------------------------------------------*/
.slick-slider .slick-dots, .list-custom, .list-check, .list-tick, .article-row .list-services, .discussion, .dev-list, .panel-location .contact-item .photos {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after, .page-content .sidebar .profile-box .mobile-profile-box:after, .cmv_platform .btn-oval-sm:after, .cmv_platform .uploadcare-widget-button-open:after, .cmv_platform .btn_oval_xs:after, .col-wrap:after, .grid:after, .sorting:after, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item:after, #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list:after, #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels:after, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right:after, #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2):after, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider:after, #top-info:after, .footer:after, .discussion .media-heading:after, .step-process:after, .step-process_mobile:after, .panel-project-details .item:after, .panel-stats .inner-box .inner_stats ul:after, .panel_team_list .item:after, .panel_team_list:after, .heading_wrap:after, .brief .summary-box .item:after, .collapse-wrapper > .item .iteam-header ul li:after, .collapse-wrapper > .item .iteam-header:after, .sitemap .tree li > div.leaf p:after,
.sitemap .tree li div.root p:after, .sitemap .tree li > div.leaf:after,
.sitemap .tree li div.root:after, #top-info_filters:after, .filters_wrap:after, .box_task ul:after, .cmv-landing .header .container ul:after, .cmv-landing .header .container:after, .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper:after, .time-zone .map-holder:after, .two-cols:after, .widget-member:after {
  content: '';
  display: block;
  clear: both; }

.best .gmt {
  text-align: justify;
  font-size: 1px;
  line-height: 0px; }
  .best .gmt > * {
    display: inline-block;
    vertical-align: top;
    text-align: left; }
  .best .gmt:after {
    content: '';
    width: 100%;
    display: inline-block;
    vertical-align: top; }

.testimonial-box q:before, .testimonial-box .project-type .ico-app:before, .testimonial-box .project-type .ico-clock:before, .portifolio .project-type .ico-app:before, .portifolio .project-type .ico-clock:before {
  background-image: url("../../images/sprite.png");
  background-repeat: no-repeat; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.visual-heading:before, .panel-work:before, .panel-plans:before, .visual3:before, .panel-articles:before, .panel-contact:before, .panel-how:before, .panel-service:before, .panel-testimonial:before, .intro-article:before, .methods .content:before, .testimonial-block:before {
  content: '';
  position: absolute;
  top: 0;
  left: -500px;
  right: -500px;
  bottom: 0;
  z-index: -1;
  -webkit-transform: rotate(-3.3deg);
  transform: rotate(-3.3deg); }

/* ---------- Removing The Dotted Outline ---------- */
input::-moz-focus-inner {
  border: 0; }

a:hover, a:active, a:focus,
input:hover, input:active, input:focus,
select:hover, select:active, select:focus,
textarea:hover, textarea:active, textarea:focus {
  outline: none;
  -moz-outline-style: none; }

a {
  text-decoration: none;
  outline: none;
  -moz-outline-style: none; }
  a:hover, a:focus, a:active {
    text-decoration: none; }

.btn:focus,
.btn.focus,
.btn:active:focus,
.btn.focus:active,
.btn.active:focus,
.btn.active.focus {
  outline: none;
  outline-offset: 0; }

input, textarea {
  border: none; }

.txt {
  font-size: 0 !important;
  line-height: 0;
  outline: medium none;
  overflow: hidden;
  text-indent: -9999px !important; }

.clear {
  clear: both;
  visibility: hidden;
  height: 0;
  width: 0;
  line-height: 0; }

.pos-r {
  position: relative !important; }

.pos-a {
  position: absolute !important; }

.pos-f {
  position: fixed !important; }

.w-sm {
  width: 25% !important; }

.w-md {
  width: 50% !important; }

.w-lg {
  width: 75% !important; }

.w-full {
  width: 100% !important; }

.m-a-0 {
  margin: 0 !important; }

.m-t-0 {
  margin-top: 0 !important; }

.m-r-0 {
  margin-right: 0 !important; }

.m-b-0 {
  margin-bottom: 0 !important; }

.m-l-0 {
  margin-left: 0 !important; }

.m-x-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.m-a {
  margin: 20px !important; }

.m-t {
  margin-top: 20px !important; }

.m-r {
  margin-right: 20px !important; }

.m-b {
  margin-bottom: 20px !important; }

.m-l {
  margin-left: 20px !important; }

.m-x {
  margin-right: 20px !important;
  margin-left: 20px !important; }

.m-y {
  margin-top: 20px !important;
  margin-bottom: 20px !important; }

.m-x-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.m-a-md {
  margin: 30px !important; }

.m-t-md {
  margin-top: 30px !important; }

.m-r-md {
  margin-right: 30px !important; }

.m-b-md {
  margin-bottom: 30px !important; }

.m-l-md {
  margin-left: 30px !important; }

.m-x-md {
  margin-right: 30px !important;
  margin-left: 30px !important; }

.m-y-md {
  margin-top: 30px !important;
  margin-bottom: 30px !important; }

.m-a-lg {
  margin: 60px !important; }

.m-t-lg {
  margin-top: 60px !important; }

.m-r-lg {
  margin-right: 60px !important; }

.m-b-lg {
  margin-bottom: 60px !important; }

.m-l-lg {
  margin-left: 60px !important; }

.m-x-lg {
  margin-right: 60px !important;
  margin-left: 60px !important; }

.m-y-lg {
  margin-top: 60px !important;
  margin-bottom: 60px !important; }

.p-a-0 {
  padding: 0 !important; }

.p-t-0 {
  padding-top: 0 !important; }

.p-r-0 {
  padding-right: 0 !important; }

.p-b-0 {
  padding-bottom: 0 !important; }

.p-l-0 {
  padding-left: 0 !important; }

.p-x-0 {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.p-a {
  padding: 20px !important; }

.p-t {
  padding-top: 20px !important; }

.p-r {
  padding-right: 20px !important; }

.p-b {
  padding-bottom: 20px !important; }

.p-l {
  padding-left: 20px !important; }

.p-x {
  padding-right: 20px !important;
  padding-left: 20px !important; }

.p-y {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.p-a-md {
  padding: 30px !important; }

.p-t-md {
  padding-top: 30px !important; }

.p-r-md {
  padding-right: 30px !important; }

.p-b-md {
  padding-bottom: 30px !important; }

.p-l-md {
  padding-left: 30px !important; }

.p-x-md {
  padding-right: 30px !important;
  padding-left: 30px !important; }

.p-y-md {
  padding-top: 30px !important;
  padding-bottom: 30px !important; }

.p-a-lg {
  padding: 60px !important; }

.p-t-lg {
  padding-top: 60px !important; }

.p-r-lg {
  padding-right: 60px !important; }

.p-b-lg {
  padding-bottom: 60px !important; }

.p-l-lg {
  padding-left: 60px !important; }

.p-x-lg {
  padding-right: 60px !important;
  padding-left: 60px !important; }

.p-y-lg {
  padding-top: 60px !important;
  padding-bottom: 60px !important; }

.wysiwyg p, .wysiwyg ul, .wysiwyg ol {
  font-size: 22px;
  line-height: 36px;
  margin: 0 0 50px; }

.wysiwyg ul {
  padding-left: 50px;
  list-style: disc; }

.wysiwyg ol {
  padding-left: 50px;
  list-style: decimal; }

.wysiwyg blockquote {
  margin: 50px 0; }
  .wysiwyg blockquote p {
    font-size: 30px;
    margin: 0; }

.wysiwyg pre {
  padding: 0;
  border: none; }

.wysiwyg .alignleft {
  float: left;
  margin: 34px; }

.wysiwyg .aligncenter, .wysiwyg .alignNone {
  margin: 34px auto; }

.wysiwyg .alignright {
  float: right;
  margin: 34px; }

.wysiwyg button,
.wysiwyg input[type="button"],
.wysiwyg input[type="reset"],
.wysiwyg input[type="submit"],
.wysiwyg a {
  -webkit-appearance: none;
  cursor: pointer; }

.wysiwyg a:focus,
.wysiwyg button:focus,
.wysiwyg input:focus,
.wysiwyg select:focus,
.wysiwyg textarea:focus {
  outline: none !important; }

.wysiwyg h1 {
  font-size: 76px;
  line-height: 79px;
  font-weight: 500;
  margin: 0 0 50px; }

.wysiwyg h2 {
  font-size: 56px;
  line-height: 59px;
  font-weight: 500;
  margin: 0;
  padding: 60px 0 40px; }

.wysiwyg h3 {
  font-size: 48px;
  line-height: 51px;
  font-weight: 500;
  margin: 0;
  padding: 60px 0 40px; }

.wysiwyg h4 {
  font-size: 24px;
  line-height: 27px;
  font-weight: 500;
  margin: 0 0 20px; }

.wysiwyg h5 {
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  margin: 0 0 20px; }

.wysiwyg h6 {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  margin: 0 0 20px; }

.wysiwyg img {
  padding: 50px;
  display: block;
  max-width: 100% !important;
  border-radius: 3px; }

/* the everything else file includes a bunch of random SCSS that should eventually be refactored to the correct location. */
/* ---------------------------------------------------------
   Common styles
   ---------------------------------------------------------*/
.panel-pin {
  padding: 109px 15px 90px;
  border-bottom: 1px solid #e5e5e5; }
  @media (max-width: 991px) {
    .panel-pin {
      padding: 97px 15px 55px; } }
  @media (max-width: 767px) {
    .panel-pin {
      padding: 87px 15px 42px; } }
  .panel-pin h1 {
    font-size: 62px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 80px;
    text-transform: capitalize; }
    @media (max-width: 991px) {
      .panel-pin h1 {
        font-size: 48px;
        margin-bottom: 51px; } }
    @media (max-width: 767px) {
      .panel-pin h1 {
        font-size: 40px;
        margin-bottom: 63px; } }
  .panel-pin .input-row {
    margin-bottom: 79px; }
    @media (max-width: 991px) {
      .panel-pin .input-row {
        margin-bottom: 67px; } }
    @media (max-width: 767px) {
      .panel-pin .input-row {
        margin-bottom: 41px; } }
    .panel-pin .input-row .form-control, .panel-pin .input-row .mastermind-users .algolia-search input, .mastermind-users .algolia-search .panel-pin .input-row input {
      border: 2px solid #61676b;
      width: 64px;
      height: 69px;
      display: inline-block;
      margin: 0 7px 15px;
      font: 600 40px/40px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
      color: #61676b;
      text-align: center; }
      .panel-pin .input-row .form-control ::-webkit-input-placeholder, .panel-pin .input-row .mastermind-users .algolia-search input ::-webkit-input-placeholder, .mastermind-users .algolia-search .panel-pin .input-row input ::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #61676b;
        opacity: 1; }
      .panel-pin .input-row .form-control :-moz-placeholder, .panel-pin .input-row .mastermind-users .algolia-search input :-moz-placeholder, .mastermind-users .algolia-search .panel-pin .input-row input :-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #61676b;
        opacity: 1; }
      .panel-pin .input-row .form-control ::-moz-placeholder, .panel-pin .input-row .mastermind-users .algolia-search input ::-moz-placeholder, .mastermind-users .algolia-search .panel-pin .input-row input ::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #61676b;
        opacity: 1; }
      .panel-pin .input-row .form-control :-ms-input-placeholder, .panel-pin .input-row .mastermind-users .algolia-search input :-ms-input-placeholder, .mastermind-users .algolia-search .panel-pin .input-row input :-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #61676b;
        opacity: 1; }
      @media (max-width: 767px) {
        .panel-pin .input-row .form-control, .panel-pin .input-row .mastermind-users .algolia-search input, .mastermind-users .algolia-search .panel-pin .input-row input {
          width: 53px;
          height: 58px;
          font-size: 31px;
          line-height: 42px; } }
  .panel-pin .step-val {
    display: block;
    font-size: 20px;
    color: #707070; }
  .panel-pin .btn-lg, .panel-pin .btn-group-lg > .btn {
    font-size: 28px;
    text-transform: uppercase;
    width: 211px;
    margin-bottom: 27px; }

.visual-heading {
  position: relative;
  padding: 110px 0 114px;
  font: 300 22px/1.64 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  margin-bottom: 135px; }
  @media (max-width: 1240px) {
    .visual-heading {
      font-size: 18px; } }
  @media (max-width: 991px) {
    .visual-heading {
      margin-bottom: 98px;
      padding-bottom: 89px; } }
  @media (max-width: 767px) {
    .visual-heading {
      padding: 91px 0 67px;
      margin-bottom: 64px; } }
  .visual-heading:before {
    top: -200px;
    background: url("../../images/bg-contact.jpg"); }
  .visual-heading h1 {
    color: #1e6ab4;
    font: 400 60px/1.2 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    text-transform: uppercase;
    margin-bottom: 28px; }
    @media (max-width: 1240px) {
      .visual-heading h1 {
        font-size: 50px; } }
    @media (max-width: 991px) {
      .visual-heading h1 {
        font-size: 44px; } }
    @media (max-width: 767px) {
      .visual-heading h1 {
        font-size: 32px; } }

.visual-heading1 {
  padding: 86px 0 60px;
  margin-bottom: 112px; }
  @media (max-width: 767px) {
    .visual-heading1 {
      margin-bottom: 57px; } }
  .visual-heading1 h1 {
    margin-bottom: 24px; }
    @media (min-width: 1241px) {
      .visual-heading1 h1 {
        font-size: 70px; } }
    @media (max-width: 767px) {
      .visual-heading1 h1 {
        font-size: 24px;
        margin-bottom: 15px; } }
  .visual-heading1 h2 {
    font-size: 64px;
    font-style: italic;
    font-weight: 600;
    text-transform: capitalize; }
    @media (max-width: 1240px) {
      .visual-heading1 h2 {
        font-size: 46px; } }
    @media (max-width: 767px) {
      .visual-heading1 h2 {
        font-size: 32px;
        margin-bottom: 4px; } }

.visual-heading2 {
  padding: 86px 15px 58px;
  margin-bottom: 0 !important; }
  @media (max-width: 1240px) {
    .visual-heading2 {
      padding: 62px 15px 57px; } }
  @media (max-width: 767px) {
    .visual-heading2 {
      padding: 62px 15px 34px; } }
  .visual-heading2 h2 {
    font-weight: 600;
    font-size: 64px;
    font-style: italic;
    text-transform: capitalize;
    margin-bottom: 22px; }
    @media (max-width: 1240px) {
      .visual-heading2 h2 {
        font-size: 32px;
        margin-bottom: 13px; } }
    @media (max-width: 767px) {
      .visual-heading2 h2 {
        font-size: 28px; } }
  .visual-heading2 h1 {
    color: #94cc17;
    font: 400 70px/1 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    text-transform: uppercase;
    margin-bottom: 22px;
    letter-spacing: -1px; }
    @media (max-width: 1240px) {
      .visual-heading2 h1 {
        font-size: 42px; } }
    @media (max-width: 767px) {
      .visual-heading2 h1 {
        font-size: 34px;
        line-height: 1.1; } }

.section-registration .form-field {
  padding-bottom: 80px;
  border-bottom: 1px solid #e5e5e5; }
  @media (max-width: 991px) {
    .section-registration .form-field {
      padding-bottom: 50px; } }
  @media (max-width: 767px) {
    .section-registration .form-field {
      padding-bottom: 27px; } }
  .section-registration .form-field + .form-field {
    margin-top: 75px; }
    @media (max-width: 991px) {
      .section-registration .form-field + .form-field {
        margin-top: 50px; } }
    @media (max-width: 767px) {
      .section-registration .form-field + .form-field {
        margin-top: 38px; } }
  .section-registration .form-field .form-control, .section-registration .form-field .mastermind-users .algolia-search input, .mastermind-users .algolia-search .section-registration .form-field input {
    margin-bottom: 16px; }
  .section-registration .form-field textarea.form-control {
    min-height: 190px; }
  .section-registration .form-field label {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .section-registration .form-field .row {
      margin: 0 -20px; } }
  @media (min-width: 768px) {
    .section-registration .form-field .col-md-4 {
      padding: 0 20px; } }
  .section-registration .form-field .title {
    display: block;
    font: italic 600 28px/1.3 "Archer", serif;
    color: #000;
    margin-bottom: 33px; }
    @media (max-width: 1240px) {
      .section-registration .form-field .title {
        font-size: 24px;
        margin-bottom: 20px; } }
    @media (max-width: 991px) {
      .section-registration .form-field .title {
        font-size: 20px; } }
    @media (max-width: 767px) {
      .section-registration .form-field .title {
        font-size: 18px;
        margin-bottom: 15px; } }
    .section-registration .form-field .title label {
      padding-left: 0; }

.section-registration .basic-info label {
  font-weight: 400;
  color: #196cb4;
  text-transform: capitalize;
  font-size: 18px;
  margin-bottom: 10px; }

.section-registration .radio-list > li {
  margin-bottom: 28px; }
  @media (max-width: 1240px) {
    .section-registration .radio-list > li {
      margin-bottom: 19px; } }

.section-registration .radio-list .input-active label {
  color: #94cc17;
  font-weight: 500; }

.section-registration .boleen {
  text-transform: uppercase;
  color: #e85241; }
  .section-registration .boleen > li {
    padding-right: 28px;
    margin-bottom: 0; }
  .section-registration .boleen .radio {
    margin-right: 13px; }

.section-registration .list-custom {
  font-size: 24px;
  line-height: 1.1; }
  @media (max-width: 1240px) {
    .section-registration .list-custom {
      font-size: 20px; } }
  @media (max-width: 991px) {
    .section-registration .list-custom {
      font-size: 16px;
      line-height: 1.6; } }
  .section-registration .list-custom > li {
    padding: 10px 96px 0 98px;
    margin-bottom: 102px; }
    @media (max-width: 1240px) {
      .section-registration .list-custom > li {
        margin-bottom: 53px; } }
    @media (max-width: 991px) {
      .section-registration .list-custom > li {
        padding: 10px 0 0 70px; } }
    @media (max-width: 767px) {
      .section-registration .list-custom > li {
        padding: 3px 0 0 52px; } }
    .section-registration .list-custom > li:before {
      width: 68px;
      height: 68px;
      font: 700 36px/63px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
      color: #1e6ab4;
      margin-left: -99px; }
      @media (max-width: 991px) {
        .section-registration .list-custom > li:before {
          width: 55px;
          height: 55px;
          font-size: 28px;
          line-height: 55px;
          margin-left: -70px; } }
      @media (max-width: 767px) {
        .section-registration .list-custom > li:before {
          width: 40px;
          height: 40px;
          font-size: 20px;
          line-height: 38px;
          margin: -6px 0 0 -50px; } }
  .section-registration .list-custom label {
    font-weight: normal;
    padding-left: 43px; }
  .section-registration .list-custom .radio {
    float: left;
    margin-left: -43px; }
  .section-registration .list-custom textarea.form-control {
    font-size: 20px;
    font-weight: 300;
    padding: 12px 19px; }
    @media (max-width: 767px) {
      .section-registration .list-custom textarea.form-control {
        font-size: 16px;
        padding: 7px 14px; } }

.section-registration .selector {
  width: 150px;
  height: 60px;
  background: #fff;
  border: 1px solid #a4a4a4;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05) inset; }
  .section-registration .selector span {
    color: #000;
    font-size: 24px;
    line-height: 41px;
    font-weight: 400;
    height: 100%;
    padding-left: 18px;
    letter-spacing: 0; }
    .section-registration .selector span:after {
      content: "\f078";
      color: #cacaca;
      border: none;
      font: 18px/1 'FontAwesome';
      width: auto;
      height: auto;
      right: 15px; }

.section-registration .btn-wrap {
  padding: 49px 0 17px; }
  @media (max-width: 1240px) {
    .section-registration .btn-wrap {
      padding-top: 26px; } }
  @media (max-width: 991px) {
    .section-registration .btn-wrap {
      padding-top: 0; } }

.section-registration .btn-lg, .section-registration .btn-group-lg > .btn {
  font-size: 28px;
  text-transform: uppercase;
  padding: 22px 37px; }
  @media (max-width: 1240px) {
    .section-registration .btn-lg, .section-registration .btn-group-lg > .btn {
      font-size: 22px; } }
  @media (max-width: 991px) {
    .section-registration .btn-lg, .section-registration .btn-group-lg > .btn {
      padding: 11px 37px; } }
  @media (max-width: 767px) {
    .section-registration .btn-lg, .section-registration .btn-group-lg > .btn {
      font-size: 16px;
      padding: 7px 24px; } }

.v-align {
  display: table;
  height: 100%; }
  .v-align .v-align-cell {
    display: table-cell;
    vertical-align: middle; }

.testimonials {
  padding: 0 30px 91px;
  margin-bottom: 30px;
  border-bottom: 3px solid #ebeced; }
  @media (max-width: 1240px) {
    .testimonials {
      padding-bottom: 24px;
      margin-bottom: 0; } }
  @media (max-width: 991px) {
    .testimonials {
      padding: 0 0 24px; } }
  @media (max-width: 767px) {
    .testimonials {
      padding-bottom: 12px; } }
  .testimonials h2 {
    font-weight: 600;
    font-style: italic;
    font-size: 50px;
    margin-bottom: 92px; }
    @media (max-width: 1240px) {
      .testimonials h2 {
        margin-bottom: 48px; } }
    @media (max-width: 767px) {
      .testimonials h2 {
        font-size: 36px;
        margin-bottom: 28px; } }

.testimonial-box {
  background: #f4f7fb;
  padding: 39px 49px 33px 44px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.64;
  margin-bottom: 50px; }
  @media (max-width: 1240px) {
    .testimonial-box {
      font-size: 16px;
      margin-bottom: 35px; } }
  @media (max-width: 991px) {
    .testimonial-box {
      padding: 31px 28px 24px; } }
  @media (max-width: 767px) {
    .testimonial-box {
      padding: 31px 22px 24px;
      margin-bottom: 20px; } }
  .testimonial-box:nth-child(even) {
    background: #f7f7f7; }
    @media (min-width: 992px) {
      .testimonial-box:nth-child(even) .img {
        float: right;
        margin: 6px 0 0 30px; } }
    @media (min-width: 1241px) {
      .testimonial-box:nth-child(even) .img {
        margin: 14px 8px 0 58px; } }
  .testimonial-box .img {
    float: left;
    width: 231px;
    margin: 14px 58px 0 13px; }
    @media (max-width: 1240px) {
      .testimonial-box .img {
        width: 160px;
        margin: 12px 30px 0 0; } }
    @media (max-width: 991px) {
      .testimonial-box .img {
        width: 120px; } }
    @media (max-width: 767px) {
      .testimonial-box .img {
        width: 94px;
        margin: 0 18px 0 0; } }
    @media (max-width: 479px) {
      .testimonial-box .img {
        float: none;
        margin: 0 auto 20px; } }
  .testimonial-box .desc {
    overflow: hidden; }
  .testimonial-box h3 {
    font: 400 32px/1.2 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    margin-bottom: 21px;
    text-transform: capitalize;
    color: #1e6ab4; }
    @media (max-width: 991px) {
      .testimonial-box h3 {
        font-size: 28px; } }
    @media (max-width: 767px) {
      .testimonial-box h3 {
        font-size: 24px; } }
  .testimonial-box q {
    display: block;
    margin-bottom: 27px; }
    .testimonial-box q:before {
      background-position: 0 0;
      content: '';
      float: left;
      width: 25px;
      height: 17px;
      margin-right: 10px; }
  .testimonial-box footer {
    overflow: hidden;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.15; }
    @media (max-width: 1240px) {
      .testimonial-box footer {
        font-size: 18px; } }
    @media (max-width: 991px) {
      .testimonial-box footer {
        overflow: visible;
        display: table;
        width: 100%; } }
    @media (max-width: 767px) {
      .testimonial-box footer {
        font-size: 15px; } }
    .testimonial-box footer .btn {
      float: right;
      margin-left: 10px;
      min-width: 210px;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.65; }
      @media (max-width: 1240px) {
        .testimonial-box footer .btn {
          font-size: 18px;
          line-height: 1.4; } }
      @media (max-width: 991px) {
        .testimonial-box footer .btn {
          float: none;
          margin: 10px 0 0; } }
      @media (max-width: 767px) {
        .testimonial-box footer .btn {
          font-size: 15px; } }
  .testimonial-box .project-type {
    overflow: hidden; }
    @media (max-width: 991px) {
      .testimonial-box .project-type {
        display: table-header-group; } }
    .testimonial-box .project-type li {
      margin-bottom: 9px; }
    .testimonial-box .project-type [class*="ico-"] {
      padding-left: 39px; }
      .testimonial-box .project-type [class*="ico-"]:before {
        content: '';
        width: 20px;
        height: 20px;
        float: left;
        margin: 4px 0 0 -40px; }
        @media (max-width: 1240px) {
          .testimonial-box .project-type [class*="ico-"]:before {
            margin: 2px 0 0 -38px; } }
        @media (max-width: 767px) {
          .testimonial-box .project-type [class*="ico-"]:before {
            margin-top: 0; } }
    .testimonial-box .project-type .ico-app:before {
      background-position: -30px 0; }
    .testimonial-box .project-type .ico-clock:before {
      background-position: 0 -26px; }

.portifolio {
  padding: 85px 0 81px;
  border-bottom: 3px solid #ebeced; }
  @media (max-width: 1240px) {
    .portifolio {
      padding: 55px 0 40px; } }
  @media (max-width: 767px) {
    .portifolio {
      padding: 46px 0 32px; } }
  .portifolio h2, .portifolio h3 {
    font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    font-weight: 400; }
  .portifolio h2 {
    text-align: center;
    font-size: 50px;
    line-height: 1.2;
    color: #1e6ab4;
    margin-bottom: 53px;
    text-transform: capitalize; }
    @media (max-width: 1240px) {
      .portifolio h2 {
        margin-bottom: 32px; } }
    @media (max-width: 991px) {
      .portifolio h2 {
        font-size: 38px; } }
    @media (max-width: 767px) {
      .portifolio h2 {
        font-size: 32px;
        margin-bottom: 25px; } }
  .portifolio h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 43px;
    color: #96d019;
    text-align: center;
    text-transform: uppercase; }
    @media (max-width: 1240px) {
      .portifolio h3 {
        margin-bottom: 32px; } }
    @media (max-width: 991px) {
      .portifolio h3 {
        font-size: 22px;
        margin-bottom: 24px; } }
    @media (max-width: 767px) {
      .portifolio h3 {
        font-size: 18px;
        margin-bottom: 14px; } }
  .portifolio footer {
    overflow: hidden;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.78; }
    @media (max-width: 1240px) {
      .portifolio footer {
        font-size: 16px; } }
    @media (max-width: 767px) {
      .portifolio footer {
        display: table;
        width: 100%; } }
    .portifolio footer .btn {
      float: right;
      margin-left: 10px;
      min-width: 170px;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.65; }
      @media (max-width: 767px) {
        .portifolio footer .btn {
          float: none;
          margin: 10px 0 0;
          padding: 7px 12px;
          font-size: 16px; } }
  .portifolio .project-type {
    overflow: hidden;
    max-width: 62%; }
    @media (max-width: 991px) {
      .portifolio .project-type {
        max-width: 73%; } }
    @media (max-width: 767px) {
      .portifolio .project-type {
        display: table-header-group;
        max-width: none; } }
    .portifolio .project-type ul {
      line-height: 1.28; }
      @media (min-width: 768px) {
        .portifolio .project-type ul {
          font-size: 24px;
          line-height: 1.15;
          margin-bottom: 31px; } }
    .portifolio .project-type li {
      margin-bottom: 9px; }
    .portifolio .project-type [class*="ico-"] {
      padding-left: 34px; }
      .portifolio .project-type [class*="ico-"]:before {
        content: '';
        width: 20px;
        height: 20px;
        float: left;
        margin: 4px 0 0 -34px; }
        @media (max-width: 767px) {
          .portifolio .project-type [class*="ico-"]:before {
            margin-top: 0; } }
    .portifolio .project-type .ico-app:before {
      background-position: -30px 0; }
    .portifolio .project-type .ico-clock:before {
      background-position: 0 -26px; }

.browser {
  border: solid #dbdbdb;
  border-width: 0 1px 1px;
  border-top: 9px solid #196cb4;
  border-radius: 5px;
  margin-bottom: 48px; }
  @media (max-width: 767px) {
    .browser {
      margin-bottom: 30px; } }

.browser-head {
  background: #f0f0f0;
  padding: 20px 18px; }
  .browser-head .dots {
    margin: 0;
    line-height: 1;
    overflow: hidden; }
    .browser-head .dots li {
      overflow: hidden;
      text-indent: 101%;
      white-space: nowrap;
      float: left;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #fff;
      padding: 0;
      margin-right: 5px; }

.banner {
  position: relative;
  padding: 200px 0 75px;
  color: #fff;
  z-index: 1;
  margin-bottom: -62px; }
  @media (max-width: 1240px) {
    .banner {
      padding: 138px 0 54px; } }
  @media (max-width: 991px) {
    .banner {
      padding: 61px 0 37px; } }
  .banner .skewed-bg {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    top: 0;
    left: -32px;
    right: -32px;
    z-index: -1;
    -webkit-transform: rotate(-3.3deg);
    transform: rotate(-3.3deg); }
    @media (max-width: 767px) {
      .banner .skewed-bg {
        left: -11px;
        right: -11px; } }
  .banner .skewed-item {
    float: left;
    width: 50%;
    height: 100%;
    position: relative; }
  .banner .bg-stretch {
    position: absolute;
    left: 0;
    top: -95px;
    bottom: -95px;
    right: 0;
    -webkit-transform: rotate(3.3deg);
    transform: rotate(3.3deg); }
    @media (max-width: 1240px) {
      .banner .bg-stretch {
        top: -46px;
        bottom: -45px; } }
    @media (max-width: 767px) {
      .banner .bg-stretch {
        top: -25px;
        bottom: -25px; } }
  .banner .container {
    white-space: nowrap;
    text-align: center; }
    .banner .container:before {
      content: '';
      display: inline-block;
      vertical-align: bottom;
      width: 0;
      min-height: 400px; }
    .banner .container > * {
      white-space: normal;
      display: inline-block;
      vertical-align: bottom;
      max-width: 99%; }
    @media (max-width: 1240px) {
      .banner .container:before {
        min-height: 294px; } }
    @media (max-width: 991px) {
      .banner .container:before {
        min-height: 241px; } }
    @media (max-width: 767px) {
      .banner .container:before {
        min-height: 164px; } }
  .banner .heading {
    padding-bottom: 0; }
    .banner .heading h2 {
      color: #fff;
      font-style: normal;
      text-transform: capitalize;
      font-size: 48px;
      font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
      margin-bottom: 9px; }
      @media (max-width: 1240px) {
        .banner .heading h2 {
          font-size: 38px; } }
      @media (max-width: 991px) {
        .banner .heading h2 {
          font-size: 32px; } }
      @media (max-width: 767px) {
        .banner .heading h2 {
          font-size: 26px;
          margin-bottom: 4px; } }
    .banner .heading .subtitle {
      display: block;
      font: italic 700 34px/1 "Archer", serif; }
      @media (max-width: 991px) {
        .banner .heading .subtitle {
          font-size: 28px; } }
      @media (max-width: 767px) {
        .banner .heading .subtitle {
          font-size: 18px; } }

.time-zone {
  position: relative;
  padding: 203px 0 87px;
  background: #eaeff8; }
  @media (max-width: 991px) {
    .time-zone {
      padding: 157px 0 53px; } }
  @media (max-width: 767px) {
    .time-zone {
      padding: 135px 0 36px; } }
  .time-zone:before {
    height: 0;
    width: 0;
    border-left: 41px solid transparent;
    border-right: 41px solid transparent;
    border-top: 41px solid #eaeff8;
    border-top-width: 31px;
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
  .time-zone .heading {
    font-size: 22px;
    line-height: 1.36;
    font-weight: 300;
    padding-bottom: 13px; }
    @media (max-width: 991px) {
      .time-zone .heading {
        font-size: 18px; } }
    @media (max-width: 767px) {
      .time-zone .heading {
        font-size: 16px; } }
    .time-zone .heading h2 {
      line-height: 1.2;
      font-weight: 600;
      color: #196cb4;
      margin-bottom: 18px; }
      @media (min-width: 992px) {
        .time-zone .heading h2 {
          font-size: 64px; } }
      @media (max-width: 767px) {
        .time-zone .heading h2 {
          font-size: 28px;
          line-height: 1.1; } }
  .time-zone .map-holder {
    position: relative;
    margin: 0 -140px 0 -168px; }
    @media (max-width: 1240px) {
      .time-zone .map-holder {
        margin: 0 -108px 0 -109px; } }
    @media (max-width: 991px) {
      .time-zone .map-holder {
        margin: 0 -15px; } }
  .time-zone .map {
    float: left;
    left: 50%;
    position: relative;
    width: 100%; }
    .time-zone .map img {
      display: block;
      float: left;
      position: relative;
      left: -50%;
      width: 100%;
      min-width: 900px; }
      @media (max-width: 991px) {
        .time-zone .map img {
          min-width: 768px; } }
      @media (max-width: 767px) {
        .time-zone .map img {
          min-width: 480px; } }

.markers {
  margin: 0; }
  @media (max-width: 767px) {
    .markers {
      display: none; } }
  .markers .popup-holder {
    position: absolute; }
  .markers .popup-active .open {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%; }
  .markers .popup-active .marker1 {
    -webkit-transform: none;
    transform: none; }
  .markers .open {
    -webkit-transition: 0.3s, ease-in-out, -webkit-transform;
    transition: 0.3s, ease-in-out, -webkit-transform;
    transition: transform, 0.3s, ease-in-out;
    transition: transform, 0.3s, ease-in-out, -webkit-transform;
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
    display: block;
    width: 20px;
    height: 27px;
    outline: none;
    background: url("../../images/marker01.svg") no-repeat 0 0/20px 27px; }
  .markers .marker1 {
    width: 60px;
    height: 80px;
    background: url("../../images/marker02.svg") no-repeat 0 100%/100% auto; }
    @media (max-width: 991px) {
      .markers .marker1 {
        width: 38px;
        height: 52px; } }
  .markers #marker1 {
    left: 55.3%;
    top: 35.5%; }
  .markers #marker2 {
    left: 67.3%;
    top: 17.5%; }
  .markers #marker3 {
    left: 58.5%;
    top: 31.6%; }
  .markers #marker4 {
    left: 60.8%;
    top: 50.8%; }
  .markers #marker5 {
    left: 75.7%;
    top: 51.2%; }
  .markers #marker6 {
    left: 77.9%;
    top: 42%; }
  .markers #marker7 {
    left: 85.9%;
    top: 33%; }
  .markers #marker8 {
    left: 77.4%;
    top: 61.5%; }
  .markers #marker9 {
    left: 79.3%;
    top: 75.5%; }
  .markers #marker10 {
    left: 85%;
    top: 71.9%; }
  .markers #marker11 {
    left: 27.4%;
    top: 71.5%; }
  .markers #marker12 {
    left: 22.5%;
    top: 55.5%; }
  .markers #marker13 {
    left: 17%;
    top: 46.7%; }
  .markers #marker14 {
    left: 17.5%;
    top: 35%; }
  .markers #marker15 {
    left: 20.2%;
    top: 38.6%; }
    @media (max-width: 991px) {
      .markers #marker15 {
        top: 35.6%; } }
  .markers #marker16 {
    left: 11.2%;
    top: 34.4%; }
    @media (max-width: 991px) {
      .markers #marker16 {
        top: 30.4%; } }

.popup {
  background: #fff;
  padding: 25px 24px;
  position: absolute;
  width: 409px;
  display: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 23px;
  z-index: 2; }
  @media (max-width: 991px) {
    .popup {
      width: 354px; } }
  .popup:before {
    height: 0;
    width: 0;
    border-bottom: 14px solid #fff;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 100%; }
  .popup .media {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px; }
    .popup .media .media-left {
      padding-right: 23px; }
    .popup .media .media-body {
      vertical-align: middle; }
    .popup .media p {
      margin-bottom: 0; }
    .popup .media img {
      max-width: none; }
  .popup h3 {
    font: 400 24px/1.2 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    color: #196cb4;
    margin-bottom: 3px; }
  .popup h4 {
    font: 400 18px/1.2 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    color: #8abc19; }
  .popup p {
    margin-bottom: 24px; }
  .popup q {
    font-family: "Archer", serif;
    font-style: italic; }
  .popup .team-list {
    margin: 0; }
    .popup .team-list > li {
      padding: 0;
      margin-right: 5px; }

.popup-left {
  -webkit-transform: none;
  transform: none;
  left: -15px; }
  .popup-left:before {
    -webkit-transform: none;
    transform: none;
    left: 10px; }
    #marker16 .popup-left:before,
    #marker15 .popup-left:before {
      left: 30px; }

.popup-right {
  left: auto;
  right: -15px;
  -webkit-transform: none;
  transform: none; }
  .popup-right:before {
    -webkit-transform: none;
    transform: none;
    left: auto;
    right: 12px; }

.best {
  padding: 148px 0 0;
  margin-bottom: 138px; }
  @media (max-width: 991px) {
    .best {
      padding-top: 100px;
      margin-bottom: 78px; } }
  @media (max-width: 767px) {
    .best {
      padding-top: 80px;
      margin-bottom: 52px; } }
  .best .heading {
    font-size: 22px;
    line-height: 1.64;
    font-weight: 300;
    padding-bottom: 90px; }
    @media (max-width: 991px) {
      .best .heading {
        font-size: 18px;
        padding-bottom: 40px; } }
    @media (max-width: 767px) {
      .best .heading {
        font-size: 16px; } }
    .best .heading h2 {
      font-size: 50px;
      font-style: italic;
      font-weight: 600;
      text-transform: capitalize;
      margin-bottom: 45px; }
      @media (max-width: 991px) {
        .best .heading h2 {
          font-size: 38px;
          margin-bottom: 18px; } }
  .best .gmt {
    border-bottom: 3px solid #ebeced;
    padding-bottom: 140px; }
    @media (max-width: 991px) {
      .best .gmt {
        padding-bottom: 70px; } }
    @media (max-width: 767px) {
      .best .gmt {
        padding-bottom: 20px; } }
    .best .gmt h3 {
      font-size: 26px;
      line-height: 1.2;
      font-style: italic;
      font-weight: 600;
      color: #1a6db4;
      margin-bottom: 24px; }
      @media (max-width: 991px) {
        .best .gmt h3 {
          font-size: 18px; } }
      @media (max-width: 767px) {
        .best .gmt h3 {
          margin-bottom: 22px; } }
    .best .gmt .col {
      display: inline-block;
      vertical-align: top;
      width: 170px;
      text-align: center;
      font-size: 16px;
      line-height: 1.5; }
      @media (max-width: 991px) {
        .best .gmt .col {
          width: 20%;
          margin-right: -0.5em; } }
      @media (max-width: 767px) {
        .best .gmt .col {
          display: block;
          width: auto;
          margin-bottom: 33px; } }
    @media (max-width: 991px) {
      .best .gmt img {
        width: 80px; } }
    @media (max-width: 767px) {
      .best .gmt img {
        width: 60px; } }
  .best .clock-wrap {
    margin-bottom: 45px;
    font-size: 20px;
    color: #3c454b; }
    @media (max-width: 767px) {
      .best .clock-wrap {
        margin-bottom: 30px;
        font-size: 16px; } }
    .best .clock-wrap time {
      display: block;
      padding-top: 6px; }
  .best .clock {
    margin: 0 auto; }
  .best .member-list > li {
    margin-bottom: 9px; }
    @media (max-width: 767px) {
      .best .member-list > li {
        display: inline-block;
        margin: 0 4px 9px; } }

.how {
  margin-bottom: 162px; }
  @media (max-width: 991px) {
    .how {
      margin-bottom: 36px; } }
  .how h2 {
    font-size: 50px;
    font-style: italic;
    margin-bottom: 142px;
    font-weight: 600; }
    @media (max-width: 991px) {
      .how h2 {
        margin-bottom: 65px; } }
    @media (max-width: 767px) {
      .how h2 {
        font-size: 32px;
        margin-bottom: 40px; } }
  .how .media-img {
    text-align: center; }
  .how .media-default:nth-child(even) .media-img {
    text-align: center; }

.article-row {
  font-size: 14px;
  line-height: 1.64;
  padding-bottom: 70px;
  margin-bottom: 98px;
  border-bottom: 1px solid #d4dbe0; }
  @media (max-width: 767px) {
    .article-row {
      padding-bottom: 32px;
      margin-bottom: 53px; } }
  .article-row:last-child {
    border-bottom: none; }
    @media (max-width: 991px) {
      .article-row:last-child {
        margin-bottom: 30px; } }
    @media (max-width: 767px) {
      .article-row:last-child {
        margin-bottom: 0; } }
  .article-row .heading {
    padding-bottom: 0; }
    .article-row .heading h2 {
      font-size: 49px;
      line-height: 1.06; }
      @media (max-width: 1240px) {
        .article-row .heading h2 {
          font-size: 38px; } }
      @media (max-width: 991px) {
        .article-row .heading h2 {
          font-size: 32px; } }
      @media (max-width: 767px) {
        .article-row .heading h2 {
          font-size: 24px;
          line-height: 1.3; } }
    .article-row .heading .fa {
      font-size: 100px;
      color: #1e6ab4;
      margin-bottom: 40px; }
      @media (max-width: 767px) {
        .article-row .heading .fa {
          font-size: 80px;
          margin-bottom: 22px; } }
  .article-row h2,
  .article-row h3 {
    color: #1e3948;
    font-style: italic;
    font-weight: 600; }
  .article-row h2 {
    margin-bottom: 64px; }
    @media (max-width: 1240px) {
      .article-row h2 {
        font-size: 42px; } }
    @media (max-width: 991px) {
      .article-row h2 {
        font-size: 32px; } }
    @media (max-width: 767px) {
      .article-row h2 {
        font-size: 26px;
        margin-bottom: 36px; } }
  .article-row h3 {
    font-size: 40px;
    line-height: 1.3;
    margin: 30px 0 70px;
    letter-spacing: -1px; }
    @media (max-width: 1240px) {
      .article-row h3 {
        font-size: 32px; } }
    @media (max-width: 991px) {
      .article-row h3 {
        font-size: 26px; } }
    @media (max-width: 767px) {
      .article-row h3 {
        font-size: 22px;
        line-height: 1.3;
        margin: 15px 0 33px; } }
    .article-row h3 .fa {
      font-size: 50px;
      margin-right: 12px;
      color: #1e6ab4;
      display: inline-block;
      vertical-align: middle;
      margin-top: -2px; }
  .article-row p {
    margin-bottom: 25px; }
    @media (max-width: 767px) {
      .article-row p {
        margin-bottom: 12px; } }
  .article-row blockquote {
    margin-top: 50px;
    font-size: 26px;
    line-height: 1.35;
    color: #1e3948; }
    @media (max-width: 1240px) {
      .article-row blockquote {
        font-size: 22px; } }
    @media (max-width: 991px) {
      .article-row blockquote {
        font-size: 18px;
        line-height: 1.45; } }
    .article-row blockquote cite {
      font-weight: 700;
      color: #9da9b0; }
  .article-row .img-right {
    float: right;
    margin: 0 -43px 0 30px; }
    @media (max-width: 1240px) {
      .article-row .img-right {
        width: 300px; } }
    @media (max-width: 991px) {
      .article-row .img-right {
        width: 257px; } }
    @media (max-width: 767px) {
      .article-row .img-right {
        margin: 0 auto 30px;
        float: none; } }
  .article-row .list-check > li span {
    color: #999; }
  .article-row .list-services {
    padding: 0 69px; }
    @media (max-width: 1240px) {
      .article-row .list-services {
        padding: 0 16px; } }
    .article-row .list-services > li {
      display: inline-block;
      vertical-align: top;
      margin-right: -0.5em;
      width: 50%;
      padding: 0 10px 41px 70px; }
      @media (max-width: 1240px) {
        .article-row .list-services > li {
          padding-right: 28px; } }
      @media (max-width: 767px) {
        .article-row .list-services > li {
          display: block;
          width: auto;
          margin-right: 0;
          padding: 0 0 18px 70px; } }
    .article-row .list-services .fa {
      float: left;
      margin-left: -72px;
      color: #1e6ab4;
      width: 46px;
      height: 46px;
      font-size: 24px;
      background: #e7eef6;
      position: relative;
      border-radius: 50%; }
      .article-row .list-services .fa:before {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .article-row .list-services .title {
      display: block;
      font-size: 18px;
      text-transform: uppercase;
      font-weight: 500;
      letter-spacing: 2px;
      margin-bottom: 6px; }
      @media (max-width: 991px) {
        .article-row .list-services .title {
          font-size: 16px;
          line-height: 1.3; } }

.panel-work {
  padding: 114px 0 100px;
  color: #fff;
  position: relative; }
  @media (max-width: 767px) {
    .panel-work {
      padding: 64px 0 43px; } }
  .panel-work:before {
    background-image: url("../../images/bg03.jpg"); }
  .panel-work h2 {
    font-weight: 600;
    font-style: italic;
    font-size: 49px;
    margin-bottom: 94px;
    color: #fff; }
    @media (max-width: 767px) {
      .panel-work h2 {
        margin-bottom: 45px;
        font-size: 32px; } }
  .panel-work .list-custom > li {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    margin-right: -0.5em;
    padding: 0 30px; }
    @media (max-width: 991px) {
      .panel-work .list-custom > li {
        padding: 0 15px; } }
    @media (max-width: 767px) {
      .panel-work .list-custom > li {
        display: block;
        width: auto;
        margin-bottom: 30px; } }
    .panel-work .list-custom > li:before {
      float: none;
      display: block;
      margin: 0 auto 37px;
      color: #fff;
      background: #1e6ab4;
      width: 85px;
      height: 85px;
      font: 700 40px/85px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif; }
      @media (max-width: 767px) {
        .panel-work .list-custom > li:before {
          width: 69px;
          height: 69px;
          font-size: 32px;
          line-height: 69px;
          margin-bottom: 15px; } }

.panel-plans {
  padding: 127px 0 148px;
  position: relative; }
  @media (max-width: 991px) {
    .panel-plans {
      padding-bottom: 97px; } }
  @media (max-width: 767px) {
    .panel-plans {
      padding: 64px 0 32px; } }
  .panel-plans:before {
    background: url("../../images/bg-contact.jpg"); }
  .panel-plans .heading {
    padding-bottom: 107px; }
    @media (max-width: 767px) {
      .panel-plans .heading {
        padding-bottom: 34px; } }
    .panel-plans .heading h2 {
      font-size: 49px;
      font-weight: 600;
      color: #1e3948;
      margin-bottom: 16px; }
      @media (max-width: 767px) {
        .panel-plans .heading h2 {
          font-size: 30px;
          line-height: 1.1;
          margin-bottom: 9px; } }
    .panel-plans .heading h3 {
      font-size: 25px;
      line-height: 1.2;
      font-weight: 500;
      margin-bottom: 45px;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .panel-plans .heading h3 {
          font-size: 20px;
          margin-bottom: 23px; } }
    .panel-plans .heading p {
      font: italic 26px/1.2 "Archer", serif;
      margin-bottom: 0; }
      @media (max-width: 767px) {
        .panel-plans .heading p {
          font-size: 18px; } }
  .panel-plans .row {
    margin: 0 -14px; }
  .panel-plans .col-sm-3 {
    padding: 0 14px; }

.plan-box {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  font-size: 14px;
  line-height: 1.57;
  font-weight: 500; }
  @media (max-width: 1240px) {
    .plan-box {
      font-size: 13px; } }
  @media (max-width: 991px) {
    .plan-box {
      margin-bottom: 30px; } }
  .plan-box .plan-heading {
    background: #a0a8b4;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    padding: 11px 15px 13px;
    color: #fff; }
  .plan-box .title {
    display: block;
    padding: 16px 19px 9px;
    color: #3075b9;
    text-transform: capitalize; }
  .plan-box .plan-body {
    -webkit-transition: padding, 0.3s, ease-in-out;
    transition: padding, 0.3s, ease-in-out;
    padding: 31px 15px 34px; }
    .plan-box .plan-body .list-group {
      margin: 0 -15px 75px; }
  .plan-box .list-group-item {
    border-width: 0 0 1px;
    border-color: #f2f4f6;
    margin-bottom: 0;
    padding: 11px 15px; }
  .plan-box .btn {
    padding: 12px 21px 13px;
    letter-spacing: 0; }
  .plan-box .list-tick > li {
    padding: 11px 15px 11px 43px; }
    .plan-box .list-tick > li:before {
      left: 19px;
      top: 12px; }

.plan-choose {
  -webkit-transition: margin, 0.3s, ease-in-out;
  transition: margin, 0.3s, ease-in-out;
  text-align: center; }
  @media (min-width: 768px) {
    .plan-choose:hover {
      margin: -23px -15px 0; } }
  .plan-choose:hover .plan-heading {
    background: #96d019; }
  @media (min-width: 768px) {
    .plan-choose:hover .plan-body {
      padding-top: 52px;
      padding-bottom: 55px; } }
  .plan-choose:hover .btn-gray1 {
    background: #96d019;
    border-color: #96d019;
    color: #fff; }

#img-day-night {
  max-width: 465px;
  height: auto; }
  #img-day-night .st0 {
    fill: #404854; }
  #img-day-night .st1 {
    fill: #D0DFF5; }
  #img-day-night .st2 {
    fill: #4D5561; }
  #img-day-night .st3 {
    fill: #EAF9FF; }
  #img-day-night .st4 {
    fill: #6A872A; }
  #img-day-night .st5 {
    fill: #96D510; }
  #img-day-night .st6 {
    fill: #587810; }
  #img-day-night .st7 {
    fill: #6B882C; }
  #img-day-night .st8 {
    fill: #3F5F00; }
  #img-day-night .st9 {
    fill: #526F13; }
  #img-day-night .st10 {
    fill: #808894; }
  #img-day-night .st11 {
    fill: #EDD043; }
  #img-day-night .st12 {
    fill: #F9F3B9; }
  #img-day-night .st13 {
    fill: #fff; }

#img-truck {
  max-width: 525px;
  height: auto; }
  #img-truck .st0 {
    fill: #DDECFF; }
  #img-truck .st1 {
    fill: #A0A8B4; }
  #img-truck .st2 {
    fill: #D0DFF5; }
  #img-truck .st3 {
    fill: #96D510; }
  #img-truck .st4 {
    fill: #8BBD1A; }
  #img-truck .st5 {
    fill: #fff; }
  #img-truck .st6 {
    fill: #404854; }
  #img-truck .st7 {
    fill: #90BC48; }
  #img-truck .st8 {
    fill: #3472B3; }
  #img-truck .st9 {
    fill: #A1A7B2; }
  #img-truck .st10 {
    fill: #38404C; }
  #img-truck .st11 {
    fill: #E9E9E9; }
  #img-truck .st12 {
    fill: #D7D7D7; }

#img-lever .st0 {
  fill: #D1DFF2; }

#img-lever .st1 {
  fill: #fff; }

#img-lever .st2 {
  fill: #6E9FCE; }

#img-lever .st3 {
  fill: #96C93D; }

#img-lever .st4 {
  -webkit-clip-path: url(#XMLID_192_);
  clip-path: url(#XMLID_192_);
  fill: #8ABD40; }

#img-lever .st5 {
  fill: #8ABD40; }

#img-lever .st6 {
  fill: #9FA8B4; }

#img-lever .st7 {
  fill: #404854; }

#img-lever .st8 {
  fill: #587937; }

#img-lever .st9 {
  fill: #6C8839; }

#img-lever .st10 {
  fill: #9A713C; }

#img-lever .st11 {
  fill: #1E6AB4; }

#img-device .st0 {
  fill: #E4E4E4; }

#img-device .st1 {
  fill: #fff; }

#img-device .st2 {
  fill: #ED5D24; }

#img-device .st3 {
  fill: #D7A529; }

#img-device .st4 {
  fill: #575757; }

#img-device .st5 {
  fill: #C4C4C4; }

#img-code .st0 {
  fill: #F3F3F3; }

#img-code .st1 {
  fill: #fff; }

#img-psd .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #EFEEEE; }

#img-psd .st1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #1E6AB4; }

#img-psd .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #85B8E3; }

#img-psd .st3 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #8BC03F; }

#img-psd .st4 {
  fill: #fff; }

#img-desktop {
  max-width: 172px; }
  #img-desktop .st0 {
    fill: #39414D; }
  #img-desktop .st1 {
    fill: #414955; }
  #img-desktop .st2 {
    fill: #D1DFF2; }
  #img-desktop .st3 {
    fill: #fff; }
  #img-desktop .st4 {
    fill: #6FA0CE; }
  #img-desktop .st5 {
    fill: #F26751; }
  #img-desktop .st6 {
    fill: #A1A8B4; }
  #img-desktop .st7 {
    fill: #98CA3C; }
  #img-desktop .st8 {
    fill: #DDDDDC; }
  #img-desktop .st9 {
    fill: #E9E9E9; }
  #img-desktop .st10 {
    fill: #CFD0D0; }
  #img-desktop .st11 {
    fill: #D7D7D7; }
  #img-desktop .st12 {
    fill: #8ABD40; }

#img-wp {
  max-width: 182px; }
  #img-wp .st0 {
    fill: #A1A8B4; }
  #img-wp .st1 {
    fill: #fff; }
  #img-wp .st2 {
    fill: #DDDDDC; }
  #img-wp .st3 {
    fill: #206BB5; }

#img-web-app {
  max-width: 170px; }
  #img-web-app .st0 {
    fill: #39414D; }
  #img-web-app .st1 {
    fill: #414955; }
  #img-web-app .st2 {
    fill: #fff; }
  #img-web-app .st3 {
    fill: #DDDDDC; }
  #img-web-app .st4 {
    fill: #E9E9E9; }
  #img-web-app .st5 {
    fill: #CFD0D0; }
  #img-web-app .st6 {
    fill: #D7D7D7; }
  #img-web-app .st7 {
    fill: #1B6EB4; }
  #img-web-app .st8 {
    fill: #A3C4E0; }
  #img-web-app .st9 {
    fill: #98CA3C; }

#img-mobile {
  max-width: 114px; }
  #img-mobile .st0 {
    fill: #39414D; }
  #img-mobile .st1 {
    fill: #414955; }
  #img-mobile .st2 {
    fill: #fff; }
  #img-mobile .st3 {
    fill: #F6F6F6; }
  #img-mobile .st4 {
    fill: #DDDDDC; }
  #img-mobile .st5 {
    fill: #E9E9E9; }
  #img-mobile .st6 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #A1A8B4; }
  #img-mobile .st7 {
    fill: #86C440; }

#img-globe {
  max-width: 320px; }
  #img-globe .st0 {
    fill: #6FA0CE; }
  #img-globe .st1 {
    fill: #98CA3C; }
  #img-globe .st2 {
    opacity: 0.7; }
  #img-globe .st3 {
    fill: #206BB5; }
  #img-globe .st4 {
    fill: #8BBE3F; }
  #img-globe .st5 {
    fill: #414955; }
  #img-globe .st6 {
    opacity: 0.5;
    fill: #F8EB32; }
  #img-globe .st7 {
    fill: none; }
  #img-globe .st8 {
    fill: #D1DFF2; }
  #img-globe .st9 {
    fill: #fff; }
  #img-globe .st10 {
    fill: #91BC46; }
  #img-globe .st11 {
    fill: #3673B3; }
  #img-globe .st12 {
    fill: #A1A7B2; }

#img-todos {
  max-width: 293px; }
  #img-todos .st0 {
    fill: #A1A8B4; }
  #img-todos .st1 {
    fill: #BAC2CE; }
  #img-todos .st2 {
    fill: #fff; }
  #img-todos .st3 {
    fill: #98CA3C; }
  #img-todos .st4 {
    fill: #39414D; }
  #img-todos .st5 {
    fill: #414955; }
  #img-todos .st6 {
    fill: #206BB5; }

#img-beach {
  max-width: 513px; }
  #img-beach .st0 {
    fill: #D1DFF2; }
  #img-beach .st1 {
    fill: #6FA0CE; }
  #img-beach .st2 {
    opacity: 0.5;
    fill: #fff; }
  #img-beach .st3 {
    fill: #F3CD9E; }
  #img-beach .st4 {
    fill: #FFDAAB; }
  #img-beach .st5 {
    fill: #6B883A; }
  #img-beach .st6 {
    fill: #98CA3C; }
  #img-beach .st7 {
    fill: #8BBE3F; }
  #img-beach .st8 {
    fill: #F26751; }
  #img-beach .st9 {
    fill: #E45A44; }
  #img-beach .st10 {
    fill: #fff; }

#img-books {
  max-width: 514px; }
  #img-books .st0 {
    fill: #D1DFF2; }
  #img-books .st1 {
    fill: #6B883A; }
  #img-books .st2 {
    fill: #206BB5; }
  #img-books .st3 {
    fill: #FFFFFF; }
  #img-books .st4 {
    fill: #6FA0CE; }
  #img-books .st5 {
    fill: #F2F2F2; }
  #img-books .st6 {
    fill: #8BBE3F; }
  #img-books .st7 {
    fill: #F26751; }
  #img-books .st8 {
    fill: #91BC46; }
  #img-books .st9 {
    fill: #3673B3; }
  #img-books .st10 {
    fill: #A1A7B2; }

#img-bulb .st0 {
  fill: #A1C4E0; }

#img-bulb .st1 {
  fill: #196DB4; }

#img-bulb .st2 {
  fill: #F5F9FC; }

.clock {
  width: 99px;
  height: 99px;
  position: relative;
  background: url("../../images/clock.svg");
  background-size: cover; }
  .clock .st0 {
    fill: #404854; }
  .clock .hour,
  .clock .minute {
    position: absolute;
    left: 0;
    top: 0;
    width: 99px;
    height: 99px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%; }
    .clock .hour:after,
    .clock .minute:after {
      content: '';
      position: absolute;
      -webkit-transform-origin: 0 0;
      transform-origin: 0 0; }
  .clock .hour:after {
    width: 35px;
    height: 12px;
    background: url("../../images/hour.svg");
    background-size: cover;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 50%;
    margin: 5px 0 0 -7px; }
  .clock .minute:after {
    width: 2px;
    height: 30px;
    background: #404854;
    border-radius: 12px;
    top: 15px;
    margin-left: -2px; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html, body {
  height: 100%; }

.cmv_platform {
  color: #1e3948;
  font-family: 'GothamRounded', sans-serif;
  background-color: #e8f0f7; }
  .cmv_platform h1, .cmv_platform h2, .cmv_platform h3, .cmv_platform h4, .cmv_platform h5, .cmv_platform h6,
  .cmv_platform .h1, .cmv_platform .h2, .cmv_platform .h3, .cmv_platform .h4, .cmv_platform .h5, .cmv_platform .h6 {
    font-family: 'GothamRounded', 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif; }
  .cmv_platform h2 {
    color: #1e3948;
    font-size: 20px;
    font-weight: 500; }

.container-fluid {
  max-width: 1194px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px; }
  .container-fluid .row {
    margin-left: -10px;
    margin-right: -10px; }
    .container-fluid .row > [class*="col-"], .container-fluid .row .col {
      padding-left: 10px;
      padding-right: 10px; }

#page_container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 10px; }

.cmv_platform {
  overflow-y: scroll; }
  .cmv_platform main {
    background-color: #fbfbfb;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); }

#main_container {
  width: 100%;
  padding-top: 25px;
  padding-bottom: 30px;
  position: relative; }

#page-content {
  padding-top: 20px; }
  #page-content .row > [class*="col-"] .inner-box {
    background-color: white;
    border: 1px solid #e8ebec;
    border-radius: 10px;
    padding: 27px 25px;
    margin-bottom: 19px; }
    #page-content .row > [class*="col-"] .inner-box.no-padding {
      padding: 0 !important; }
  #page-content .row.no_inner-box_padding {
    padding: 0; }
    #page-content .row.no_inner-box_padding > [class*="col-"] .inner-box {
      padding: 0; }

.inner-box hr {
  width: 100%;
  height: 3px;
  background-color: #e8ebec;
  display: block;
  background: url("../../images/bg_hr.svg") repeat-y scroll 0 0 #e8ebec;
  background-size: 55px 3px;
  border: none;
  box-shadow: none;
  margin: 23px 0;
  clear: both; }
  .inner-box hr.hr_gray {
    background: #e8ebec;
    margin: 18px 0; }

@media (max-width: 767px) {
  .container-fluid {
    max-width: 1194px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 14px;
    padding-right: 14px; }
    .container-fluid .row {
      margin-left: -7px;
      margin-right: -7px; }
      .container-fluid .row > [class*="col-"], .container-fluid .row .col {
        padding-left: 7px;
        padding-right: 7px; }
  .page-content {
    padding-top: 20px; }
    .page-content .row > [class*="col-"] .inner-box {
      background-color: white;
      border: 1px solid #e8ebec;
      border-radius: 10px;
      padding: 23px 18px;
      margin-bottom: 19px; } }
    @media (max-width: 767px) and (max-width: 767px) {
      .page-content .row > [class*="col-"] .inner-box {
        padding: 20px 15px !important; } }

@media (max-width: 767px) {
      .page-content .row > [class*="col-"] .inner-box.no-padding {
        padding: 0 !important; }
    .page-content .row.no_inner-box_padding {
      padding: 0; }
      .page-content .row.no_inner-box_padding > [class*="col-"] .inner-box {
        padding: 0; } }

#page-content_mobile {
  display: none; }
  @media (max-width: 767px) {
    #page-content_mobile {
      display: block; } }

/* ---------------------------------------------------------
   page content - section
   ---------------------------------------------------------*/
.page-content .sidebar .profile-box {
  padding-top: 25px;
  padding-bottom: 10px; }
  @media (max-width: 767px) {
    .page-content .sidebar .profile-box {
      padding-top: 15px; } }
  .page-content .sidebar .profile-box .mobile-profile-box {
    display: none;
    padding: 0 5px; }
    @media (max-width: 767px) {
      .page-content .sidebar .profile-box .mobile-profile-box {
        display: block;
        position: relative; }
        .page-content .sidebar .profile-box .mobile-profile-box .col-left {
          display: block;
          width: 54px;
          float: left;
          padding: 0;
          margin: 0;
          margin-right: 15px; }
          .page-content .sidebar .profile-box .mobile-profile-box .col-left .avatar_wrap {
            margin: 0; }
        .page-content .sidebar .profile-box .mobile-profile-box .col-right {
          display: block;
          width: calc(100% - 69px);
          float: left;
          padding: 0;
          margin: 0;
          text-align: left; }
          .page-content .sidebar .profile-box .mobile-profile-box .col-right p {
            text-align: left !important;
            margin: 0; }
          .page-content .sidebar .profile-box .mobile-profile-box .col-right p.title {
            margin-top: 3px;
            margin-bottom: 2px; }
        .page-content .sidebar .profile-box .mobile-profile-box a.btn_avatar_info {
          position: absolute;
          top: 5px;
          right: 10px; } }
  @media (max-width: 767px) {
    .page-content .sidebar .profile-box .row {
      display: none; } }
  .page-content .sidebar .profile-box .avatar_wrap {
    float: right;
    margin-right: 31px;
    max-width: 75px; }
    @media (max-width: 767px) {
      .page-content .sidebar .profile-box .avatar_wrap {
        max-width: 54px;
        margin: 0;
        margin-right: 15px; } }
    .page-content .sidebar .profile-box .avatar_wrap a.btn_avatar_info {
      right: -20px; }
      @media (max-width: 767px) {
        .page-content .sidebar .profile-box .avatar_wrap a.btn_avatar_info {
          display: none; } }
  .page-content .sidebar .profile-box .col_avatar_img {
    padding-right: 0; }
  .page-content .sidebar .profile-box .col_avatar_desc {
    text-align: left;
    padding-left: 0; }
    .page-content .sidebar .profile-box .col_avatar_desc p.title {
      text-align: left; }
      @media (max-width: 767px) {
        .page-content .sidebar .profile-box .col_avatar_desc p.title {
          margin: 0; } }
    .page-content .sidebar .profile-box .col_avatar_desc p.name {
      text-align: left; }
  .page-content .sidebar .profile-box .profile_desc {
    padding: 10px 35px 0; }
    @media (max-width: 767px) {
      .page-content .sidebar .profile-box .profile_desc {
        display: none; } }
    .page-content .sidebar .profile-box .profile_desc p {
      font-size: 15px;
      line-height: 28px;
      color: #1e3948;
      font-weight: 300;
      text-align: center; }
      .page-content .sidebar .profile-box .profile_desc p a {
        color: #1e6ab4;
        font-weight: 500; }

@media (max-width: 767px) {
  .page-content .sidebar .team_project {
    display: none; } }

.page-content .sidebar .panel_team_list .item {
  width: 50%; }
  .page-content .sidebar .panel_team_list .item:nth-child(n) {
    margin-right: 0;
    margin-bottom: 0; }
  .page-content .sidebar .panel_team_list .item:nth-child(2n) {
    margin-right: 0;
    margin-bottom: 0; }

.page-content .sidebar .panel_team_members .btn-oval-sm, .page-content .sidebar .panel_team_members .uploadcare-widget-button-open {
  padding: 0;
  height: 38px;
  width: 38px;
  position: relative; }
  .page-content .sidebar .panel_team_members .btn-oval-sm:before, .page-content .sidebar .panel_team_members .uploadcare-widget-button-open:before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0; }
  .page-content .sidebar .panel_team_members .btn-oval-sm span, .page-content .sidebar .panel_team_members .uploadcare-widget-button-open span {
    display: none; }

.page-content .sidebar .panel_team_members .team_members_wrap .panel_team_list .item {
  width: 100%; }
  .page-content .sidebar .panel_team_members .team_members_wrap .panel_team_list .item:nth-child(n) {
    margin-right: 2.5%;
    margin-bottom: 2.5%; }
  .page-content .sidebar .panel_team_members .team_members_wrap .panel_team_list .item:nth-child(1n) {
    margin-right: 0;
    margin-bottom: 0; }
  .page-content .sidebar .panel_team_members .team_members_wrap .panel_team_list .item .inner_right p.title {
    margin-top: 7px;
    margin-bottom: 2px; }

.page-content .profile-box {
  padding: 30px 12px; }
  @media (max-width: 767px) {
    .page-content .profile-box {
      padding: 20px 15px 5px; } }
  .page-content .profile-box a.btn_avatar_info {
    width: 39px;
    height: 39px;
    background-color: white;
    border: 2px solid #bad3e8;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0; }
    .page-content .profile-box a.btn_avatar_info .fa {
      position: relative;
      left: 1px;
      top: 8px;
      color: #1e6ab4;
      font-size: 18px;
      font-weight: 400; }
  .page-content .profile-box .avatar_wrap {
    position: relative;
    max-width: 104px;
    width: 100%;
    margin: 0 auto; }
    .page-content .profile-box .avatar_wrap .main_avatar {
      box-shadow: 0 0 0 1px #e8e8e8;
      border-radius: 50%; }
    .page-content .profile-box .avatar_wrap img.avatar {
      display: inline-block; }
  .page-content .profile-box p.title {
    color: #8e9ca3;
    font-size: 14px;
    font-weight: 500;
    margin: 15px 0 9px;
    text-align: center; }
  .page-content .profile-box p.name {
    color: #1e3948;
    font-size: 19px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize; }
  .page-content .profile-box > .col-left {
    width: 33%;
    padding-right: 12px; }
    .page-content .profile-box > .col-left .profile_avatar {
      text-align: center; }
    @media (max-width: 767px) {
      .page-content .profile-box > .col-left {
        display: none; } }
  .page-content .profile-box > .col-right {
    width: 67%;
    padding-left: 12px;
    padding-right: 18px; }
    @media (max-width: 767px) {
      .page-content .profile-box > .col-right {
        width: 100%;
        padding: 0; }
        .page-content .profile-box > .col-right .avatar_wrap {
          float: left;
          margin-right: 31px;
          max-width: 75px; }
          .page-content .profile-box > .col-right .avatar_wrap a {
            right: -20px; } }
    @media (min-width: 769px) {
      .page-content .profile-box > .col-right .avatar_wrap {
        display: none; }
      .page-content .profile-box > .col-right span.name,
      .page-content .profile-box > .col-right span.title {
        display: none; } }
    .page-content .profile-box > .col-right p {
      font-size: 15px;
      line-height: 28px;
      color: #1e3948;
      font-weight: 300; }
      .page-content .profile-box > .col-right p a {
        color: #1e6ab4;
        font-weight: 500; }
      .page-content .profile-box > .col-right p span.title {
        color: #8e9ca3;
        font-size: 14px;
        line-height: 21px;
        font-weight: 500;
        display: block; }
      .page-content .profile-box > .col-right p span.name {
        color: #1e3948;
        font-size: 19px;
        line-height: 27px;
        font-weight: 500;
        display: block; }

.page-content .team_project {
  position: relative;
  padding: 0 25px 15px 25px; }
  @media (max-width: 767px) {
    .page-content .team_project {
      padding: 0 14px 15px 14px; } }
  .page-content .team_project .btn_team {
    max-width: 260px;
    width: 100%;
    height: 20px;
    background-color: #e8ebec;
    border-radius: 10px;
    margin: 0 auto;
    color: #1e3948;
    font-size: 12px;
    font-weight: 500;
    display: block;
    line-height: 22px;
    text-align: center;
    position: relative; }
    .page-content .team_project .btn_team .fa {
      color: #343434;
      font-size: 16px;
      font-weight: 400;
      margin-left: 10px;
      position: relative;
      top: 1px; }
  .page-content .team_project:before {
    width: 100%;
    height: 1px;
    background-color: #e8ebec;
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 0; }

/* ---------------------------------------------------------
   Headings
   ---------------------------------------------------------*/
/* ---------------------------------------------------------
   Select
   ---------------------------------------------------------*/
.select-blue {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  border: none;
  border-radius: 15px;
  background: url("../../images/fa-angle-down.svg") no-repeat scroll right center #e8f0f7;
  background-size: 25px;
  padding-right: 30px;
  padding-top: 5px;
  padding-bottom: 4px;
  padding-left: 10px; }

.select-box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  border: 1px solid #e8ebec;
  border-radius: 5px;
  box-shadow: inset 0 2px 0 #e8ebec;
  background: url("../../images/double-arrows.svg") no-repeat scroll right center #fbfbfb;
  background-size: 19px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  height: auto;
  color: #1e3948;
  font-size: 15px;
  font-weight: 300; }

.form-control:focus, .mastermind-users .algolia-search input:focus {
  border-color: #1e6ab4 !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(30, 106, 180, 0.6) !important;
  outline: 0 none; }

/* ---------------------------------------------------------
   Checkbox
   ---------------------------------------------------------*/
.chbx-wrap {
  cursor: pointer; }
  .chbx-wrap input[type="radio"],
  .chbx-wrap input[type="checkbox"] {
    height: 18px;
    width: 18px;
    position: relative;
    top: 1px;
    cursor: pointer; }
  .chbx-wrap label {
    color: #1e3948;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    padding-left: 5px;
    position: relative;
    top: 0;
    cursor: pointer; }

/* ---------------------------------------------------------
   Buttons
   ---------------------------------------------------------*/
.cmv_platform .btn {
  border-radius: 17px !important;
  padding: 9px 15px 8px;
  border: none;
  letter-spacing: normal;
  text-transform: none;
  line-height: normal;
  color: white; }
  .cmv_platform .btn.btn-success {
    background-color: #8abc19;
    border: none;
    color: #fff; }

.cmv_platform a.btn_back {
  color: #bbc3c8;
  font-size: 18px;
  font-weight: 500; }
  .cmv_platform a.btn_back i {
    margin-right: 7px; }

.cmv_platform .btn-oval-sm, .cmv_platform .uploadcare-widget-button-open {
  position: relative;
  border: 2px solid #bad3e8;
  border-radius: 19px;
  color: #1e6ab4;
  font-size: 14px;
  font-weight: 500;
  float: right;
  padding: 9px 16px 7px 39px;
  top: -10px;
  display: inline-block;
  text-transform: capitalize; }
  .cmv_platform .btn-oval-sm:before, .cmv_platform .uploadcare-widget-button-open:before {
    content: "\f234";
    font-family: FontAwesome;
    left: 16px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #1e6ab4;
    font-size: 16px;
    font-weight: 400; }
  .cmv_platform .btn-oval-sm.pdf:before, .cmv_platform .pdf.uploadcare-widget-button-open:before {
    content: "\f1c1"; }
  .cmv_platform .btn-oval-sm.btn_add_project, .cmv_platform .btn_add_project.uploadcare-widget-button-open {
    padding: 9px 16px 7px 37px; }
    @media (max-width: 1240px) {
      .cmv_platform .btn-oval-sm.btn_add_project, .cmv_platform .btn_add_project.uploadcare-widget-button-open {
        padding: 0;
        height: 38px;
        width: 38px;
        position: relative; } }
    .cmv_platform .btn-oval-sm.btn_add_project:before, .cmv_platform .btn_add_project.uploadcare-widget-button-open:before {
      content: "\f067"; }
  @media (max-width: 1240px) {
    .cmv_platform .btn-oval-sm, .cmv_platform .uploadcare-widget-button-open {
      padding: 0;
      height: 38px;
      width: 38px;
      position: relative; }
      .cmv_platform .btn-oval-sm:before, .cmv_platform .uploadcare-widget-button-open:before {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        padding: 0; }
      .cmv_platform .btn-oval-sm span, .cmv_platform .uploadcare-widget-button-open span {
        display: none; } }
  .cmv_platform .btn-oval-sm:hover, .cmv_platform .uploadcare-widget-button-open:hover, .cmv_platform .btn-oval-sm:active, .cmv_platform .uploadcare-widget-button-open:active, .cmv_platform .btn-oval-sm:focus, .cmv_platform .uploadcare-widget-button-open:focus {
    color: #1e6ab4; }

.cmv_platform .btn_oval_xs {
  position: relative;
  border: 2px solid #1e6ab4;
  border-radius: 19px;
  color: #1e6ab4;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 12px 3px 29px;
  display: inline-block; }
  .cmv_platform .btn_oval_xs:before {
    font-family: FontAwesome;
    position: absolute;
    color: #1e6ab4;
    font-size: 16px;
    font-weight: 400; }
  .cmv_platform .btn_oval_xs:hover, .cmv_platform .btn_oval_xs:active, .cmv_platform .btn_oval_xs:focus {
    color: #1e6ab4; }

.cmv_platform .btn_submit {
  padding: 11px 17px;
  background-color: #8abc19;
  border-radius: 20px;
  color: white;
  font-size: 15px;
  font-weight: 500;
  margin-top: 27px; }

.cmv_platform .btn-success-blank {
  border: 2px solid #dbebb9;
  border-radius: 50px;
  color: #89bc17;
  line-height: normal;
  padding: 7px 15px 7px;
  text-transform: none;
  font-size: 13px;
  font-weight: 500; }

/* ---------------------------------------------------------
   Circles
   ---------------------------------------------------------*/
.circle-xs {
  width: 30px;
  height: 30px;
  background-color: #e8ebec;
  position: relative;
  border-radius: 50%;
  text-indent: 1px;
  text-align: center;
  display: inline-block; }
  .circle-xs .fa {
    position: absolute !important;
    top: 50% !important;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #1e3948;
    font-size: 17px;
    font-weight: 400; }

.circle-sm {
  width: 40px;
  height: 40px;
  background-color: #e8ebec;
  position: relative;
  border-radius: 50%;
  text-indent: 1px;
  text-align: center;
  display: inline-block; }
  .circle-sm .fa {
    position: absolute !important;
    top: 50% !important;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #1e3948;
    font-size: 17px;
    font-weight: 400; }

.circle-md {
  width: 50px;
  height: 50px;
  background-color: #e8ebec;
  position: relative;
  border-radius: 50%;
  text-indent: 1px;
  text-align: center;
  display: inline-block; }
  .circle-md .fa {
    position: absolute !important;
    top: 50% !important;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #1e3948;
    font-size: 18px;
    font-weight: 400; }

/* ---------------------------------------------------------
   Custom
   ---------------------------------------------------------*/
.col-wrap {
  width: 100%;
  margin: 0 auto; }
  .col-wrap .col-left {
    float: left;
    width: 50%; }
  .col-wrap .col-right {
    float: left;
    width: 50%; }

.col-wrap {
  width: 100%;
  margin: 0 auto; }
  .col-wrap .col_first {
    float: left;
    width: 50%; }
  .col-wrap .col_second {
    float: left;
    width: 50%; }

.grid .item {
  float: left; }

.underline {
  text-decoration: underline; }

em, i {
  font-style: italic; }

u {
  text-decoration: underline; }

.text_right {
  text-align: right; }

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

.fa {
  display: inline-block; }

i {
  display: inline-block; }

/* ==========================================================================
   Common style
   ========================================================================== */
.top-heading .col h2 {
  font-size: 24px;
  text-align: left; }

.top-heading .col p {
  color: #8e9ca3;
  font-size: 15px;
  font-weight: 300; }
  .top-heading .col p span {
    font-weight: 500; }

.top-heading .col:nth-child(1) {
  text-align: right; }
  @media (max-width: 767px) {
    .top-heading .col:nth-child(1) p {
      text-align: left;
      font-size: 12px;
      padding: 0;
      margin: 0;
      margin-bottom: 1px; } }

.top-heading .col:nth-child(2) {
  padding-top: 31px; }
  @media (max-width: 767px) {
    .top-heading .col:nth-child(2) {
      padding-top: 11px; } }
  .top-heading .col:nth-child(2) h2 {
    display: inline-block;
    float: left;
    margin-right: 14px; }
  .top-heading .col:nth-child(2) .circle-xs {
    position: relative;
    top: -5px; }
    @media (max-width: 767px) {
      .top-heading .col:nth-child(2) .circle-xs {
        float: right; } }

.top-heading + hr {
  margin-top: 5px; }

.sorting {
  margin-bottom: 20px; }
  .sorting .sort-by {
    float: right; }
    .sorting .sort-by a i {
      color: #bbc3c8;
      font-size: 16px;
      font-weight: 400; }
    .sorting .sort-by a.active i {
      color: #1e3948; }

.box-editor {
  margin-bottom: 30px;
  background-color: white;
  border: 1px solid #e8ebec;
  border-radius: 10px;
  box-shadow: 0 2px 0 #e8ebec;
  overflow: hidden; }
  .box-editor .body {
    padding: 23px 25px; }
    .box-editor .body textarea {
      color: #1e3948;
      font-size: 15px;
      font-weight: 300;
      line-height: 23px; }
    .box-editor .body .btn {
      border-radius: 17px !important;
      padding: 9px 15px 8px;
      border: none;
      letter-spacing: normal;
      text-transform: none;
      line-height: normal;
      color: white; }
      .box-editor .body .btn.btn-success {
        background-color: #8abc19;
        border: none;
        color: #fff; }
    .box-editor .body ::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #1e3948;
      opacity: 1; }
    .box-editor .body :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #1e3948;
      opacity: 1; }
    .box-editor .body ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #1e3948;
      opacity: 1; }
    .box-editor .body :-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #1e3948;
      opacity: 1; }
  .box-editor .foot {
    padding: 23px 25px; }
    .box-editor .foot .title {
      line-height: 25px;
      color: #1e3948;
      font-size: 15px;
      font-weight: 500; }
    .box-editor .foot .subtitle {
      color: #8e9ca3;
      font-size: 13px;
      font-weight: 300;
      line-height: 23px;
      margin-bottom: 7px; }
    .box-editor .foot .btn {
      border-radius: 17px !important;
      padding: 9px 15px 8px;
      border: none;
      letter-spacing: normal;
      text-transform: none;
      line-height: normal;
      color: white;
      margin-bottom: 10px; }
      .box-editor .foot .btn.btn-success {
        background-color: #8abc19;
        border: none;
        color: #fff; }
  .box-editor .chbx-wrap label {
    color: #1e3948;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    padding-left: 5px;
    position: relative;
    top: 0; }
  .box-editor.new_message .body {
    min-height: 152px; }
  .box-editor.new_message textarea {
    color: #8e9ca3;
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
    height: 77px;
    margin: 0;
    padding: 7px; }
  .box-editor.new_message ::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #8e9ca3;
    opacity: 1; }
  .box-editor.new_message :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #8e9ca3;
    opacity: 1; }
  .box-editor.new_message ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #8e9ca3;
    opacity: 1; }
  .box-editor.new_message :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #8e9ca3;
    opacity: 1; }

/* ==========================================================================
   Media queries
   ========================================================================== */
.mobile-visible {
  display: none; }

.mobile-hidden {
  display: inline-block; }

@media (max-width: 767px) {
  .mobile-visible {
    display: inline-block; }
  .mobile-hidden {
    display: none; }
  .cmv_platform #wrapper #header {
    border: none; }
  .cmv_platform #wrapper > .container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0; }
    .cmv_platform #wrapper > .container main {
      background-color: #fbfbfb;
      border: medium none;
      border-radius: 0; } }

/* marker and popups positioning */
.markers li.popup-holder .popup {
  left: -40px !important;
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important; }
  @media (max-width: 991px) {
    .markers li.popup-holder .popup {
      left: -90px !important;
      -webkit-transform: translateX(0) !important;
      transform: translateX(0) !important; } }

.markers li.popup-holder .popup::before {
  left: 8.5%;
  -webkit-transform: translateX(0);
  transform: translateX(0); }
  @media (max-width: 991px) {
    .markers li.popup-holder .popup::before {
      left: 24.5%;
      -webkit-transform: translateX(0);
      transform: translateX(0); } }

.markers li.popup-holder a.open.marker1 + .popup {
  left: -20px !important; }
  @media (max-width: 991px) {
    .markers li.popup-holder a.open.marker1 + .popup {
      left: -83px !important; } }

.markers li.popup-holder:nth-child(4) {
  left: 24.7% !important;
  top: 32% !important; }
  @media (max-width: 991px) {
    .markers li.popup-holder:nth-child(4) {
      left: 25% !important;
      top: 29.5% !important; } }

.markers li.popup-holder:nth-last-child(1) .popup,
.markers li.popup-holder:nth-last-child(3) .popup,
.markers li.popup-holder:nth-last-child(4) .popup {
  left: -360px !important;
  -webkit-transform: translateX(0px) !important;
  transform: translateX(0px) !important; }

.markers li.popup-holder:nth-last-child(1) .popup::before,
.markers li.popup-holder:nth-last-child(3) .popup::before,
.markers li.popup-holder:nth-last-child(4) .popup::before {
  left: 87.5%;
  -webkit-transform: translateX(0);
  transform: translateX(0); }

@media (max-width: 991px) {
  .markers li.popup-holder:nth-last-child(1) .popup,
  .markers li.popup-holder:nth-last-child(3) .popup,
  .markers li.popup-holder:nth-last-child(4) .popup {
    left: -260px !important;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important; }
  .markers li.popup-holder:nth-last-child(1) .popup::before,
  .markers li.popup-holder:nth-last-child(3) .popup::before,
  .markers li.popup-holder:nth-last-child(4) .popup::before {
    left: 72.5%;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.modal .close {
  position: absolute;
  top: -15px;
  right: -15px;
  color: #000;
  background: white;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  opacity: 1;
  border-radius: 15px;
  font-weight: 900;
  font-size: 19px;
  outline: none !important;
  border: 4px solid #000;
  z-index: 10000; }
  .modal .close i, .modal .close span {
    position: relative;
    top: 2px; }

.modal .modal-content {
  border: none; }

.modal.dark .modal-header {
  background: #000; }
  .modal.dark .modal-header h4, .modal.dark .modal-header h5 {
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin: 0 !important;
    font-size: 25px; }

.modal .modal-dialog {
  z-index: 10000; }

.cmv_platform .form-horizontal .form-group {
  margin-left: 0;
  margin-right: 0; }

@media (max-width: 767px) {
  .modal .modal-dialog {
    margin: 0; } }

.modal .modal-dialog .modal-content {
  background-color: white;
  border: 4px solid #1a6db4;
  border-radius: 10px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); }
  @media (max-width: 767px) {
    .modal .modal-dialog .modal-content {
      border: 0;
      border-top: 4px solid #1a6db4;
      border-bottom: 4px solid #1a6db4;
      border-radius: 0;
      padding-bottom: 15px; } }
  .modal .modal-dialog .modal-content .modal-header {
    border-bottom: 2px solid #e8ebec;
    padding: 15px; }
    .modal .modal-dialog .modal-content .modal-header h4 {
      font-size: 24px;
      font-weight: 500; }
    .modal .modal-dialog .modal-content .modal-header button.close {
      background-color: #e8ebec;
      border: 0 none;
      cursor: pointer;
      padding: 0;
      margin: 0;
      opacity: 1; }
  .modal .modal-dialog .modal-content .modal-body {
    padding: 0; }
    .modal .modal-dialog .modal-content .modal-body p {
      font-size: 15px;
      font-weight: 300;
      line-height: 25px; }

#invite_member_modal .modal-dialog {
  max-width: 738px;
  width: 100%; }
  #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list {
    padding-top: 0; }
    #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item {
      width: 100%;
      margin-bottom: 15px !important; }
      #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item:nth-child(n) {
        margin-right: 0;
        margin-bottom: 0; }
      #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item:nth-child(1n) {
        margin-right: 0;
        margin-bottom: 0; }
      @media (max-width: 767px) {
        #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item {
          width: 100%; }
          #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item:nth-child(n) {
            margin-right: 0;
            margin-bottom: 0; }
          #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item:nth-child(1n) {
            margin-right: 0;
            margin-bottom: 0; } }
      #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item .inner_right {
        float: left; }
        #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item .inner_right p.title {
          color: #8e9ca3;
          font-size: 12px;
          line-height: 19px;
          font-weight: 500;
          margin: -7px 0 0 0;
          padding: 0; }
        #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item .inner_right p.name {
          color: #1e3948;
          font-size: 18px;
          font-weight: 500;
          line-height: 4px;
          margin: 8px 0 3px;
          padding: 0; }
      #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item .btn_remove {
        float: right;
        margin-right: 15px;
        margin-top: 20px; }
        #invite_member_modal .modal-dialog .modal-content .modal-body .panel_team_list .item .btn_remove i {
          color: #f24a44;
          font-size: 16px; }
  #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap {
    width: 100%;
    margin: 0 auto; }
    #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col {
      padding: 30px;
      padding-bottom: 35px; }
    #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left {
      border-right: 1px solid #e8ebec; }
      #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels .form-group {
        margin-bottom: 0; }
        #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels .form-group label {
          float: left;
          margin-right: 14px; }
        #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels .form-group .input-text {
          color: #bbc3c8;
          font-size: 15px;
          font-weight: 400;
          border: 0;
          box-shadow: none;
          border-bottom: 1px solid #e8ebec;
          padding-bottom: 3px;
          padding-top: 12px;
          width: calc(100% - 64px); }
        #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels .form-group .btn_add_person {
          margin-top: 10px;
          margin-bottom: 10px;
          float: right; }
          #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels .form-group .btn_add_person:before {
            content: "\f067";
            left: 11px;
            top: 3px; }
          @media (max-width: 767px) {
            #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels .form-group .btn_add_person {
              float: left;
              top: -1px;
              margin-bottom: 15px; } }
      #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels textarea {
        max-width: 305px;
        width: 100%;
        height: 144px;
        background-color: white;
        border: 1px solid #e8ebec;
        border-radius: 5px;
        box-shadow: inset 0 2px 0 #e8ebec;
        resize: none;
        clear: both;
        padding: 10px;
        margin-bottom: 15px; }
      #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels ::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #e8ebec;
        opacity: 1; }
      #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels :-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #e8ebec;
        opacity: 1; }
      #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels ::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #e8ebec;
        opacity: 1; }
      #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left .form-circle-labels :-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #e8ebec;
        opacity: 1; }
    @media (max-width: 767px) {
      #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col {
        float: none; }
      #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e8ebec; }
      #invite_member_modal .modal-dialog .modal-content .modal-body .col-wrap .col-right {
        width: 100%; } }

#delivery-date-modal .modal-dialog {
  max-width: 865px;
  width: 100%; }
  #delivery-date-modal .modal-dialog .modal-content .modal-header {
    background-color: #1a6db4;
    border-bottom: 2px solid #e8ebec; }
    #delivery-date-modal .modal-dialog .modal-content .modal-header h4 {
      color: white; }
    #delivery-date-modal .modal-dialog .modal-content .modal-header .close {
      right: 15px;
      top: 13px;
      background: #1b5d93; }
      #delivery-date-modal .modal-dialog .modal-content .modal-header .close i {
        color: white; }
  #delivery-date-modal .modal-dialog .modal-content .modal-body {
    padding: 30px 60px 50px; }
    @media (max-width: 767px) {
      #delivery-date-modal .modal-dialog .modal-content .modal-body {
        padding: 0;
        padding-bottom: 15px; } }
    @media (max-width: 767px) {
      #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper {
        padding: 15px; } }
    #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(1) p {
      color: #1e3948;
      font-size: 18px;
      font-weight: 300;
      line-height: 30px; }
    #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap {
      max-width: 282px;
      width: 100%;
      float: right; }
      #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-left {
        width: 200px;
        padding-right: 17px; }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-left p {
          font-size: 15px;
          font-weight: 300;
          line-height: 24px;
          text-align: right; }
      #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right {
        width: 82px;
        /**
                  * Function to generate procentual progress classes
                  * .p-1 1% -> p-100 100%
                  **/ }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .avatar-container {
          position: relative;
          display: block;
          border-radius: 50%;
          height: 80px;
          width: 80px;
          padding: 0;
          margin: 0 auto;
          border: none;
          background: #1e3948;
          border: 2px solid white;
          float: right; }
          #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .avatar-container span.bg-cricle {
            background: white none repeat scroll 0 0;
            border-radius: 50%;
            display: block;
            height: 64px;
            left: 50%;
            position: relative;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: 64px;
            line-height: 67px;
            text-align: center;
            font-size: 18px;
            font-weight: 500; }
            #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .avatar-container span.bg-cricle:after {
              background: #1e3948 none repeat scroll 0 0;
              content: "";
              height: 11px;
              left: 30px;
              position: absolute;
              top: -8px;
              width: 2px; }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-1 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(356.4deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(93.6deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-2 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(352.8deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(97.2deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-3 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(349.2deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(100.8deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-4 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(345.6deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(104.4deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-5 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(342deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(108deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-6 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(338.4deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(111.6deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-7 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(334.8deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(115.2deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-8 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(331.2deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(118.8deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-9 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(327.6deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(122.4deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-10 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(324deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(126deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-11 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(320.4deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(129.6deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-12 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(316.8deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(133.2deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-13 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(313.2deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(136.8deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-14 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(309.6deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(140.4deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-15 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(306deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(144deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-16 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(302.4deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(147.6deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-17 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(298.8deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(151.2deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-18 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(295.2deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(154.8deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-19 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(291.6deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(158.4deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-20 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(288deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(162deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-21 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(284.4deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(165.6deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-22 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(280.8deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(169.2deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-23 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(277.2deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(172.8deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-24 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(273.6deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(176.4deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-25 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(top, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(180deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-26 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(266.4deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(183.6deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-27 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(262.8deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(187.2deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-28 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(259.2deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(190.8deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-29 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(255.6deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(194.4deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-30 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(252deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(198deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-31 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(248.4deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(201.6deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-32 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(244.8deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(205.2deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-33 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(241.2deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(208.8deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-34 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(237.6deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(212.4deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-35 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(234deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(216deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-36 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(230.4deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(219.6deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-37 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(226.8deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(223.2deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-38 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(223.2deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(226.8deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-39 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(219.6deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(230.4deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-40 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(216deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(234deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-41 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(212.4deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(237.6deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-42 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(208.8deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(241.2deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-43 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(205.2deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(244.8deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-44 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(201.6deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(248.4deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-45 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(198deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(252deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-46 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(194.4deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(255.6deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-47 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(190.8deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(259.2deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-48 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(187.2deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(262.8deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-49 {
          background-image: -webkit-linear-gradient(left, #1e3948 50%, transparent 50%, transparent), -webkit-linear-gradient(183.6deg, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #1e3948 50%, transparent 50%, transparent), linear-gradient(266.4deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-50 {
          background-image: -webkit-linear-gradient(right, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-90deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-51 {
          background-image: -webkit-linear-gradient(176.4deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-86.4deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-52 {
          background-image: -webkit-linear-gradient(172.8deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-82.8deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-53 {
          background-image: -webkit-linear-gradient(169.2deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-79.2deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-54 {
          background-image: -webkit-linear-gradient(165.6deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-75.6deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-55 {
          background-image: -webkit-linear-gradient(162deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-72deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-56 {
          background-image: -webkit-linear-gradient(158.4deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-68.4deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-57 {
          background-image: -webkit-linear-gradient(154.8deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-64.8deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-58 {
          background-image: -webkit-linear-gradient(151.2deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-61.2deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-59 {
          background-image: -webkit-linear-gradient(147.6deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-57.6deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-60 {
          background-image: -webkit-linear-gradient(144deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-54deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-61 {
          background-image: -webkit-linear-gradient(140.4deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-50.4deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-62 {
          background-image: -webkit-linear-gradient(136.8deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-46.8deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-63 {
          background-image: -webkit-linear-gradient(133.2deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-43.2deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-64 {
          background-image: -webkit-linear-gradient(129.6deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-39.6deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-65 {
          background-image: -webkit-linear-gradient(126deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-36deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-66 {
          background-image: -webkit-linear-gradient(122.4deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-32.4deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-67 {
          background-image: -webkit-linear-gradient(118.8deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-28.8deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-68 {
          background-image: -webkit-linear-gradient(115.2deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-25.2deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-69 {
          background-image: -webkit-linear-gradient(111.6deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-21.6deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-70 {
          background-image: -webkit-linear-gradient(108deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-18deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-71 {
          background-image: -webkit-linear-gradient(104.4deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-14.4deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-72 {
          background-image: -webkit-linear-gradient(100.8deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-10.8deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-73 {
          background-image: -webkit-linear-gradient(97.2deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-7.2deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-74 {
          background-image: -webkit-linear-gradient(93.6deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(-3.6deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-75 {
          background-image: -webkit-linear-gradient(bottom, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(0deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-76 {
          background-image: -webkit-linear-gradient(86.4deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(3.6deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-77 {
          background-image: -webkit-linear-gradient(82.8deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(7.2deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-78 {
          background-image: -webkit-linear-gradient(79.2deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(10.8deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-79 {
          background-image: -webkit-linear-gradient(75.6deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(14.4deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-80 {
          background-image: -webkit-linear-gradient(72deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(18deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-81 {
          background-image: -webkit-linear-gradient(68.4deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(21.6deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-82 {
          background-image: -webkit-linear-gradient(64.8deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(25.2deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-83 {
          background-image: -webkit-linear-gradient(61.2deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(28.8deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-84 {
          background-image: -webkit-linear-gradient(57.6deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(32.4deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-85 {
          background-image: -webkit-linear-gradient(54deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(36deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-86 {
          background-image: -webkit-linear-gradient(50.4deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(39.6deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-87 {
          background-image: -webkit-linear-gradient(46.8deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(43.2deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-88 {
          background-image: -webkit-linear-gradient(43.2deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(46.8deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-89 {
          background-image: -webkit-linear-gradient(39.6deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(50.4deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-90 {
          background-image: -webkit-linear-gradient(36deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(54deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-91 {
          background-image: -webkit-linear-gradient(32.4deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(57.6deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-92 {
          background-image: -webkit-linear-gradient(28.8deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(61.2deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-93 {
          background-image: -webkit-linear-gradient(25.2deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(64.8deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-94 {
          background-image: -webkit-linear-gradient(21.6deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(68.4deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-95 {
          background-image: -webkit-linear-gradient(18deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(72deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-96 {
          background-image: -webkit-linear-gradient(14.4deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(75.6deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-97 {
          background-image: -webkit-linear-gradient(10.8deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(79.2deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-98 {
          background-image: -webkit-linear-gradient(7.2deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(82.8deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-99 {
          background-image: -webkit-linear-gradient(3.6deg, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(86.4deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap .col-right .p-100 {
          background-image: -webkit-linear-gradient(left, #e8ebec 50%, transparent 50%, transparent), -webkit-linear-gradient(right, #e8ebec 50%, #1e3948 50%, #1e3948);
          background-image: linear-gradient(90deg, #e8ebec 50%, transparent 50%, transparent), linear-gradient(270deg, #e8ebec 50%, #1e3948 50%, #1e3948); }
      @media (max-width: 767px) {
        #delivery-date-modal .modal-dialog .modal-content .modal-body .timer-wrapper .col:nth-child(2) .col-wrap {
          margin: 0 auto;
          float: none; } }
    #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider {
      margin-top: 20px;
      margin-bottom: 35px; }
      #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item {
        background-color: white;
        border: 1px solid #e8ebec;
        border-radius: 5px;
        box-shadow: 0 2px 0 #e8ebec;
        padding-bottom: 23px; }
        @media (min-width: 769px) {
          #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item {
            width: 31.6666666667%;
            float: left;
            margin-bottom: 0 !important; }
            #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item:nth-child(n) {
              margin-right: 2.5%;
              margin-bottom: 2.5%; }
            #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item:nth-child(3n) {
              margin-right: 0;
              margin-bottom: 0; } }
        @media (max-width: 767px) {
          #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item {
            margin: 0 7px; } }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item h3 {
          height: 50px;
          line-height: 50px;
          background-color: #89bc17;
          border-radius: 5px 5px 0 0;
          color: white;
          font-size: 19px;
          font-weight: 500;
          text-align: center; }
          @media (max-width: 767px) {
            #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item h3 {
              font-size: 18px;
              height: 45px;
              line-height: 45px; } }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item h5 {
          padding-top: 2px;
          color: #1e3948;
          font-size: 24px;
          font-weight: 500;
          text-align: center; }
          @media (max-width: 767px) {
            #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item h5 {
              font-size: 22px; } }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item hr {
          margin: 18px 0; }
          @media (max-width: 767px) {
            #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item hr {
              margin: 15px 0; } }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item p {
          line-height: 24px;
          color: #1e3948;
          font-size: 15px;
          font-weight: 300;
          text-align: center;
          padding: 0 30px; }
          #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item p span.green {
            color: #8abc19;
            font-size: 15px;
            font-weight: 500; }
          #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item p span.gray {
            color: #8e9ca3;
            font-size: 13px;
            font-weight: 300; }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.btn-oval-sm, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.uploadcare-widget-button-open {
          top: 0;
          float: none;
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
          left: 50%; }
          #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.btn-oval-sm:before, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.uploadcare-widget-button-open:before {
            content: "\f058"; }
          #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.btn-oval-sm:hover, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.uploadcare-widget-button-open:hover {
            border-color: #1a6db4; }
          #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.btn-oval-sm.selected, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.selected.uploadcare-widget-button-open {
            background: #1e6ab4;
            color: white;
            border-color: #1a6db4; }
            #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.btn-oval-sm.selected:before, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.selected.uploadcare-widget-button-open:before {
              color: white; }
          @media (max-width: 1240px) {
            #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.btn-oval-sm, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.uploadcare-widget-button-open {
              padding: 9px 16px 7px 39px;
              position: relative;
              width: auto; }
              #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.btn-oval-sm:before, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.uploadcare-widget-button-open:before {
                left: 23px; }
              #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.btn-oval-sm span, #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider div.item a.uploadcare-widget-button-open span {
                display: inline-block; } }
      #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider.slick-slider .slick-dots {
        line-height: 0;
        text-align: center;
        padding-top: 20px; }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider.slick-slider .slick-dots li button {
          width: 15px;
          height: 15px;
          background-color: #89bc17; }
        #delivery-date-modal .modal-dialog .modal-content .modal-body .pricing-slider.slick-slider .slick-dots li.slick-active button {
          border: 2px solid #c4dd8b;
          background: white; }
    @media (max-width: 767px) {
      #delivery-date-modal .modal-dialog .modal-content .modal-body .notice-wrap {
        padding: 0 20px; } }
    #delivery-date-modal .modal-dialog .modal-content .modal-body .notice-wrap .notice {
      color: #1e3948;
      font-size: 13px;
      font-weight: 300;
      line-height: 22px;
      padding-left: 30px;
      position: relative;
      max-width: 677px;
      width: 100%;
      margin: 0 auto; }
      #delivery-date-modal .modal-dialog .modal-content .modal-body .notice-wrap .notice:before {
        content: "\f05a";
        font-family: FontAwesome;
        left: 3px;
        font-size: 18px;
        position: absolute;
        top: 0;
        color: #1e3948;
        font-weight: 400; }
    #delivery-date-modal .modal-dialog .modal-content .modal-body .btn.btn-success {
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      position: relative;
      margin-top: 20px; }

#landing-modal {
  padding-right: 0 !important; }
  #landing-modal .modal-dialog {
    max-width: 385px;
    width: 100%; }
    @media (max-width: 767px) {
      #landing-modal .modal-dialog {
        max-width: none; } }
    #landing-modal .modal-dialog .modal-content {
      border: 4px solid #1e3948; }
      @media (max-width: 767px) {
        #landing-modal .modal-dialog .modal-content {
          border-radius: 0;
          border: 0;
          border-top: 4px solid #1e3948; } }
      #landing-modal .modal-dialog .modal-content .modal-header {
        background-color: #1a6db4;
        border-bottom: 2px solid #e8ebec;
        border-radius: 4px 4px 0 0; }
        @media (max-width: 767px) {
          #landing-modal .modal-dialog .modal-content .modal-header {
            border-radius: 0; } }
        #landing-modal .modal-dialog .modal-content .modal-header h4 {
          color: white; }
        #landing-modal .modal-dialog .modal-content .modal-header .close {
          right: 15px;
          top: 13px;
          background: #1b5d93; }
          #landing-modal .modal-dialog .modal-content .modal-header .close i {
            color: white; }
      #landing-modal .modal-dialog .modal-content .modal-body {
        padding: 28px; }
        @media (max-width: 767px) {
          #landing-modal .modal-dialog .modal-content .modal-body {
            padding: 23px; } }
        #landing-modal .modal-dialog .modal-content .modal-body .form-group {
          margin-bottom: 15px; }
          #landing-modal .modal-dialog .modal-content .modal-body .form-group label {
            color: #8e9ca3;
            font-size: 15px;
            font-weight: 300;
            padding-bottom: 4px; }
          #landing-modal .modal-dialog .modal-content .modal-body .form-group .std-input {
            background: white;
            font-size: 17px;
            font-weight: 300; }
          #landing-modal .modal-dialog .modal-content .modal-body .form-group:last-of-type {
            text-align: center;
            padding-top: 10px;
            padding-bottom: 15px; }
            #landing-modal .modal-dialog .modal-content .modal-body .form-group:last-of-type .btn-success {
              background-color: #8abc19;
              border-radius: 20px;
              border: 3px solid #8abc19;
              padding: 8px 14px;
              color: white;
              font-size: 15px;
              font-weight: 500; }

.multi-dropdown {
  position: relative; }
  .multi-dropdown .toggler {
    position: absolute;
    top: -21px;
    right: 0;
    cursor: pointer; }
  .multi-dropdown .md-container {
    position: absolute;
    width: 100%;
    padding: 5px;
    margin-top: 3px;
    background-color: #fff;
    text-align: left;
    font-size: 12px;
    border: 1px solid #ddd;
    z-index: 10000; }
    .multi-dropdown .md-container ul {
      margin: 11px 0;
      height: 200px;
      overflow: scroll; }

body.loading #cmv-spinner {
  display: block; }

#cmv-spinner {
  position: fixed;
  top: 0px;
  left: 0;
  background: rgba(244, 244, 244, 0.9);
  z-index: 1000000;
  width: 100%;
  display: none;
  height: 100%; }

#cmv-spinner > span {
  position: absolute;
  display: block;
  width: 30px;
  height: 29px;
  background: black;
  background: url(../../images/code-my-views-square-mark.png) no-repeat;
  background-size: 30px 29px;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -14.5px;
  -webkit-animation: fa-spin .85s infinite linear;
  animation: fa-spin .85s infinite linear; }

.slick-slide {
  outline: 0 !important; }

#top-info {
  padding-top: 25px; }
  #top-info h2 {
    color: #1a1a1a;
    font-size: 30px;
    font-weight: 500;
    float: left; }
    @media (max-width: 767px) {
      #top-info h2 {
        font-size: 27px;
        max-width: 259px;
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        position: relative; }
        #top-info h2:after {
          /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,fbfbfb+100&0+0,1+87 */
          /* FF3.6-15 */
          background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fcfcfc 95%, #fbfbfb 100%);
          /* Chrome10-25,Safari5.1-6 */
          background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fcfcfc 95%, #fbfbfb 100%);
          /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#fbfbfb',GradientType=1 );
          /* IE6-9 */
          width: 100%;
          height: 100%;
          content: '';
          z-index: 2;
          display: block;
          position: absolute;
          height: 100%;
          left: 0;
          top: 0;
          z-index: 2; } }
  #top-info ul.settings {
    float: left;
    margin-left: 20px;
    position: relative;
    top: -1px; }
    @media (max-width: 767px) {
      #top-info ul.settings {
        margin-left: 0; } }
    #top-info ul.settings li {
      float: left; }
      #top-info ul.settings li a {
        width: 30px;
        height: 30px;
        background-color: #e8ebec;
        border-radius: 50px;
        display: inline-block;
        text-align: center;
        -webkit-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        position: relative;
        overflow: hidden; }
        #top-info ul.settings li a .fa {
          color: #1e3948;
          font-size: 17px;
          font-weight: 400; }
    #top-info ul.settings li:nth-child(1) {
      margin-right: 10px; }
      @media (max-width: 767px) {
        #top-info ul.settings li:nth-child(1) {
          margin-right: 7px; } }
      #top-info ul.settings li:nth-child(1) a i {
        position: relative;
        top: 6px; }
    #top-info ul.settings li.staging-site a {
      position: relative; }
      #top-info ul.settings li.staging-site a span {
        color: #1e3948;
        display: inline-block;
        font-size: 13px;
        font-weight: 400;
        left: 23px;
        margin-top: 4px;
        position: absolute;
        text-transform: capitalize;
        top: 3px;
        width: 135px; }
      #top-info ul.settings li.staging-site a:hover {
        width: 165px;
        border-radius: 50px; }
      @media (max-width: 767px) {
        #top-info ul.settings li.staging-site a:hover {
          width: 30px; } }
    #top-info ul.settings li.staging-site a:before {
      content: "\f08e";
      font-family: FontAwesome;
      left: 8px;
      position: absolute;
      top: 5px;
      color: #1e3948;
      font-size: 17px;
      font-weight: 400; }
  #top-info .delivery-date {
    float: right;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 300;
    position: relative;
    top: 11px; }

@media (min-width: 769px) and (max-width: 991px) {
  #top-info .delivery-date {
    float: left;
    top: 0; } }
    @media (max-width: 767px) {
      #top-info .delivery-date {
        display: none; } }
    #top-info .delivery-date span {
      color: #1e3948;
      font-weight: 500; }
    #top-info .delivery-date .fa {
      color: #bbc3c8;
      font-size: 14px;
      font-weight: 400;
      margin-left: 7px;
      cursor: pointer; }
      #top-info .delivery-date .fa:hover {
        background: #FBFBFB;
        color: #1e3948; }
  #top-info .tooltip.bottom {
    max-width: 200px;
    width: 100%; }

i.fa-info-circle.tooltip_box {
  -webkit-transition: 0s linear;
  transition: 0s linear; }
  i.fa-info-circle.tooltip_box:hover {
    color: #1e3948 !important; }

.tooltip.bottom {
  border-radius: 5px;
  border: none;
  opacity: 1; }
  .tooltip.bottom .tooltip-inner {
    color: #e8f0f7;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    padding: 11px 5px;
    background: #1e3948; }
  .tooltip.bottom .tooltip-arrow {
    border-bottom-color: #1e3948;
    left: 0;
    margin-left: -10px;
    top: -2px;
    border-width: 0 10px 10px; }

/* ---------------------------------------------------------
   Header styles
   ---------------------------------------------------------*/
#header {
  background: #fff;
  padding: 69px 0 0;
  border: none;
  margin-bottom: 0;
  position: relative; }
  @media (max-width: 1240px) {
    #header {
      padding: 29px 0 25px; } }
  @media (max-width: 767px) {
    #header {
      padding: 14px 0;
      border-bottom: 1px solid #e5e5e5; } }
  #header.type-2 {
    background: transparent; }
    @media (min-width: 768px) {
      #header.type-2 .navbar-nav > li > a {
        color: rgba(255, 255, 255, 0.5); } }
    @media (min-width: 768px) {
      #header.type-2 .navbar-nav > li.active > a,
      #header.type-2 .navbar-nav > li > a:hover {
        color: #fff; } }
    @media (min-width: 768px) {
      #header.type-2 .navbar-nav > li.active > a:before,
      #header.type-2 .navbar-nav > li > a:hover:before {
        background: #fff; } }
    #header.type-2 .navbar-nav > li.active > a .fa,
    #header.type-2 .navbar-nav > li > a:hover .fa {
      color: #fff; }
  #header.type-3 {
    background: transparent; }
    #header.type-3 .navbar-nav {
      border-bottom-color: #d2d8df; }
  @media (max-width: 767px) {
    #header .navbar-header {
      padding: 0 15px; } }
  #header .navbar-brand {
    padding: 0;
    width: 215px;
    height: 31px;
    margin: 0 10px 0 0; }
    @media (max-width: 991px) {
      #header .navbar-brand {
        width: 176px;
        height: 25px; } }
  #header .btn {
    margin: 2px 0 0 38px; }
    @media (max-width: 991px) {
      #header .btn {
        margin-left: 15px;
        font-size: 12px; } }

.navbar-toggle {
  margin: 0;
  border: none;
  background: none !important;
  width: 42px;
  height: 32px; }
  .navbar-toggle .icon-bar {
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -ms-transform: all 0.25s ease;
    transition: all 0.25s ease; }
  .navbar-toggle[aria-expanded="true"] .icon-bar {
    position: absolute;
    top: 15px;
    left: 8px;
    right: 8px;
    margin: 0;
    width: auto; }
    .navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(3) {
      opacity: 0; }
    .navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(4) {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }

@media (min-width: 768px) {
  .navbar-collapse {
    text-align: right;
    padding: 0; } }

@media (max-width: 767px) {
  .navbar-collapse {
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30; } }

.navbar-nav {
  font: 600 18px/22px "Archer", serif;
  border-bottom: 1px solid #e5e5e5;
  float: none;
  display: inline-block;
  vertical-align: top; }
  @media (min-width: 992px) {
    .navbar-nav {
      padding-top: 9px; } }
  @media (max-width: 991px) {
    .navbar-nav {
      font-size: 14px;
      padding-top: 6px; } }
  @media (max-width: 767px) {
    .navbar-nav {
      display: block;
      margin-top: 0;
      padding-top: 0; } }
  .navbar-nav > li {
    margin: 0 0 -1px 63px;
    position: static; }
    @media (max-width: 1240px) {
      .navbar-nav > li {
        margin-left: 30px; } }
    @media (max-width: 991px) {
      .navbar-nav > li {
        margin-left: 10px; } }
    @media (max-width: 767px) {
      .navbar-nav > li {
        margin-left: 0;
        border-top: 1px solid #e5e5e5; } }
    .navbar-nav > li:first-child {
      margin-left: 0; }
    .navbar-nav > li > a:hover:before,
    .navbar-nav > li.open > a:before,
    .navbar-nav > li.active > a:before {
      opacity: 1; }
    @media (min-width: 768px) {
      .navbar-nav > li .dropdown-menu {
        margin-top: -2px; } }
    .navbar-nav > li > a {
      color: #000;
      padding: 0 0 19px; }
      @media (max-width: 767px) {
        .navbar-nav > li > a {
          padding: 10px 20px; } }
      .navbar-nav > li > a:before {
        -webkit-transition: all, 0.3s, ease-in;
        transition: all, 0.3s, ease-in;
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: #1e6ab4;
        opacity: 0; }
        @media (max-width: 767px) {
          .navbar-nav > li > a:before {
            display: none; } }
      .navbar-nav > li > a .fa {
        color: #1e3948;
        font-size: 18px;
        margin-left: 7px;
        top: -1px; }
        @media (max-width: 991px) {
          .navbar-nav > li > a .fa {
            margin-left: 4px; } }

.dropdown-menu {
  right: 0;
  border-radius: 0;
  font-weight: 700;
  font-size: 18px;
  padding: 23px 0 21px; }
  @media (max-width: 991px) {
    .dropdown-menu {
      font-size: 16px; } }
  @media (max-width: 767px) {
    .dropdown-menu {
      padding: 0; } }
  @media (max-width: 767px) {
    .dropdown-menu .container {
      padding: 0; } }

@media (max-width: 991px) and (min-width: 768px) {
  .dropdown-menu .nav-pills {
    margin: 0 -10px; } }
  .dropdown-menu .nav-pills > li {
    margin: 10px 0 10px 62px; }
    @media (max-width: 1240px) {
      .dropdown-menu .nav-pills > li {
        margin-left: 30px; } }

@media (max-width: 991px) and (min-width: 768px) {
  .dropdown-menu .nav-pills > li {
    margin: 5px 10px; } }
    @media (max-width: 767px) {
      .dropdown-menu .nav-pills > li {
        float: none;
        margin: 0;
        border-top: 1px solid #e5e5e5; } }
    @media (min-width: 992px) {
      .dropdown-menu .nav-pills > li:first-child {
        margin-left: 0; } }
    .dropdown-menu .nav-pills > li > a {
      color: #fff;
      padding: 0;
      border-radius: 0;
      background: none; }
      @media (max-width: 767px) {
        .dropdown-menu .nav-pills > li > a {
          color: #000;
          padding: 10px 20px;
          text-align: center; } }
      .dropdown-menu .nav-pills > li > a:hover {
        color: #1e6ab4; }

.dropdown-white {
  background: #fff;
  width: 230px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  padding: 9px 0 0; }
  @media (max-width: 767px) {
    .dropdown-white {
      padding: 0; } }
  .dropdown-white:before {
    height: 0;
    width: 0;
    border-bottom: 13px solid #fff;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom-width: 11px;
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50px; }
    @media (max-width: 767px) {
      .dropdown-white:before {
        display: none; } }
  .dropdown-white > li:last-child {
    border-radius: 0 0 10px 10px;
    overflow: hidden; }
  .dropdown-white > li > a {
    color: #1e3948;
    font-weight: 500;
    padding: 8px 15px; }
    .dropdown1 .dropdown-white > li > a {
      padding: 8px 38px; }
    .dropdown-white > li > a.create-new {
      padding: 12px 38px; }
  .dropdown-white .divider {
    background-color: #efefef;
    margin: 0; }
  .dropdown-white .create-new {
    background: #f9f9f9;
    position: relative; }
    .dropdown-white .create-new:before {
      color: #1e3948;
      content: '\f067';
      font-family: FontAwesome;
      font-size: 15px;
      left: 14px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transition: color 0s ease 0s, all 0.3s ease 0s, all 0s ease-in-out 0s;
      transition: color 0s ease 0s, all 0.3s ease 0s, all 0s ease-in-out 0s; }
    .dropdown-white .create-new:hover:before {
      color: #1e6ab4; }

.drop-right {
  left: auto;
  right: 0; }
  .drop-right:before {
    left: auto;
    right: 50px; }

.dropdown1 .dropdown-menu .current a:before {
  content: '\f00c';
  font: 15px/1 'FontAwesome';
  color: #96d019;
  float: left;
  margin: 2px 0 0 -25px; }

@media (min-width: 769px) and (max-width: 991px) {
  .dropdown1 .dropdown-menu {
    left: 0;
    top: 45px; }
    .dropdown1 .dropdown-menu:before {
      left: 25px;
      right: auto; } }

.dropdown-toggle[aria-expanded="true"] .fa-angle-down {
  top: 0; }
  .dropdown-toggle[aria-expanded="true"] .fa-angle-down:before {
    content: '\f106'; }

.dropdown-toggle .fa-angle-down {
  font-size: 21px;
  position: relative;
  top: 2px; }

@media (max-width: 991px) {
  .user-drop .dropdown-toggle .name {
    display: none; } }

@media (min-width: 769px) and (max-width: 991px) {
  .user-drop .dropdown-menu.dropdown-white.drop-right {
    right: -20px;
    top: 53px; }
    .user-drop .dropdown-menu.dropdown-white.drop-right:before {
      left: auto;
      right: 29px; } }

@media (min-width: 769px) and (max-width: 991px) {
  .dropdown-white {
    font-size: 14px; } }

.avatar {
  margin-right: 5px;
  box-shadow: 0 0 0 1px #e8e8e8; }

.notifications > a {
  position: relative; }

.notifications .badge {
  background: #f24a44;
  font-size: 11px;
  position: absolute;
  right: -2px;
  top: -4px;
  font-weight: 400;
  padding: 3px 4px; }
  @media (max-width: 767px) {
    .notifications .badge {
      right: auto;
      left: 43px;
      top: 4px; } }

.notifications .fa-bell {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 2px solid #1e3948;
  border-radius: 50%;
  text-align: center;
  padding: 8px 2px; }

/* ---------------------------------------------------------
   Footer styles - cmv platform
   ---------------------------------------------------------*/
.footer {
  background-color: #fbfbfb;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #e8ebec;
  padding: 22px 40px 27px;
  margin-top: 10px; }
  .footer .logo_footer {
    float: left;
    margin-right: 3.85%;
    width: 85px;
    height: 26px;
    margin-top: 4px; }
  .footer p.in_touch {
    font-size: 14px;
    font-weight: 300;
    color: #bbc3c8;
    float: left;
    position: relative;
    top: 10px; }
    .footer p.in_touch a {
      color: #1e6ab4;
      text-decoration: underline; }
  .footer .btn_back_to_top {
    color: #bbc3c8;
    font-size: 14px;
    font-weight: 300;
    float: right;
    height: 30px;
    line-height: 30px; }
    .footer .btn_back_to_top span.circle-xs {
      margin-right: 11px; }
    .footer .btn_back_to_top span.text {
      display: inline-block;
      position: relative;
      top: -9px; }

@media (max-width: 991px) {
  .footer {
    padding: 25px 20px; }
    .footer .logo_footer {
      display: block;
      float: none;
      height: auto;
      margin: 0 auto;
      width: 85px; }
    .footer p.in_touch {
      float: none;
      padding: 15px 0;
      text-align: center;
      top: 0;
      line-height: 28px;
      margin-bottom: 0; }
    .footer .btn_back_to_top {
      color: #bbc3c8;
      float: none;
      font-size: 14px;
      font-weight: 300;
      height: auto;
      width: 83px;
      margin: 0 auto;
      display: block;
      text-align: center; }
      .footer .btn_back_to_top span.circle-xs {
        margin-right: 0; } }

/* ---------------------------------------------------------
   Footer styles - marketing site
   ---------------------------------------------------------*/
#footer {
  background: #222428;
  padding: 80px 0 68px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5); }
  @media (max-width: 767px) {
    #footer {
      padding: 43px 0;
      font-size: 12px;
      line-height: 18px; } }
  #footer .logo-holder {
    margin: -9px 0 27px; }
    #footer .logo-holder .logo {
      display: inline-block;
      vertical-align: top; }
      @media (max-width: 767px) {
        #footer .logo-holder .logo {
          width: 190px; } }
    #footer .logo-holder .copyright {
      display: inline-block;
      vertical-align: bottom;
      font-weight: 700;
      margin-left: 14px;
      font-size: 16px; }
  #footer .foo-links {
    font-weight: 500;
    margin-left: -17px; }
    @media (max-width: 991px) {
      #footer .foo-links {
        margin-bottom: 40px; } }
    @media (max-width: 767px) {
      #footer .foo-links {
        margin-left: -10px; } }
    #footer .foo-links li {
      padding: 0 17px;
      position: relative; }
      @media (max-width: 767px) {
        #footer .foo-links li {
          padding: 0 10px; } }
      #footer .foo-links li:first-child:before {
        display: none; }
      #footer .foo-links li:before {
        content: '';
        width: 2px;
        height: 24px;
        background: #393a3e;
        position: absolute;
        top: -2px;
        left: 0; }
    #footer .foo-links a {
      color: rgba(255, 255, 255, 0.4); }
  #footer .footer-nav li {
    margin-bottom: 8px; }
  #footer .title {
    display: block;
    color: #fff;
    font: 700 18px/21px "Archer", serif;
    margin-bottom: 16px; }
  #footer a:not(.btn) {
    color: rgba(255, 255, 255, 0.5); }
    #footer a:not(.btn):hover {
      color: #fff; }
  #footer .state {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 7px;
    position: relative;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e11f1f; }
    #footer .state.online {
      background: #81b23d; }
  #footer .chat-box {
    font-family: "Archer", serif;
    font-size: 16px; }
    @media (max-width: 767px) {
      #footer .chat-box {
        padding-top: 30px; } }
    #footer .chat-box p {
      margin-bottom: 18px; }
    #footer .chat-box .btn {
      padding: 9px 12px; }

/* ---------------------------------------------------------
   Sidebar
   ---------------------------------------------------------*/
.widget {
  margin: 0 21px 15px -15px;
  border-bottom: 1px solid #ccc;
  padding: 15px 34px 29px 50px; }
  @media (max-width: 1240px) {
    .widget {
      margin-right: 0; } }
  @media (max-width: 991px) {
    .widget {
      padding: 15px 0 29px 20px; } }
  @media (max-width: 991px) {
    .widget {
      margin-right: -15px;
      padding-right: 15px; } }
  .widget h2 {
    font-style: italic;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: capitalize; }
  .widget .category-list {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500; }
    .widget .category-list li {
      padding-left: 40px;
      position: relative;
      margin-bottom: 34px; }
      .widget .category-list li:last-child {
        margin-bottom: 0; }
    .widget .category-list .blue a:before {
      background: #1e6ab4; }
    .widget .category-list .green a:before {
      background: #8cc01b; }
    .widget .category-list .gray a:before {
      background: #a0a8b4; }
    .widget .category-list a {
      color: #000;
      display: inline-block;
      vertical-align: top; }
      .widget .category-list a:before {
        content: '';
        position: absolute;
        left: 0;
        top: 3px;
        width: 14px;
        height: 14px; }
      .widget .category-list a:hover {
        color: #1e6ab4; }
  .widget .authors {
    padding-top: 8px; }
    .widget .authors .media {
      margin-top: 22px; }
      .widget .authors .media:first-child {
        margin-top: 0; }
    .widget .authors .media-left img {
      width: 46px;
      height: 46px; }
    .widget .authors .media-body {
      width: auto; }
      .widget .authors .media-body span {
        display: block; }
      .widget .authors .media-body .author {
        font-weight: 700;
        text-transform: capitalize; }
      .widget .authors .media-body .job {
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase; }

.widget-subscribe {
  border-bottom: none; }
  .widget-subscribe h2 {
    margin-bottom: 12px; }
  .widget-subscribe p {
    margin-bottom: 24px; }
  .widget-subscribe .form-control, .widget-subscribe .mastermind-users .algolia-search input, .mastermind-users .algolia-search .widget-subscribe input {
    border-color: #e6e6e6;
    color: #929292;
    height: 46px;
    background: #e6e6e6;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: none; }
    .widget-subscribe .form-control ::-webkit-input-placeholder, .widget-subscribe .mastermind-users .algolia-search input ::-webkit-input-placeholder, .mastermind-users .algolia-search .widget-subscribe input ::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #929292;
      opacity: 1; }
    .widget-subscribe .form-control :-moz-placeholder, .widget-subscribe .mastermind-users .algolia-search input :-moz-placeholder, .mastermind-users .algolia-search .widget-subscribe input :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #929292;
      opacity: 1; }
    .widget-subscribe .form-control ::-moz-placeholder, .widget-subscribe .mastermind-users .algolia-search input ::-moz-placeholder, .mastermind-users .algolia-search .widget-subscribe input ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #929292;
      opacity: 1; }
    .widget-subscribe .form-control :-ms-input-placeholder, .widget-subscribe .mastermind-users .algolia-search input :-ms-input-placeholder, .mastermind-users .algolia-search .widget-subscribe input :-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #929292;
      opacity: 1; }
  .widget-subscribe .btn-gray {
    width: 207px; }

/* ---------------------------------------------------------
   Dashboard styles
   ---------------------------------------------------------*/
.cmv_platform {
  font-size: 15px;
  color: #1e3948; }
  .cmv_platform #header {
    padding: 37px 0 35px;
    background: transparent; }
    @media (max-width: 767px) {
      .cmv_platform #header {
        padding: 23px 0 20px; } }
    .cmv_platform #header .navbar-brand {
      width: 116px; }
  .cmv_platform h1, .cmv_platform h2, .cmv_platform h3, .cmv_platform h4, .cmv_platform h5, .cmv_platform h6 {
    font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif; }
  @media (max-width: 767px) {
    .cmv_platform .navbar-collapse {
      margin: 0 -15px;
      padding-bottom: 0; } }
  .cmv_platform .navbar-nav {
    border-bottom: none;
    padding: 0 20px 0 0;
    font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    font-weight: 500;
    font-size: 16px; }
    @media (max-width: 1240px) {
      .cmv_platform .navbar-nav {
        font-size: 14px;
        padding-right: 5px; } }
    @media (max-width: 991px) {
      .cmv_platform .navbar-nav {
        padding-right: 0;
        font-size: 13px; } }
    @media (max-width: 767px) {
      .cmv_platform .navbar-nav {
        font-size: 16px;
        margin-bottom: 0; } }
    .cmv_platform .navbar-nav .dropdown1 .dropdown-toggle {
      font-size: 17px; }
    .cmv_platform .navbar-nav .dropdown1 .dropdown-menu > li > a {
      padding-left: 38px; }
    .cmv_platform .navbar-nav > li {
      margin-left: 27px;
      position: relative; }
      @media (max-width: 1240px) {
        .cmv_platform .navbar-nav > li {
          margin-left: 17px; } }
      @media (max-width: 767px) {
        .cmv_platform .navbar-nav > li {
          margin-left: 0;
          text-align: left; } }
      .cmv_platform .navbar-nav > li > a {
        padding-bottom: 0;
        background: transparent !important;
        color: #1e3948; }
        @media (max-width: 767px) {
          .cmv_platform .navbar-nav > li > a {
            padding-bottom: 10px; } }
        .cmv_platform .navbar-nav > li > a:before {
          display: none; }
        @media (max-width: 1240px) {
          .cmv_platform .navbar-nav > li > a .fa {
            color: #cfcfcf;
            font-size: 15px;
            margin-left: 4px; } }
      @media (min-width: 992px) {
        .cmv_platform .navbar-nav > li .dropdown-menu {
          margin-top: 23px;
          border-radius: 10px; } }
  .cmv_platform .app-nav {
    padding-top: 7px; }
    @media (max-width: 1240px) {
      .cmv_platform .app-nav li:first-of-type {
        padding-left: 0;
        margin-left: 0; }
        .cmv_platform .app-nav li:first-of-type a.dropdown-toggle {
          font-size: 14px; } }

@media (max-width: 1240px) and (max-width: 767px) {
  .cmv_platform .app-nav {
    padding-top: 0; }
    .cmv_platform .app-nav > li {
      margin-left: 0;
      padding-left: 10px;
      text-align: left; }
    .cmv_platform .app-nav > li:first-of-type {
      padding-left: 10px;
      margin-left: 0; }
    .cmv_platform .app-nav ul.dropdown-menu.dropdown-white > li {
      padding: 0 5px; } }
  .cmv_platform .navbar-nav > li.user-drop {
    margin-left: 10px;
    text-align: left; }
  .cmv_platform .back-link-wrap {
    border-top: 2px solid #e8e8e8;
    padding-top: 23px;
    font-size: 14px; }
    .cmv_platform .back-link-wrap a {
      color: #b0b0b0; }
      .cmv_platform .back-link-wrap a .fa {
        margin-right: 8px; }

.dashboard-content {
  padding-bottom: 100px; }
  .dashboard-content .project-title {
    font: 700 35px/1 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: middle; }
    @media (max-width: 767px) {
      .dashboard-content .project-title {
        font-size: 28px; } }
  .dashboard-content .top-bar {
    padding: 30px 24px 23px 30px; }
    @media (max-width: 991px) {
      .dashboard-content .top-bar {
        padding: 30px 19px 23px; } }
    @media (max-width: 767px) {
      .dashboard-content .top-bar {
        padding: 30px 19px 16px;
        border-bottom: 1px solid #eee; } }
    .dashboard-content .top-bar .btn-blue-o {
      border-radius: 5px;
      padding: 5px 16px; }
    @media (max-width: 991px) {
      .dashboard-content .top-bar .title-wrap {
        float: none !important;
        margin-bottom: 26px; } }

@media (max-width: 991px) {
  .utils-link {
    text-align: left; } }

.utils-link > li {
  padding: 0; }
  .utils-link > li + li {
    position: relative;
    margin-left: 10px;
    padding: 0 0 0 18px; }
    @media (max-width: 767px) {
      .utils-link > li + li {
        padding: 0 18px 0 0;
        margin: 0 10px 0 0; } }
    .utils-link > li + li:before {
      content: '';
      position: absolute;
      left: 0;
      top: 2px;
      width: 1px;
      height: 28px;
      background: #f1f1f1; }
      @media (max-width: 767px) {
        .utils-link > li + li:before {
          display: none; } }

@media (max-width: 767px) {
  .utils-link .mem {
    display: block;
    margin-bottom: 8px; } }

.utils-link li {
  vertical-align: middle; }

.utils-link .title {
  display: inline-block;
  vertical-align: middle; }
  @media (max-width: 767px) {
    .utils-link .title {
      display: block;
      margin-bottom: 15px; } }

.utils-link .mem-list {
  display: inline-block;
  padding-left: 7px; }
  .utils-link .mem-list li {
    padding: 0 0 0 3px; }
    .utils-link .mem-list li img {
      border-radius: 17px; }
    @media (max-width: 767px) {
      .utils-link .mem-list li {
        padding: 0 5px 5px 0; } }
  .utils-link .mem-list a {
    color: #fff; }

.utils-link a:not(.btn) {
  -webkit-transition: all, 0.3s, ease-in-out;
  transition: all, 0.3s, ease-in-out;
  display: block;
  width: 34px;
  height: 34px;
  font-size: 13px;
  line-height: 34px;
  border-radius: 50%;
  text-align: center;
  text-transform: uppercase; }

.utils-link a.btn-setting {
  background: #e8e8e8;
  color: #1e3948;
  font-size: 18px; }
  .utils-link a.btn-setting:hover {
    background: #d9d9d9; }

.utils-link a.link-add {
  border: 2px solid #e8e8e8;
  color: #8abc19;
  line-height: 32px; }
  .utils-link a.link-add:hover {
    border-color: #d9d9d9; }

@media (min-width: 992px) {
  .two-cols .col-left {
    width: 29%;
    float: left; } }

.two-cols .btn-wrap {
  padding: 30px;
  border-bottom: 3px solid #e8e8e8; }
  .two-cols .btn-wrap .btn-gray2 {
    padding: 4px 23px; }

.two-cols .col-full {
  padding: 20px; }

.two-cols .col-right {
  padding: 20px 18px;
  min-height: 600px; }
  @media (min-width: 992px) {
    .two-cols .col-right {
      width: 71%;
      float: right;
      border-left: 1px solid #ebebeb;
      padding: 33px 26px; } }

.meta-head {
  margin-bottom: 30px; }
  @media (max-width: 991px) {
    .meta-head {
      margin-bottom: 25px; } }
  .meta-head .meta-head-title {
    font-size: 22px; }
  .meta-head .sort-by {
    color: #b0b0b0;
    margin-right: 16px; }
    @media (max-width: 767px) {
      .meta-head .sort-by {
        margin: 7px 0 0; } }
    .meta-head .sort-by > span {
      margin-right: 7px; }
    .meta-head .sort-by a {
      color: #b0b0b0; }
      .meta-head .sort-by a:hover, .meta-head .sort-by a.active {
        color: #1e3948; }

.box-editor {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  margin-bottom: 39px; }
  .box-editor .body {
    padding: 16px 17px;
    min-height: 190px; }
    .box-editor .body .btn {
      padding: 5px 18px; }
  .box-editor .foot {
    padding: 15px 18px;
    background: #fcfcfc;
    color: #b0b0b0;
    border-top: 1px solid #eee; }
    .box-editor .foot .title {
      color: #1e3948;
      font-weight: 500; }
    .box-editor .foot label {
      color: #1e3948;
      font-weight: 500; }
    .box-editor .foot p {
      margin-bottom: 6px; }
    .box-editor .foot .font-sm {
      margin-bottom: 20px; }
  .box-editor .checker {
    margin-right: 5px; }
    .box-editor .checker span {
      border-color: #ebebeb;
      width: 20px;
      height: 20px; }
      .box-editor .checker span:after {
        font-size: 11px; }
      .box-editor .checker span.checked {
        border-color: #337bb8;
        background: #337bb8; }
  .box-editor .check-list {
    margin-bottom: 16px; }
  .box-editor .btn {
    border-radius: 5px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    padding: 5px 12px; }
  .box-editor .form-control, .box-editor .mastermind-users .algolia-search input, .mastermind-users .algolia-search .box-editor input {
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 5px;
    margin-bottom: 13px;
    resize: none;
    color: #1e3948; }
  .box-editor .space {
    height: 33px;
    margin-bottom: 15px; }

.discussion {
  line-height: 1.62; }
  .discussion > li {
    padding: 10px 0 17px;
    margin-top: 0;
    position: relative;
    overflow: visible; }
  .discussion .discussion > li {
    border-top: none;
    padding: 26px 0 0; }
    .discussion .discussion > li:before {
      display: none; }
  .discussion img {
    max-width: none; }
  .discussion .avatar {
    width: 55px; }
    @media (max-width: 767px) {
      .discussion .avatar {
        width: 38px; } }
  .discussion .media .media .avatar {
    width: 45px; }
    @media (max-width: 767px) {
      .discussion .media .media .avatar {
        width: 30px; } }
  .discussion .media-left {
    padding: 1px 17px 1px 1px; }
    @media (max-width: 767px) {
      .discussion .media-left {
        padding-right: 8px; } }
  .discussion .media-heading {
    margin-bottom: 5px; }
    .discussion .media-heading .media-title {
      font-size: 16px;
      font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
      font-weight: 500;
      text-transform: capitalize;
      margin-bottom: 0;
      display: inline-block;
      float: left; }
      @media (max-width: 767px) {
        .discussion .media-heading .media-title {
          font-size: 14px; } }
    .discussion .media-heading .posted {
      float: left;
      color: #b0b0b0;
      font-size: 13px;
      margin-left: 12px;
      position: relative;
      top: -2px; }
    .discussion .media-heading .btn_trash {
      color: #bbc3c8;
      font-size: 16px;
      font-weight: 400;
      position: absolute;
      right: 0; }
  .discussion .msg-body {
    padding-right: 30px; }
    .discussion .msg-body p {
      font-size: 15px;
      font-weight: 300;
      line-height: 24px;
      color: #1e3948; }
      .discussion .msg-body p a {
        color: #1a6db4; }
  .discussion .media-body a[href] {
    word-break: break-all; }
  .discussion p {
    margin-bottom: 0; }
  .discussion .textarea-reply {
    line-height: 24px;
    margin-top: 31px;
    border-color: #eaeaea;
    color: #b0b0b0;
    box-shadow: none;
    padding: 7px 10px 7px 42px; }
    .discussion .textarea-reply ::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #b0b0b0;
      opacity: 1; }
    .discussion .textarea-reply :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #b0b0b0;
      opacity: 1; }
    .discussion .textarea-reply ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #b0b0b0;
      opacity: 1; }
    .discussion .textarea-reply :-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #b0b0b0;
      opacity: 1; }
  .discussion .box-editor {
    margin-top: 30px; }

.reply-form {
  position: relative; }
  .reply-form .fa-envelope {
    position: absolute;
    left: 16px;
    top: 11px;
    font-size: 17px;
    color: #b0b0b0; }

.widget-member {
  padding: 35px 33px 13px 60px;
  border-bottom: 3px solid #e8e8e8; }
  @media (max-width: 1240px) {
    .widget-member {
      padding: 35px 20px 13px 47px; } }
  @media (max-width: 991px) {
    .widget-member {
      padding-left: 65px; } }
  .widget-member .title {
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 2px;
    font-weight: 500; }
  .widget-member .name {
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 11px; }
  .widget-member .avatar {
    width: 87px;
    height: 87px;
    padding: 6px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    background: #fff;
    margin: -3px 0 0 -103px;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.1); }
    @media (max-width: 1240px) {
      .widget-member .avatar {
        margin-left: -80px;
        width: 70px;
        height: 70px; } }
    .widget-member .avatar img {
      vertical-align: top;
      box-shadow: 0 0 0 2px #e8e8e8; }
  .widget-member .btn {
    padding: 4px 16px 5px;
    margin-bottom: 10px; }
    .widget-member .btn .fa {
      margin-right: 5px; }
  .widget-member p {
    margin-bottom: 21px; }

.dev-list {
  font-weight: 500;
  line-height: 1.6; }
  .dev-list li {
    padding-left: 40px;
    overflow: hidden;
    margin-bottom: 11px; }
    .dev-list li .role {
      color: #b0b0b0;
      font-size: 14px;
      margin-left: 6px; }
  .dev-list .avatar-l {
    float: left;
    margin-left: -40px; }

.avatar-l {
  display: inline-block;
  width: 28px;
  height: 28px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 5px;
  border-radius: 50%;
  color: #fff; }

.avatar-red {
  background: #f88abe; }

.avatar-blue {
  background: #8ac8f8; }

.avatar-yellow {
  background: #f8da8a; }

.avatar-purple {
  background: #b98af8; }

.avatar-pink {
  background: #f48af8; }

.widget-details {
  background: #fcfcfc;
  padding: 33px 21px 15px 29px;
  border-bottom: 3px solid #e8e8e8; }
  .widget-details .widget-row + .widget-row {
    margin-top: 27px; }
  .widget-details .widget-title {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    margin-bottom: 17px;
    position: relative; }
    .widget-details .widget-title:before {
      content: '';
      position: absolute;
      width: 5px;
      height: 27px;
      background: #1e3948;
      top: -2px;
      left: -29px; }
  .widget-details strong {
    font-weight: 500; }
  .widget-details .list-defination > li {
    padding-left: 27px; }
    .widget-details .list-defination > li + li {
      border-top: 1px solid #eaecee;
      margin-top: 13px;
      padding-top: 12px; }
  .widget-details .list-defination .fa {
    float: left;
    font-size: 18px;
    margin-left: -27px; }
  .widget-details .list-defination .title {
    display: block;
    margin-bottom: 4px; }
  .widget-details .list-defination p {
    margin-bottom: 0; }

/* ==========================================================================
   Author's custom style
   ========================================================================== */
@media (max-width: 767px) {
  .dashboard #page-content.dashboard_content {
    display: none; } }

.cmv-multiselect {
  display: block;
  width: 100%;
  height: auto;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #536570;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d4dbe0;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-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; }
  .cmv-multiselect .item {
    padding: 0 4px; }
    .cmv-multiselect .item .fa-times {
      float: right;
      margin-top: 4px; }
  .cmv-multiselect .item.active {
    background-color: #00a0d2;
    color: #fff; }
  .cmv-multiselect .adder input {
    width: 100%;
    margin-top: 4px; }

.datepicker.datepicker-dropdown {
  background: white;
  max-width: 300px;
  border-color: #ccc; }

.media-default {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 300; }
  @media (max-width: 1240px) {
    .media-default {
      font-size: 18px; } }
  @media (max-width: 991px) {
    .media-default {
      font-size: 16px;
      display: block; } }
  .media-default + .media-default {
    margin-top: 130px; }
    @media (max-width: 991px) {
      .media-default + .media-default {
        margin-top: 70px; } }
  .media-default:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse; }
    @media (min-width: 992px) {
      .media-default:nth-child(even) .media-img {
        text-align: right;
        padding: 0 0 0 61px; } }
  .media-default .media-img,
  .media-default .media-body {
    width: 50%; }
    @media (max-width: 991px) {
      .media-default .media-img,
      .media-default .media-body {
        display: block;
        width: auto; } }
  @media (min-width: 992px) {
    .media-default .media-img {
      padding-right: 60px; } }
  @media (max-width: 991px) {
    .media-default .media-img {
      margin-bottom: 50px;
      text-align: center; } }
  .media-default h3 {
    font-size: 36px;
    line-height: 1.22;
    font-weight: 600;
    color: #196cb4;
    font-style: italic;
    margin-bottom: 65px;
    position: relative; }
    @media (max-width: 1240px) {
      .media-default h3 {
        font-size: 34px; } }
    @media (max-width: 991px) {
      .media-default h3 {
        font-size: 26px;
        margin-bottom: 43px; } }
    @media (max-width: 767px) {
      .media-default h3 {
        font-size: 22px; } }
    .media-default h3:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -35px;
      height: 3px;
      width: 150px;
      background: #d5d6d7; }
      @media (max-width: 991px) {
        .media-default h3:after {
          bottom: -19px; } }

.step-process {
  margin-top: 5px; }
  .step-process li {
    width: 18.52%;
    float: left;
    background: url("../../images/bg_white_arrow.png") repeat-x scroll 0 0 transparent;
    display: block;
    height: 40px;
    background-size: 5px 40px;
    text-align: center;
    position: relative;
    margin-bottom: 0 !important; }
    .step-process li:nth-child(n) {
      margin-right: 1.85%;
      margin-bottom: 1.85%; }
    .step-process li:nth-child(5n) {
      margin-right: 0;
      margin-bottom: 0; }
    .step-process li span {
      line-height: 41px;
      color: #8e9ca3;
      font-size: 14px;
      font-weight: 500; }
      .step-process li span .fa {
        margin-right: 8px;
        color: #89bc17;
        font-size: 18px;
        font-weight: 400;
        position: relative;
        top: 2px; }
        .step-process li span .fa.text-danger {
          color: #d9534f; }
    .step-process li:before {
      background: url("../../images/bg_arrow_white_before.png") no-repeat scroll 0 0 transparent;
      background-size: 15px 40px;
      width: 14px;
      height: 40px;
      display: block;
      position: absolute;
      left: -13px;
      top: 0;
      content: ''; }
    .step-process li:after {
      background: url("../../images/bg_arrow_white_after.png") no-repeat scroll 0 0 transparent;
      background-size: 15px 40px;
      width: 15px;
      height: 40px;
      display: block;
      position: absolute;
      right: -14px;
      top: 0;
      content: ''; }
    .step-process li.current {
      background: url("../../images/bg_blue_arrow.png") repeat-x scroll 0 0 transparent;
      background-size: 5px 40px; }
      .step-process li.current span {
        color: #1e6ab4; }
      .step-process li.current:before {
        background: url("../../images/bg_arrow_blue_before.png") no-repeat scroll 0 0 transparent;
        background-size: 15px 40px;
        width: 14px;
        height: 40px;
        display: block;
        position: absolute;
        left: -13px;
        top: 0;
        content: ''; }
      .step-process li.current:after {
        background: url("../../images/bg_arrow_blue_after.png") no-repeat scroll 0 0 transparent;
        background-size: 15px 40px;
        width: 15px;
        height: 40px;
        display: block;
        position: absolute;
        right: -14px;
        top: 0;
        content: ''; }
    .step-process li.completed p {
      color: #1e3948; }
    .step-process li:first-of-type:before {
      background: url("../../images/bg_arrow_first_before.png") no-repeat scroll 0 0 transparent;
      background-size: 9px 44px;
      width: 9px;
      height: 44px;
      display: block;
      position: absolute;
      left: -9px;
      top: 0;
      content: ''; }
    .step-process li:first-of-type.current:before {
      background: url("../../images/bg_arrow_first_blue_before.png") no-repeat scroll 0 0 transparent;
      background-size: 9px 44px; }
    .step-process li:last-of-type:after {
      background: url("../../images/bg_arrow_last_after.png") no-repeat scroll 0 0 transparent;
      background-size: 9px 44px;
      width: 9px;
      height: 44px;
      display: block;
      position: absolute;
      right: -9px;
      top: 0;
      content: ''; }
      .step-process li:last-of-type:after.current {
        background: url("../../images/bg_arrow_last_blue_before.png") no-repeat scroll 0 0 transparent; }
    .step-process li:last-of-type.current:after {
      background: url("../../images/bg_arrow_last_blue_after.png") no-repeat scroll 0 0 transparent;
      background-size: 9px 44px; }
    @media (max-width: 1240px) {
      .step-process li {
        width: 18.4%; }
        .step-process li:nth-child(n) {
          margin-right: 2%;
          margin-bottom: 2%; }
        .step-process li:nth-child(5n) {
          margin-right: 0;
          margin-bottom: 0; } }
    @media (max-width: 991px) {
      .step-process li {
        width: 17.6%; }
        .step-process li:nth-child(n) {
          margin-right: 3%;
          margin-bottom: 3%; }
        .step-process li:nth-child(5n) {
          margin-right: 0;
          margin-bottom: 0; } }
    @media (max-width: 767px) {
      .step-process li {
        width: 17.6%; }
        .step-process li:nth-child(n) {
          margin-right: 3%;
          margin-bottom: 3%; }
        .step-process li:nth-child(5n) {
          margin-right: 0;
          margin-bottom: 0; }
        .step-process li:first-of-type:before {
          display: none; }
        .step-process li:last-of-type:after {
          display: none; } }

.step-process_mobile {
  display: none; }

@media (max-width: 767px) {
  .step-process {
    display: none; }
  .step-process_mobile {
    margin: 0 14px;
    margin-top: 5px;
    display: block; }
    .step-process_mobile li {
      float: left;
      background: url("../../images/bg_white_arrow.png") repeat-x scroll 0 0 transparent;
      display: block;
      height: 40px;
      background-size: 5px 40px;
      text-align: center;
      position: relative;
      margin-bottom: 0 !important;
      width: 20%; }
      .step-process_mobile li i.fa-info-circle {
        color: #8e9ca3;
        font-size: 12px;
        font-weight: 400;
        position: absolute;
        right: 14px;
        top: 4px; }
      .step-process_mobile li span {
        line-height: 41px; }
        .step-process_mobile li span .fa {
          margin-right: 8px;
          color: #8e9ca3;
          font-size: 24px;
          font-weight: 400;
          position: relative;
          top: 4px; }
      .step-process_mobile li:before {
        background: url("../../images/bg_arrow_white_before.png") no-repeat scroll 0 0 transparent;
        background-size: 15px 40px;
        width: 14px;
        height: 40px;
        display: block;
        position: absolute;
        left: -13px;
        top: 0;
        content: ''; }
      .step-process_mobile li:after {
        background: url("../../images/bg_arrow_white_after.png") no-repeat scroll 0 0 transparent;
        background-size: 15px 40px;
        width: 15px;
        height: 40px;
        display: block;
        position: absolute;
        right: -14px;
        top: 0;
        content: ''; }
      .step-process_mobile li.code i {
        display: block;
        color: #8e9ca3;
        font-size: 24px;
        font-weight: 400;
        text-indent: -7px; }
      .step-process_mobile li.code span {
        color: #8e9ca3;
        font-size: 10px;
        font-weight: 500;
        display: block;
        line-height: normal;
        text-indent: -7px;
        white-space: nowrap; }
      .step-process_mobile li.current {
        background: url("../../images/bg_blue_arrow.png") repeat-x scroll 0 0 transparent;
        background-size: 5px 40px;
        padding-top: 1px; }
        .step-process_mobile li.current:before {
          background: url("../../images/bg_arrow_blue_before.png") no-repeat scroll 0 0 transparent;
          background-size: 15px 40px;
          width: 14px;
          height: 40px;
          display: block;
          position: absolute;
          left: -13px;
          top: 0;
          content: ''; }
        .step-process_mobile li.current:after {
          background: url("../../images/bg_arrow_blue_after.png") no-repeat scroll 0 0 transparent;
          background-size: 15px 40px;
          width: 15px;
          height: 40px;
          display: block;
          position: absolute;
          right: -14px;
          top: 0;
          content: ''; }
        .step-process_mobile li.current.code i {
          color: #1e6ab4; }
        .step-process_mobile li.current.code span {
          color: #1e6ab4; }
      .step-process_mobile li.completed {
        background: url("../../images/bg_green_arrow.png") repeat-x scroll 0 0 transparent;
        background-size: 5px 40px; }
        .step-process_mobile li.completed:before {
          background: url("../../images/bg_green_arrow_before.png") no-repeat scroll 0 0 transparent;
          background-size: 15px 40px;
          width: 14px;
          height: 40px;
          display: block;
          position: absolute;
          left: -13px;
          top: 0;
          content: ''; }
        .step-process_mobile li.completed:after {
          background: url("../../images/bg_green_arrow_after.png") no-repeat scroll 0 0 transparent;
          background-size: 15px 40px;
          width: 15px;
          height: 40px;
          display: block;
          position: absolute;
          right: -14px;
          top: 0;
          content: ''; }
        .step-process_mobile li.completed p {
          color: #1e3948; }
        .step-process_mobile li.completed i.fa-info-circle {
          color: white; }
        .step-process_mobile li.completed span i {
          color: white; }
      .step-process_mobile li:first-of-type {
        border-left: 1px solid #e9eced;
        margin-left: 0 !important; }
      .step-process_mobile li:last-of-type {
        border-right: 1px solid #e9eced;
        margin-right: 0 !important; }
      .step-process_mobile li:first-of-type:before {
        display: none; }
      .step-process_mobile li:last-of-type:after {
        display: none; } }
  @media only screen and (max-width: 767px) and (min-width: 481px) and (max-width: 767px) {
    .step-process_mobile li {
      width: 15.7%;
      margin: 0 1.5%; }
      .step-process_mobile li.code {
        width: 25%; } }
  @media only screen and (max-width: 767px) and (max-width: 480px) {
    .step-process_mobile li {
      width: 14.1%;
      margin: 0 2.3%; }
      .step-process_mobile li i.fa-info-circle {
        right: 4px;
        top: 4px; }
      .step-process_mobile li.code {
        width: 25%; } }
  @media only screen and (max-width: 767px) and (max-width: 375px) {
    .step-process_mobile li {
      margin: 0 2.8%;
      width: 13%; }
      .step-process_mobile li i.fa-info-circle {
        right: 0;
        top: 4px; }
      .step-process_mobile li.code {
        width: 25%; }
        .step-process_mobile li.code span {
          text-indent: 0; }
      .step-process_mobile li:first-of-type span {
        display: inline-block;
        position: relative;
        left: 5px; } }

.tooltip-steps.tooltip.top {
  border: 0; }
  .tooltip-steps.tooltip.top .tooltip-inner {
    border-radius: 5px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    border: 0;
    border-top: 3px solid #8e9ca3;
    background-color: #f9f9f9;
    color: #1e3948;
    font-size: 13px;
    font-weight: 500;
    padding: 10px; }
  .tooltip-steps.tooltip.top .tooltip-arrow {
    bottom: -2px;
    border-top-color: #f9f9f9;
    border-width: 5px 5px 0;
    bottom: 0;
    left: 50%;
    margin-left: -5px; }

.tooltip {
  border: 0; }

.tooltip.in {
  opacity: 1; }

.statcard-gray {
  background: rgba(157, 169, 176, 0.3); }

.statcard-number {
  margin-top: 0;
  margin-bottom: 0; }
  .statcard-number .label {
    padding: .125em .5em;
    font-size: 50%;
    vertical-align: middle; }

.statcard-desc {
  font-size: 75%;
  letter-spacing: .15em;
  color: #909090;
  text-transform: uppercase; }

.delta-indicator {
  display: inline-block;
  padding: .4em;
  font-size: 12px;
  vertical-align: middle; }

.delta-positive {
  color: #96d019; }
  .delta-positive:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
    border-top: 0;
    border-bottom: 4px solid; }

.delta-negative {
  color: #d9534f; }
  .delta-negative:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: ""; }

.statcard-primary,
.statcard-success,
.statcard-info,
.statcard-warning,
.statcard-danger {
  color: #fff;
  border-radius: 3px; }
  .statcard-primary .delta-negative,
  .statcard-primary .delta-positive,
  .statcard-primary .statcard-number,
  .statcard-success .delta-negative,
  .statcard-success .delta-positive,
  .statcard-success .statcard-number,
  .statcard-info .delta-negative,
  .statcard-info .delta-positive,
  .statcard-info .statcard-number,
  .statcard-warning .delta-negative,
  .statcard-warning .delta-positive,
  .statcard-warning .statcard-number,
  .statcard-danger .delta-negative,
  .statcard-danger .delta-positive,
  .statcard-danger .statcard-number {
    font-weight: normal;
    color: inherit; }
  .statcard-primary .statcard-desc,
  .statcard-success .statcard-desc,
  .statcard-info .statcard-desc,
  .statcard-warning .statcard-desc,
  .statcard-danger .statcard-desc {
    font-weight: normal;
    color: rgba(255, 255, 255, 0.65); }
  .statcard-primary .statcard-hr,
  .statcard-success .statcard-hr,
  .statcard-info .statcard-hr,
  .statcard-warning .statcard-hr,
  .statcard-danger .statcard-hr {
    margin-left: -20px;
    margin-right: -20px;
    border-top-color: rgba(255, 255, 255, 0.2); }

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

.statcard-success {
  background-color: #96d019; }

.statcard-info {
  background-color: #5bc0de; }

.statcard-warning {
  background-color: #f0ad4e; }

.statcard-danger {
  background-color: #d9534f; }

.thumbnail .img {
  display: block;
  overflow: hidden; }
  .thumbnail .img img {
    -moz-transition: transform 0.25s ease-in;
    -o-transition: transform 0.25s ease-in;
    -webkit-transition: transform 0.25s ease-in;
    -ms-transform: transform 0.25s ease-in;
    -webkit-transition: -webkit-transform 0.25s ease-in;
    transition: -webkit-transform 0.25s ease-in;
    transition: transform 0.25s ease-in;
    transition: transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
    width: 100%;
    height: auto; }

@media (max-width: 767px) {
  .thumbnail .caption {
    padding: 24px 22px 18px; } }

.thumbnail h4 {
  font-style: italic; }

.thumbnail a {
  color: #000; }
  .thumbnail a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  .thumbnail a:hover .caption h4 {
    color: #1e6ab4; }

/* ---------------------------------------------------------
   Visual
   ---------------------------------------------------------*/
.visual {
  position: relative;
  padding-top: 103px;
  padding-bottom: 25px;
  line-height: 2; }
  @media (max-width: 1240px) {
    .visual {
      padding-top: 64px; } }
  @media (max-width: 991px) {
    .visual {
      padding-bottom: 68px; } }
  @media (max-width: 767px) {
    .visual {
      padding: 79px 0 103px; } }
  .visual:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 1630px;
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: transparent url("../../images/bg-visual.svg") no-repeat scroll 0 0/100% auto; }
  @media (min-width: 768px) {
    .visual .container {
      position: relative; } }
  @media (min-width: 992px) {
    .visual .desc {
      padding-top: 140px; } }
  @media (max-width: 991px) {
    .visual .desc {
      margin-bottom: 30px; } }
  @media (max-width: 767px) {
    .visual .desc {
      margin-bottom: 0; } }
  .visual h1 {
    font-size: 90px;
    line-height: 90px;
    font-style: italic;
    margin-bottom: 23px;
    font-weight: 600; }
    @media (max-width: 1240px) {
      .visual h1 {
        font-size: 60px;
        line-height: 68px; } }
    @media (max-width: 991px) {
      .visual h1 {
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 10px; } }
    @media (max-width: 767px) {
      .visual h1 {
        font-size: 32px;
        line-height: 40px; } }
  .visual h2 {
    font: 400 41px/44px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    color: #1e6ab4;
    text-transform: uppercase;
    letter-spacing: 25px; }
    @media (max-width: 991px) {
      .visual h2 {
        letter-spacing: 10px; } }
    @media (max-width: 767px) {
      .visual h2 {
        font-size: 24px;
        line-height: 30px; } }
  .visual p {
    max-width: 571px;
    margin-bottom: 46px; }
  .visual .btn:after {
    height: 0;
    width: 0;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #1e6ab4;
    border-top: 6px solid transparent;
    border-width: 5px 0 5px 6px;
    content: '';
    display: inline-block;
    margin-left: 12px; }
  @media (max-width: 991px) {
    .visual .btn-circle {
      bottom: -81px; } }
  @media (max-width: 767px) {
    .visual .btn-circle {
      bottom: 10px; } }
  .visual .btn-circle {
    bottom: -59px; }
    @media (max-width: 991px) {
      .visual .btn-circle {
        bottom: -87px; } }
    @media (max-width: 767px) {
      .visual .btn-circle {
        bottom: 8px; } }

.animate-filter {
  width: 526px;
  height: 891px;
  position: relative;
  margin: 0 0 -101px 142px; }
  @media (max-width: 1599px) {
    .animate-filter {
      margin-left: -52px; } }
  @media (max-width: 991px) {
    .animate-filter {
      margin-left: 152px; } }
  .animate-filter .logo {
    height: 157px;
    left: 0;
    position: absolute;
    top: 0;
    width: 157px; }
  .animate-filter .funnel {
    background: #fff url("../../images/bg-funnel.png") repeat;
    height: 72px;
    left: 11px;
    position: absolute;
    top: 181px;
    width: 140px;
    z-index: 3; }
  .animate-filter [class*="pipe-"],
  .animate-filter [class^="pipe-"] {
    position: absolute;
    border: solid #000; }
  .animate-filter .pipe-1 {
    width: 288px;
    height: 185px;
    border-width: 0 0 17px 17px;
    top: 253px;
    left: 75px; }
  .animate-filter .pipe-2 {
    width: 244px;
    height: 198px;
    top: 438px;
    left: 119px;
    border-width: 0 17px 17px 0; }
  .animate-filter .pipe-3 {
    width: 17px;
    height: 208px;
    border: none;
    background: #000;
    left: 119px;
    top: 636px; }
  .animate-filter .glass {
    background: #f5f9fc url("../../images/bg-liquid.png") no-repeat 0 100%;
    top: 390px;
    content: "";
    height: 64px;
    left: 140px;
    position: absolute;
    width: 64px;
    border-radius: 50%;
    overflow: hidden; }
  .animate-filter .chamber-1 {
    position: absolute;
    left: 242px;
    top: 314px;
    width: 185px;
    height: 265px; }
  .animate-filter .chamber-2 {
    position: absolute;
    left: -97px;
    top: 542px;
    width: 287px;
    height: 197px; }
  .animate-filter .switcher {
    top: 844px;
    left: 92px; }

.pipe-bent {
  height: 56px;
  left: 40px;
  top: 297px;
  width: 52px;
  border: none !important;
  background: #fff; }
  .pipe-bent:before, .pipe-bent:after {
    background: #000;
    content: "";
    height: 56px;
    left: 18px;
    position: absolute;
    width: 17px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .pipe-bent:before {
    top: -14px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .pipe-bent:after {
    bottom: -14px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.animate-filter-1 {
  width: 488px;
  height: 781px;
  margin: -82px 0 0 127px; }
  @media (max-width: 1531px) {
    .animate-filter-1 {
      margin-left: 0; } }
  @media (max-width: 1240px) {
    .animate-filter-1 {
      width: 384px; } }
  @media (max-width: 991px) {
    .animate-filter-1 {
      display: none; } }
  .animate-filter-1 .pipe-1 {
    border-width: 0 17px 17px 0;
    width: 371px;
    height: 156px;
    top: 0;
    left: 90px; }
    @media (max-width: 1240px) {
      .animate-filter-1 .pipe-1 {
        width: 295px; } }
    .animate-filter-1 .pipe-1 .hole:before {
      content: '';
      right: -23px;
      top: -3px;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg); }
    .animate-filter-1 .pipe-1:after {
      content: '';
      right: -23px;
      bottom: -23px; }
  .animate-filter-1 .pipe-2 {
    border-width: 0 0 17px 17px;
    width: 244px;
    height: 313px;
    top: 241px;
    left: 84px; }
    .animate-filter-1 .pipe-2:after {
      content: '';
      left: -23px;
      bottom: -23px; }
  .animate-filter-1 .pipe-3 {
    left: 286px;
    top: 591px;
    height: 100%; }
    @media (max-width: 1240px) {
      .animate-filter-1 .pipe-3 {
        height: 108%; } }
  .animate-filter-1 .chamber-1 {
    top: 63px;
    left: 0; }
  .animate-filter-1 .chamber-2 {
    left: 199px;
    top: 437px; }
    @media (max-width: 1240px) {
      .animate-filter-1 .chamber-2 {
        width: 224px;
        left: 151px;
        top: 484px; } }
  .animate-filter-1 .pipe-bent {
    left: 49px;
    top: 401px; }
  .animate-filter-1 .switcher {
    top: 733px;
    left: 257px; }
  .animate-filter-1 .bulb {
    width: 66px;
    height: 66px;
    position: absolute;
    left: 312px;
    top: 113px; }
    @media (max-width: 1240px) {
      .animate-filter-1 .bulb {
        left: 242px; } }

.switcher {
  position: absolute;
  width: 74px;
  height: 47px;
  background: #fff;
  border-radius: 10px;
  border: 6px solid #C1D3E4; }
  .switcher .on,
  .switcher .state {
    position: absolute;
    margin: auto 0px;
    width: 16px;
    height: 16px;
    top: 0px;
    bottom: 0px; }
  .switcher .state {
    right: 11px;
    border-radius: 50%;
    background: #e11f1f; }
  .switcher .green {
    background: #a3cd49; }
  .switcher .on {
    left: 11px;
    border: 3px solid #e11f1f;
    border-radius: 50%; }

.switcher-v {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.visual2 {
  position: relative;
  padding: 155px 0 161px;
  margin-bottom: 69px; }
  @media (max-width: 767px) {
    .visual2 {
      margin-bottom: 38px;
      padding: 69px 0; } }
  .visual2 .bg-stretch {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: -121px;
    z-index: -1; }
  .visual2 h1 {
    font-size: 48px;
    line-height: 55px;
    font-style: italic;
    margin-bottom: 35px; }
    .visual2 h1 span {
      color: #96d019; }
  .visual2 .label {
    min-width: 85px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: top;
    margin-right: 8px; }
  .visual2 .avatar {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    box-shadow: none; }

.visual3 {
  position: relative;
  color: #fff;
  padding: 95px 0 69px;
  line-height: 24px; }
  @media (max-width: 767px) {
    .visual3 {
      padding: 34px 0 42px; } }
  .visual3:before {
    top: -250px;
    background: #121923; }
  .visual3.add {
    margin-bottom: 132px; }
    @media (max-width: 767px) {
      .visual3.add {
        padding: 55px 0 33px;
        margin-bottom: 74px; } }
    .visual3.add:before {
      background: url("../../images/bg03.jpg"); }
    .visual3.add p {
      margin-bottom: 24px; }
  .visual3 .heading {
    position: relative;
    padding-bottom: 37px;
    margin-bottom: 42px; }
    @media (max-width: 767px) {
      .visual3 .heading {
        padding-bottom: 27px;
        margin-bottom: 26px; } }
    .visual3 .heading:before {
      content: '';
      width: 176px;
      height: 3px;
      background: #fff;
      position: absolute;
      left: 50%;
      bottom: 0;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
    .visual3 .heading h1 {
      font: italic 600 68px/69px "Archer", serif;
      margin-bottom: 15px; }
      @media (max-width: 991px) {
        .visual3 .heading h1 {
          font-size: 42px; } }
      @media (max-width: 767px) {
        .visual3 .heading h1 {
          font-size: 30px;
          line-height: 38px; } }
    .visual3 .heading h2 {
      font: 400 24px/1.83 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
      color: #7ca5da;
      margin: 0 30px;
      letter-spacing: 5px; }
      @media (max-width: 991px) {
        .visual3 .heading h2 {
          font-size: 22px;
          line-height: 1.5; } }
      @media (max-width: 767px) {
        .visual3 .heading h2 {
          font-size: 17px;
          line-height: 24px;
          letter-spacing: 3px; } }

/* ---------------------------------------------------------
   Panel articles
   ---------------------------------------------------------*/
.panel-articles {
  position: relative;
  padding: 32px 0 56px; }
  @media (max-width: 767px) {
    .panel-articles {
      padding-bottom: 34px; } }
  .panel-articles:before {
    background: #f0f3f7; }
  .panel-articles .heading {
    padding-bottom: 27px; }
    .panel-articles .heading h2 {
      font-size: 24px;
      line-height: 24px;
      font-style: italic;
      margin-bottom: 1px; }
    .panel-articles .heading h3 {
      font-size: 28px;
      line-height: 28px;
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 0; }

/* ---------------------------------------------------------
   Panel client
   ---------------------------------------------------------*/
.panel-client {
  padding: 148px 0 160px; }
  @media (max-width: 991px) {
    .panel-client {
      padding: 119px 0; } }
  @media (max-width: 767px) {
    .panel-client {
      padding: 100px 0 75px; } }
  .panel-client .container {
    position: relative; }
    @media (max-width: 1599px) {
      .panel-client .container {
        width: 1081px; } }
    @media (max-width: 1240px) {
      .panel-client .container {
        width: 850px; } }
    @media (max-width: 991px) {
      .panel-client .container {
        width: 750px; } }
    @media (max-width: 767px) {
      .panel-client .container {
        width: auto; } }
  .panel-client .img-globe {
    margin: 0 auto 57px; }
    @media (max-width: 1240px) {
      .panel-client .img-globe {
        width: 200px;
        margin-top: 46px; } }
    @media (max-width: 991px) {
      .panel-client .img-globe {
        width: 160px;
        margin-top: 0; } }
  .panel-client .intro {
    font-size: 30px;
    line-height: 1.47;
    padding-bottom: 60px; }
    @media (max-width: 1240px) {
      .panel-client .intro {
        font-size: 24px; } }
    @media (max-width: 991px) {
      .panel-client .intro {
        font-size: 18px;
        padding-bottom: 30px; } }
    @media (max-width: 767px) {
      .panel-client .intro {
        font-size: 16px; } }
    .panel-client .intro .txt-row {
      margin-bottom: 86px; }
      @media (max-width: 991px) {
        .panel-client .intro .txt-row {
          margin-bottom: 50px; } }
  .panel-client h2 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 39px; }
    @media (max-width: 1240px) {
      .panel-client h2 {
        font-size: 46px; } }
    @media (max-width: 991px) {
      .panel-client h2 {
        font-size: 38px;
        margin-bottom: 20px; } }
    @media (max-width: 767px) {
      .panel-client h2 {
        font-size: 28px; } }
  .panel-client .media-list {
    margin-bottom: 98px; }
    @media (max-width: 767px) {
      .panel-client .media-list {
        margin-bottom: 36px; } }
  .panel-client .foot-info {
    text-align: center; }
    .panel-client .foot-info h2 {
      margin-bottom: 19px; }
      @media (max-width: 767px) {
        .panel-client .foot-info h2 {
          margin-bottom: 6px; } }
    .panel-client .foot-info h3 {
      color: #196cb4;
      font: 400 40px/1.2 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
      margin-bottom: 74px; }
      @media (max-width: 1240px) {
        .panel-client .foot-info h3 {
          font-size: 34px; } }
      @media (max-width: 991px) {
        .panel-client .foot-info h3 {
          font-size: 26px;
          margin-bottom: 50px; } }
      @media (max-width: 767px) {
        .panel-client .foot-info h3 {
          font-size: 18px;
          margin-bottom: 40px; } }
  .panel-client .btn {
    line-height: 2.9;
    min-width: 290px;
    border-radius: 50px; }
    @media (max-width: 767px) {
      .panel-client .btn {
        line-height: 1.9; } }
  .panel-client .btn-circle {
    bottom: -224px; }
    @media (max-width: 991px) {
      .panel-client .btn-circle {
        bottom: -173px; } }
    @media (max-width: 767px) {
      .panel-client .btn-circle {
        bottom: -99px; } }

/* ---------------------------------------------------------
   Panel contact
   ---------------------------------------------------------*/
.panel-contact {
  padding: 89px 0 56px;
  position: relative; }
  @media (max-width: 767px) {
    .panel-contact {
      padding: 54px 0 31px; } }
  .panel-contact:before {
    background: url("../../images/bg-contact.jpg"); }
  .panel-contact .container {
    position: relative; }
  .panel-contact .heading {
    padding-bottom: 34px; }
    .panel-contact .heading h2 {
      margin-bottom: 8px; }
    .panel-contact .heading h3 {
      margin-bottom: 47px; }
      @media (max-width: 767px) {
        .panel-contact .heading h3 {
          margin-bottom: 20px; } }
    .panel-contact .heading h4 {
      position: relative;
      font: italic 600 24px/27px "Archer", serif;
      word-spacing: -2px;
      color: #000;
      margin: 0; }
      @media (max-width: 767px) {
        .panel-contact .heading h4 {
          font-size: 18px; } }
      .panel-contact .heading h4:before, .panel-contact .heading h4:after {
        content: '';
        display: inline-block;
        vertical-align: top;
        width: 97px;
        height: 1px;
        background: #000;
        opacity: .2;
        position: relative;
        top: .65em; }
        @media (max-width: 767px) {
          .panel-contact .heading h4:before, .panel-contact .heading h4:after {
            display: none; } }
      .panel-contact .heading h4:before {
        margin-right: 12px; }
      .panel-contact .heading h4:after {
        margin-left: 12px; }
  .panel-contact .info .phone {
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    font-size: 28px; }
    .panel-contact .info .phone a {
      font-weight: 400; }
  .panel-contact .info .or {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    font-family: "Archer", serif;
    padding: 0 15px 0 16px; }
    @media (max-width: 767px) {
      .panel-contact .info .or {
        display: block;
        margin-bottom: 10px; } }
  .panel-contact .info .btn {
    padding: 10px 31px; }

.panel-contact1 {
  padding: 143px 0 100px; }
  @media (max-width: 991px) {
    .panel-contact1 {
      padding: 100px 0 59px;
      border-bottom: 1px solid #ececec; } }
  @media (max-width: 767px) {
    .panel-contact1 {
      padding: 66px 0 53px; } }
  .panel-contact1:before {
    background: #fff; }
  .panel-contact1 .heading {
    padding-bottom: 82px; }
    @media (max-width: 767px) {
      .panel-contact1 .heading {
        padding-bottom: 46px; } }
    .panel-contact1 .heading h2 {
      font-size: 50px;
      margin-bottom: 21px;
      text-transform: capitalize; }
      @media (max-width: 991px) {
        .panel-contact1 .heading h2 {
          font-size: 42px; } }
      @media (max-width: 767px) {
        .panel-contact1 .heading h2 {
          font-size: 32px;
          margin-bottom: 12px; } }
    .panel-contact1 .heading h3 {
      font-size: 26px;
      letter-spacing: 0;
      margin-bottom: 57px; }
      @media (max-width: 1240px) {
        .panel-contact1 .heading h3 {
          font-size: 24px;
          line-height: 1.4; } }
      @media (max-width: 991px) {
        .panel-contact1 .heading h3 {
          font-size: 22px; } }
      @media (max-width: 767px) {
        .panel-contact1 .heading h3 {
          font-size: 18px;
          margin-bottom: 30px; } }
    .panel-contact1 .heading h4 {
      font-size: 26px; }
      @media (max-width: 767px) {
        .panel-contact1 .heading h4 {
          font-size: 18px; } }
  .panel-contact1 .info {
    overflow: hidden;
    margin: 0 auto;
    max-width: 870px;
    line-height: 1; }
    .panel-contact1 .info ul {
      font-size: 25px;
      font-weight: 300;
      text-align: left;
      float: left;
      padding-top: 3px;
      margin-bottom: 0; }
      @media (max-width: 1240px) {
        .panel-contact1 .info ul {
          font-size: 18px; } }
      @media (max-width: 767px) {
        .panel-contact1 .info ul {
          float: none;
          text-align: center; } }
      .panel-contact1 .info ul li {
        padding-left: 47px;
        position: relative; }
        @media (max-width: 1240px) {
          .panel-contact1 .info ul li {
            padding-left: 32px; } }
        @media (max-width: 767px) {
          .panel-contact1 .info ul li {
            padding-left: 0; } }
        .panel-contact1 .info ul li + li {
          margin-top: 25px; }
          @media (max-width: 991px) {
            .panel-contact1 .info ul li + li {
              margin-top: 20px; } }
      .panel-contact1 .info ul a {
        color: #196cb4; }
      .panel-contact1 .info ul .fa {
        color: #cecece;
        position: absolute;
        left: 0;
        top: 0; }
        @media (max-width: 767px) {
          .panel-contact1 .info ul .fa {
            position: static;
            margin-right: 10px; } }
    .panel-contact1 .info .or {
      font-size: 40px;
      color: #cacaca;
      padding-top: 12px; }
      @media (max-width: 991px) {
        .panel-contact1 .info .or {
          padding-top: 8px; } }
      @media (max-width: 767px) {
        .panel-contact1 .info .or {
          font-size: 28px;
          padding: 12px 0 10px; } }
  .panel-contact1 .btn {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 2.2;
    border-radius: 50px;
    float: right; }
    @media (max-width: 1240px) {
      .panel-contact1 .btn {
        font-size: 18px; } }
    @media (max-width: 767px) {
      .panel-contact1 .btn {
        float: none;
        line-height: 1.5; } }

/* ---------------------------------------------------------
   Panel how
   ---------------------------------------------------------*/
.panel-how {
  position: relative;
  padding: 57px 0 131px;
  text-align: center; }
  @media (max-width: 1240px) {
    .panel-how {
      padding-top: 122px; } }
  @media (max-width: 991px) {
    .panel-how {
      padding: 57px 0 67px; } }
  @media (max-width: 767px) {
    .panel-how {
      padding: 49px 0; } }
  .panel-how:before {
    top: -36px;
    background: url("../../images/bg-gallery-area.jpg") #eaeff8; }
  .panel-how:after {
    content: '';
    position: absolute;
    bottom: -54px;
    left: 50%;
    margin-left: -956px;
    width: 567px;
    height: 130px;
    background: url("../../images/bg-gallery-decor.svg") no-repeat 0 0/100% auto; }
  .panel-how.add {
    padding: 96px 0 59px; }
    @media (max-width: 767px) {
      .panel-how.add {
        padding: 56px 0 43px; } }
    .panel-how.add .pipes .pipe-1 {
      top: -183px;
      right: -88px;
      width: 17px;
      border-width: 0 17px 0 0; }
      @media (max-width: 1531px) {
        .panel-how.add .pipes .pipe-1 {
          right: 74px; } }
      .panel-how.add .pipes .pipe-1:after {
        display: none; }
    .panel-how.add .pipes .pipe-2 {
      top: 227px;
      bottom: auto;
      height: 145px;
      left: -89px;
      right: -77px; }
      @media (max-width: 1531px) {
        .panel-how.add .pipes .pipe-2 {
          left: 73px;
          right: 77px; } }
      @media (max-width: 1240px) {
        .panel-how.add .pipes .pipe-2 {
          top: 291px; } }
  .panel-how .container {
    position: relative; }
  .panel-how .col-md-10 {
    position: static; }
  .panel-how .heading {
    padding-bottom: 52px; }
  .panel-how h2 {
    font-size: 54px;
    margin-bottom: 36px; }
    @media (max-width: 991px) {
      .panel-how h2 {
        font-size: 42px;
        margin-bottom: 17px; } }
    @media (max-width: 767px) {
      .panel-how h2 {
        font-size: 36px; } }
  .panel-how h3 {
    color: #1e6ab4;
    text-transform: uppercase;
    font: 400 26px/1.3 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    margin-bottom: 0;
    letter-spacing: 0; }
    @media (max-width: 991px) {
      .panel-how h3 {
        font-size: 22px; } }
    @media (max-width: 767px) {
      .panel-how h3 {
        font-size: 18px;
        line-height: 1.5; } }
  .panel-how .btn-list > li {
    padding: 0 17px; }
    @media (max-width: 767px) {
      .panel-how .btn-list > li {
        margin-top: 15px; } }
  .panel-how .btn-list .btn {
    min-width: 215px; }
    @media (max-width: 991px) {
      .panel-how .btn-list .btn {
        min-width: 190px; } }
  .panel-how .video {
    position: relative;
    margin-bottom: 56px;
    display: inline-block;
    max-width: 100%; }
    @media (max-width: 767px) {
      .panel-how .video {
        margin-bottom: 26px; } }
    .panel-how .video .btn-play {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      margin: auto;
      width: 112px;
      height: 112px;
      background: rgba(255, 255, 255, 0.8);
      border: 3px solid #8abc19;
      border-radius: 50%; }
      @media (max-width: 767px) {
        .panel-how .video .btn-play {
          width: 40px;
          height: 40px; } }
      .panel-how .video .btn-play:before {
        height: 0;
        width: 0;
        border-bottom: 15px solid transparent;
        border-left: 15px solid #8abc19;
        border-top: 15px solid transparent;
        border-width: 17px 0 17px 27px;
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
        @media (max-width: 767px) {
          .panel-how .video .btn-play:before {
            border-width: 7px 0 7px 10px; } }

/* ---------------------------------------------------------
   Panel location
   ---------------------------------------------------------*/
.panel-location {
  padding-top: 63px;
  padding-bottom: 54px; }
  @media (max-width: 767px) {
    .panel-location {
      padding-bottom: 30px; } }
  .panel-location h3 {
    font: 500 14px/18px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    padding-bottom: 16px;
    border-bottom: 1px solid #dadada;
    margin-bottom: 0;
    letter-spacing: 2px; }
  .panel-location .contact-wrap {
    position: relative; }
    .panel-location .contact-wrap:before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      bottom: 0;
      width: 1px;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      background: #dadada;
      display: block; }
      @media (max-width: 767px) {
        .panel-location .contact-wrap:before {
          display: none; } }
  .panel-location .contact-item {
    padding: 36px 200px 15px 167px; }
    @media (max-width: 1240px) {
      .panel-location .contact-item {
        padding: 36px 189px 15px 111px; } }
    @media (max-width: 991px) {
      .panel-location .contact-item {
        padding: 36px 0 15px 111px; } }
    @media (max-width: 767px) {
      .panel-location .contact-item {
        overflow: hidden;
        padding-bottom: 0; } }
    .panel-location .contact-item .img-map {
      float: left;
      margin-left: -160px; }
      @media (max-width: 1240px) {
        .panel-location .contact-item .img-map {
          margin-left: -108px;
          width: 93px; } }
    .panel-location .contact-item .photos {
      float: right;
      margin: -144px -199px 0 0;
      width: 188px; }
      @media (max-width: 991px) {
        .panel-location .contact-item .photos {
          margin: 0;
          width: 233px; } }
      @media (max-width: 767px) {
        .panel-location .contact-item .photos {
          width: 100%; } }
      .panel-location .contact-item .photos li {
        float: left;
        padding: 0 15px 15px 0;
        width: 50%; }
      .panel-location .contact-item .photos span {
        display: block;
        height: 56px;
        background-size: cover;
        background-position: center;
        border-radius: 5px; }
        @media (max-width: 767px) {
          .panel-location .contact-item .photos span {
            padding-top: 70%; } }
    .panel-location .contact-item address {
      line-height: 22px;
      max-width: 190px; }
      .panel-location .contact-item address strong {
        font: 700 20px/22px "Archer", serif;
        display: block;
        margin-bottom: 7px; }

.panel-project-details {
  margin-bottom: 20px; }
  .panel-project-details .item {
    margin-bottom: 15px; }
    .panel-project-details .item:last-of-type {
      margin-bottom: 0; }
    .panel-project-details .item .col-left {
      float: left;
      margin-right: 12px; }
    .panel-project-details .item .col-right {
      margin-left: 62px; }
      .panel-project-details .item .col-right p.name {
        font-size: 15px;
        font-weight: 500;
        margin: 4px 0; }
      .panel-project-details .item .col-right span.desc {
        font-size: 15px;
        font-weight: 300; }
        .panel-project-details .item .col-right span.desc i {
          color: #bbc3c8;
          font-style: italic; }

/* ---------------------------------------------------------
   Panel roots
   ---------------------------------------------------------*/
.panel-roots {
  text-align: center;
  font-size: 25px;
  line-height: 1.3;
  padding-top: 59px; }
  @media (max-width: 991px) {
    .panel-roots {
      padding-top: 40px;
      font-size: 22px; } }
  @media (max-width: 767px) {
    .panel-roots {
      padding-top: 30px;
      font-size: 16px; } }
  .panel-roots header {
    position: relative; }
  .panel-roots h2 {
    color: #8abc19;
    font: 400 50px/1.2 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    text-transform: uppercase;
    margin-bottom: 67px; }
    @media (max-width: 991px) {
      .panel-roots h2 {
        font-size: 38px;
        margin-bottom: 36px; } }
    @media (max-width: 767px) {
      .panel-roots h2 {
        font-size: 28px;
        margin-bottom: 24px; } }
  .panel-roots .address-wrap {
    color: #fff; }
    @media (min-width: 768px) {
      .panel-roots .address-wrap {
        display: table;
        table-layout: fixed;
        width: 100%;
        height: 460px; } }
  .panel-roots .address {
    margin: 0;
    padding: 60px 15px; }
    @media (min-width: 768px) {
      .panel-roots .address {
        padding: 40px 15px;
        display: table-cell;
        vertical-align: middle; } }
  .panel-roots h3 {
    font: 500 31px/1.3 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    text-transform: capitalize;
    margin-bottom: 12px; }
    @media (max-width: 767px) {
      .panel-roots h3 {
        font-size: 22px; } }
  .panel-roots .logo-circle {
    position: absolute;
    width: 122px;
    height: 122px;
    left: -16px;
    bottom: -64px; }
    @media (max-width: 991px) {
      .panel-roots .logo-circle {
        display: none; } }
    .panel-roots .logo-circle.add {
      left: auto;
      right: 14px; }
      @media (max-width: 1531px) {
        .panel-roots .logo-circle.add {
          right: 137px; } }
      @media (max-width: 1240px) {
        .panel-roots .logo-circle.add {
          right: 29px; } }

/* ---------------------------------------------------------
   Panel services
   ---------------------------------------------------------*/
.panel-services {
  padding-bottom: 55px;
  position: relative; }
  @media (max-width: 767px) {
    .panel-services {
      padding-bottom: 29px; } }
  .panel-services .btn-circle {
    bottom: -61px; }
    @media (max-width: 991px) {
      .panel-services .btn-circle {
        bottom: -50px; } }
    @media (max-width: 767px) {
      .panel-services .btn-circle {
        bottom: -23px; } }
  .panel-services .heading {
    padding-bottom: 88px; }
    @media (max-width: 767px) {
      .panel-services .heading {
        padding-bottom: 30px; } }
    .panel-services .heading h2 {
      font-size: 42px;
      line-height: 46px;
      font-weight: 700;
      font-style: italic;
      color: #000;
      margin-bottom: 13px; }
      @media (max-width: 767px) {
        .panel-services .heading h2 {
          font-size: 24px;
          line-height: 29px; } }
    .panel-services .heading h3 {
      font: 400 48px/52px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
      color: #1e6ab4;
      letter-spacing: 11px; }
      @media (max-width: 767px) {
        .panel-services .heading h3 {
          font-size: 26px;
          line-height: 32px;
          letter-spacing: 3px; } }
  .panel-services .item1 {
    margin: 0 23px 0 78px; }
    @media (max-width: 991px) {
      .panel-services .item1 {
        margin: 0 0 60px; } }
    .panel-services .item1 h4 {
      color: #6d9712; }
    .panel-services .item1 p strong {
      color: #7caa18; }
  .panel-services .item2 {
    margin: 180px 57px 83px 63px; }
    @media (max-width: 991px) {
      .panel-services .item2 {
        margin: 180px 0 83px; } }
    @media (max-width: 767px) {
      .panel-services .item2 {
        margin: 0 0 60px; } }
    .panel-services .item2 h4 {
      color: #1e6ab4; }
    .panel-services .item2 p strong {
      color: #1e6ab4; }
  .panel-services .item3 {
    margin: 0 30px 40px; }
    @media (max-width: 767px) {
      .panel-services .item3 {
        margin: 0 0 30px; } }
    .panel-services .item3 .desc {
      max-width: 430px;
      margin: 0 auto; }
      @media (max-width: 767px) {
        .panel-services .item3 .desc {
          max-width: none; } }
  .panel-services .img {
    margin-bottom: 26px;
    text-align: center; }
    .panel-services .img .img-responsive {
      display: inline-block;
      vertical-align: top; }
  .panel-services h4 {
    font-size: 24px;
    font-style: italic;
    color: #2267b4;
    position: relative;
    text-align: center;
    padding-bottom: 32px;
    margin-bottom: 29px; }
    .panel-services h4:after {
      content: '';
      position: absolute;
      width: 92px;
      height: 2px;
      background: #000;
      left: 50%;
      bottom: 0;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }

.panel-service {
  color: #fff;
  position: relative;
  padding: 117px 0 134px;
  text-align: center;
  z-index: 1; }
  @media (max-width: 991px) {
    .panel-service {
      padding: 107px 0 101px; } }
  @media (max-width: 767px) {
    .panel-service {
      padding: 87px 0 36px; } }
  .panel-service:before {
    background: url("../../images/bg-service.jpg") no-repeat 0 0/cover; }
  .panel-service .container {
    position: relative; }
  .panel-service h2 {
    font-weight: 600;
    font-size: 64px;
    font-style: italic;
    margin-bottom: 95px;
    text-transform: capitalize;
    color: #fff; }
    @media (max-width: 991px) {
      .panel-service h2 {
        font-size: 42px;
        margin-bottom: 68px; } }
    @media (max-width: 767px) {
      .panel-service h2 {
        margin-bottom: 35px;
        font-size: 38px; } }
  .panel-service .service-list {
    margin: 0 -25px; }
    .panel-service .service-list > li {
      vertical-align: top;
      width: 25%;
      margin-right: -0.5em; }
      @media (max-width: 991px) {
        .panel-service .service-list > li {
          padding: 0 16px; } }
      @media (max-width: 767px) {
        .panel-service .service-list > li {
          width: 240px;
          margin-bottom: 37px; } }
    .panel-service .service-list a {
      color: #fff; }
      .panel-service .service-list a:hover {
        color: #96d019; }
    .panel-service .service-list svg {
      margin-bottom: 33px; }
      @media (max-width: 767px) {
        .panel-service .service-list svg {
          margin-bottom: 20px; } }
    .panel-service .service-list .caption {
      display: inline-block;
      font-size: 22px;
      line-height: 1.45;
      max-width: 190px; }
      @media (max-width: 991px) {
        .panel-service .service-list .caption {
          font-size: 16px; } }
  .panel-service .btn-circle {
    bottom: -200px; }
    @media (max-width: 991px) {
      .panel-service .btn-circle {
        bottom: -153px; } }
    @media (max-width: 767px) {
      .panel-service .btn-circle {
        bottom: -60px; } }

.panel-stats .inner-box {
  overflow: hidden !important;
  position: relative; }
  .panel-stats .inner-box .inner_stats {
    padding: 14px 14px 7px; }
    .panel-stats .inner-box .inner_stats .title {
      color: #1e3948;
      font-size: 10px;
      font-weight: 500;
      line-height: 14px;
      text-transform: uppercase;
      max-width: 41px;
      margin-bottom: 8px; }
    .panel-stats .inner-box .inner_stats ul li {
      float: left; }
    .panel-stats .inner-box .inner_stats ul li.nums {
      color: #1e3948;
      font-size: 25px;
      font-weight: 500;
      padding-right: 7px; }
    .panel-stats .inner-box .inner_stats ul li.trends {
      padding-top: 5px; }
      .panel-stats .inner-box .inner_stats ul li.trends i {
        color: #1e3948;
        font-size: 16px;
        font-weight: 400; }
  .panel-stats .inner-box .chart {
    border-top: 1px solid #e8ebec;
    height: 50px;
    line-height: 0;
    overflow: hidden; }
    .panel-stats .inner-box .chart canvas {
      position: absolute;
      bottom: 0;
      max-height: 47px;
      border-radius: 0 0 5px 5px; }

/* ---------------------------------------------------------
   Panel team
   ---------------------------------------------------------*/
.panel-team {
  padding-top: 151px;
  padding-bottom: 123px; }
  @media (max-width: 767px) {
    .panel-team {
      padding-top: 40px;
      padding-bottom: 40px; } }
  .panel-team .heading {
    color: #737373;
    line-height: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 32px; }
    .panel-team .heading h2 {
      color: #000;
      margin-bottom: 9px; }
    .panel-team .heading h3 {
      color: #a3cd49;
      letter-spacing: 11px;
      margin-bottom: 11px; }
  .panel-team .teams h3 {
    font: 700 14px/22px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    max-width: 294px;
    margin-bottom: 35px; }
  .panel-team .teams .list-inline {
    overflow: hidden;
    padding-top: 5px; }
    .panel-team .teams .list-inline > li {
      float: left;
      width: 50%;
      margin-bottom: 35px; }
  .panel-team .teams .img {
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -ms-transform: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    display: inline-block;
    vertical-align: middle;
    width: 79px;
    height: 79px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px; }

@media (max-width: 1240px) and (min-width: 992px) {
  .panel-team .teams .img {
    margin: 0 0 10px;
    display: block; } }
    .panel-team .teams .img:hover {
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  .panel-team .teams .desc {
    display: inline-block;
    vertical-align: middle;
    max-width: 140px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px; }
    @media (max-width: 767px) {
      .panel-team .teams .desc {
        font-size: 12px; } }
    .panel-team .teams .desc span {
      display: block; }
    .panel-team .teams .desc .name {
      text-transform: uppercase; }
      .panel-team .teams .desc .name a {
        color: #000; }
        .panel-team .teams .desc .name a:hover {
          color: #1e6ab4; }
    .panel-team .teams .desc .job {
      color: #1971c8;
      text-transform: capitalize; }
  .panel-team .img-collage {
    width: 767px;
    float: right;
    margin: 12px -189px 0 0; }
    @media (max-width: 1569px) {
      .panel-team .img-collage {
        margin-right: -80px;
        width: 669px; } }
    @media (max-width: 1240px) {
      .panel-team .img-collage {
        width: 539px; } }
    @media (max-width: 991px) {
      .panel-team .img-collage {
        margin: 0 auto;
        float: none; } }
    @media (max-width: 767px) {
      .panel-team .img-collage {
        width: auto; } }
    .panel-team .img-collage figure {
      display: inline-block;
      vertical-align: bottom; }
      .panel-team .img-collage figure:first-child {
        -webkit-transform: rotate(-7deg);
        transform: rotate(-7deg);
        margin-bottom: 64px;
        width: 60.4%; }
      .panel-team .img-collage figure:nth-child(2) {
        margin: 0 -203px 0 -269px;
        position: relative;
        z-index: 1;
        width: 50.2%; }
        @media (max-width: 1240px) {
          .panel-team .img-collage figure:nth-child(2) {
            margin: 0 -132px 0 -201px; } }
        @media (max-width: 767px) {
          .panel-team .img-collage figure:nth-child(2) {
            margin: 0 -23% 0 -37%; } }
      .panel-team .img-collage figure:last-child {
        -webkit-transform: rotate(17deg);
        transform: rotate(17deg);
        width: 45%;
        margin-bottom: 60px; }
    .panel-team .img-collage .img {
      border: 7px solid #fff;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.28); }
      .panel-team .img-collage .img img {
        width: 100%;
        height: auto;
        vertical-align: top; }
    .panel-team .img-collage figcaption {
      background: #1e1e1e;
      border-radius: 4px;
      padding: 19px 15px 18px;
      position: absolute;
      bottom: -20px;
      left: 35px;
      right: 35px;
      font: 500 14px/18px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
      text-transform: uppercase;
      color: #fff; }
      @media (max-width: 767px) {
        .panel-team .img-collage figcaption {
          font-size: 9px;
          left: 19px;
          right: 19px;
          padding: 5px 7px;
          bottom: -12px; } }
      .panel-team .img-collage figcaption span {
        color: #a3cd49; }

/* ---------------------------------------------------------
   Panel testimonial
   ---------------------------------------------------------*/
.panel-testimonial {
  position: relative;
  padding: 151px 0 155px;
  color: #fff;
  font-weight: 300; }
  @media (min-width: 992px) {
    .panel-testimonial {
      font-size: 22px;
      line-height: 1.64; } }
  @media (max-width: 991px) {
    .panel-testimonial {
      padding: 111px 0 72px; } }
  @media (max-width: 767px) {
    .panel-testimonial {
      padding: 63px 0 45px; } }
  .panel-testimonial:before {
    background: url("../../images/bg-testimonial-area.jpg") 50% 50% no-repeat #172d51;
    background-size: cover; }
  .panel-testimonial .container {
    position: relative; }
  .panel-testimonial .heading {
    margin: 0 8% 42px;
    line-height: 28px;
    padding-bottom: 30px;
    position: relative; }
    @media (max-width: 1240px) {
      .panel-testimonial .heading {
        margin: 0 0 42px; } }
    .panel-testimonial .heading:after {
      content: '';
      position: absolute;
      width: 254px;
      height: 2px;
      background: #fff;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
      @media (max-width: 767px) {
        .panel-testimonial .heading:after {
          width: 60px; } }
    .panel-testimonial .heading h2 {
      color: #fff;
      margin-bottom: 18px; }
    .panel-testimonial .heading h3 {
      color: #3075b9;
      margin-bottom: 17px; }
  .panel-testimonial .get-quote {
    padding-bottom: 76px; }
    @media (max-width: 767px) {
      .panel-testimonial .get-quote {
        padding-bottom: 30px; } }
    .panel-testimonial .get-quote .quote-str {
      display: inline-block;
      vertical-align: top;
      margin: 0 7px;
      padding-top: 10px;
      padding-bottom: 11px;
      line-height: 23px; }
    .panel-testimonial .get-quote .btn {
      padding: 9px 12px; }
  .panel-testimonial .testimonial {
    background: #fff;
    color: #000;
    border-radius: 7px;
    background-clip: padding-box;
    padding: 38px 29px 43px 44px;
    margin-top: 10px;
    border: 0;
    max-width: 477px;
    font: normal 22px/1.64 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif; }
    @media (max-width: 991px) {
      .panel-testimonial .testimonial {
        max-width: none;
        font-size: 16px;
        margin-bottom: 45px; } }
    @media (max-width: 767px) {
      .panel-testimonial .testimonial {
        padding: 38px 25px 31px; } }
    .panel-testimonial .testimonial img {
      height: auto;
      display: block;
      width: 162px;
      margin: -119px auto 39px; }
    .panel-testimonial .testimonial q {
      display: block;
      text-transform: none;
      font-style: normal;
      margin-bottom: 34px; }
      .panel-testimonial .testimonial q:before {
        content: '';
        display: inline-block;
        vertical-align: top;
        width: 32px;
        height: 22px;
        margin-right: 21px;
        background: url("../../images/bg-quote.svg") no-repeat 0 0/100% auto; }
    .panel-testimonial .testimonial cite {
      display: block;
      text-transform: capitalize;
      font-style: normal; }
      .panel-testimonial .testimonial cite span {
        display: block; }
      .panel-testimonial .testimonial cite .name {
        font-weight: 500; }
      .panel-testimonial .testimonial cite .company {
        color: #3075b9; }
  .panel-testimonial .article {
    padding-bottom: 40px; }
    @media (max-width: 767px) {
      .panel-testimonial .article {
        padding-bottom: 7px; } }
    .panel-testimonial .article .subtitle {
      display: block;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: 5px;
      margin-bottom: 23px;
      color: #89bb18; }
      @media (max-width: 1240px) {
        .panel-testimonial .article .subtitle {
          margin-bottom: 10px; } }
      @media (max-width: 991px) {
        .panel-testimonial .article .subtitle {
          font-size: 19px;
          margin-bottom: 0; } }
      @media (max-width: 767px) {
        .panel-testimonial .article .subtitle {
          margin-bottom: 7px; } }
    .panel-testimonial .article h3 {
      font-style: italic;
      font-weight: 600;
      font-size: 48px;
      line-height: 1.24;
      margin-bottom: 32px; }
      @media (max-width: 1240px) {
        .panel-testimonial .article h3 {
          font-size: 42px;
          margin-bottom: 20px; } }
      @media (max-width: 991px) {
        .panel-testimonial .article h3 {
          font-size: 32px; } }
      @media (max-width: 767px) {
        .panel-testimonial .article h3 {
          font-size: 26px;
          line-height: 1.1; } }
  .panel-testimonial .btn-circle {
    bottom: -220px; }
    @media (max-width: 991px) {
      .panel-testimonial .btn-circle {
        bottom: -127px; } }
    @media (max-width: 767px) {
      .panel-testimonial .btn-circle {
        bottom: -68px; } }

.slider-testimonial .slide {
  padding-top: 72px; }

.slider-testimonial .slick-dots {
  position: relative;
  z-index: 2; }
  @media (min-width: 992px) {
    .slider-testimonial .slick-dots {
      margin: -48px 0 0 52%; } }
  @media (max-width: 991px) {
    .slider-testimonial .slick-dots {
      text-align: center; } }
  .slider-testimonial .slick-dots li {
    margin: 0 14px 0 0; }

.team_project {
  position: relative; }
  .team_project.less_teams .btn_team .fa {
    display: none; }
  .team_project.more_teams .panel_team_list {
    height: 135px;
    overflow: hidden; }
    .team_project.more_teams .panel_team_list.open {
      height: auto; }
  .team_project.more_teams:after {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+40,ffffff+100&0+42,1+70 */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 42%, white 70%, white 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 42%, white 70%, white 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
    /* IE6-9 */
    border-radius: 0 0 10px 10px;
    display: block;
    height: 135px;
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    clear: both; }
  .team_project.more_teams.open .btn_team i {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg); }
  .team_project.more_teams.open .panel_team_list {
    height: auto; }
  .team_project.more_teams.open:after {
    background: none; }

.panel_team_list {
  padding-top: 25px; }
  .panel_team_list .item {
    width: 33.3333333333%;
    float: left;
    margin-bottom: 5px !important; }
    .panel_team_list .item:nth-child(n) {
      margin-right: 0;
      margin-bottom: 0; }
    .panel_team_list .item:nth-child(3n) {
      margin-right: 0;
      margin-bottom: 0; }
    @media (max-width: 767px) {
      .panel_team_list .item {
        width: 50%; }
        .panel_team_list .item:nth-child(n) {
          margin-right: 0;
          margin-bottom: 0; }
        .panel_team_list .item:nth-child(2n) {
          margin-right: 0;
          margin-bottom: 0; } }
    .panel_team_list .item .inner_left {
      float: left;
      margin-right: 10px; }
      .panel_team_list .item .inner_left .avatar_circle_sm {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-align: center;
        color: #f5f7fd;
        font-size: 18px;
        font-weight: 500;
        line-height: 43px;
        display: inline-block; }
      .panel_team_list .item .inner_left .avatar_circle_md {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        text-align: center;
        color: #f5f7fd;
        font-size: 18px;
        font-weight: 500;
        line-height: 53px;
        display: inline-block; }
    .panel_team_list .item .inner_right {
      float: left; }
      .panel_team_list .item .inner_right p.title {
        color: #8e9ca3;
        font-size: 12px;
        font-weight: 500;
        margin-top: 1px;
        margin-bottom: 0; }
      .panel_team_list .item .inner_right p.name {
        color: #1e3948;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 0; }

.heading_wrap h2 {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 1px; }

.panel_team_members.inner-box hr {
  margin-top: 5px; }

.panel_team_members .team_members_wrap {
  margin-bottom: -12px; }
  .panel_team_members .team_members_wrap .panel_team_list {
    padding: 0; }
    .panel_team_members .team_members_wrap .panel_team_list .item {
      width: 48.75%; }
      .panel_team_members .team_members_wrap .panel_team_list .item:nth-child(n) {
        margin-right: 2.5%;
        margin-bottom: 2.5%; }
      .panel_team_members .team_members_wrap .panel_team_list .item:nth-child(2n) {
        margin-right: 0;
        margin-bottom: 0; }
      @media (max-width: 767px) {
        .panel_team_members .team_members_wrap .panel_team_list .item {
          width: 100%; }
          .panel_team_members .team_members_wrap .panel_team_list .item:nth-child(n) {
            margin-right: 2.5%;
            margin-bottom: 2.5%; }
          .panel_team_members .team_members_wrap .panel_team_list .item:nth-child(1n) {
            margin-right: 0;
            margin-bottom: 0; } }

.panel-timeline ul.timeline {
  position: relative;
  margin: 0;
  padding-left: 0;
  padding-bottom: 25px; }
  .panel-timeline ul.timeline::before, .panel-timeline ul.timeline::after {
    content: ''; }
  .panel-timeline ul.timeline::after {
    display: table;
    clear: both; }
  .panel-timeline ul.timeline::before {
    position: absolute;
    top: 0;
    left: 16px;
    bottom: 0;
    width: 2px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #e7e6e0; }
  @media (min-width: 769px) {
    .panel-timeline ul.timeline::before {
      left: 50%; } }
  .panel-timeline ul.timeline > li.item {
    position: relative;
    margin-left: 25px;
    min-height: 155px; }
    @media (max-width: 767px) {
      .panel-timeline ul.timeline > li.item {
        margin-left: 42px; } }
    .panel-timeline ul.timeline > li.item .badge {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      position: absolute;
      top: 17px;
      left: -26px;
      margin: 0;
      padding: 0;
      width: 30px;
      height: 30px;
      border: 0;
      border-radius: 100%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      content: '';
      outline: none;
      z-index: 100; }
    .panel-timeline ul.timeline > li.item .inner_item {
      padding: 23px 20px;
      position: relative;
      background-color: white;
      border: 1px solid #e8ebec;
      border-radius: 5px;
      box-shadow: 0 2px 0 #e8ebec;
      overflow: hidden;
      z-index: 100; }
      .panel-timeline ul.timeline > li.item .inner_item h4 {
        color: #1e3948;
        font-size: 15px;
        font-weight: 500; }
      .panel-timeline ul.timeline > li.item .inner_item p.date {
        color: #89bc17;
        font-size: 14px;
        font-weight: 500;
        margin: 15px 0 14px; }
        .panel-timeline ul.timeline > li.item .inner_item p.date .fa {
          margin-right: 9px; }
        .panel-timeline ul.timeline > li.item .inner_item p.date .tooltip_box {
          margin: 0;
          margin-left: 5px;
          color: #bbc3c8; }
      .panel-timeline ul.timeline > li.item .inner_item p.desc {
        color: #1e3948;
        font-size: 13px;
        font-weight: 300;
        line-height: 22px;
        margin: 0; }
      .panel-timeline ul.timeline > li.item .inner_item p {
        margin: 0; }
    .panel-timeline ul.timeline > li.item + li {
      margin-top: 20px; }
    @media (max-width: 767px) {
      .panel-timeline ul.timeline > li.item:after {
        background: #e8ebec;
        content: "";
        display: block;
        height: 2px;
        position: absolute;
        left: -7%;
        top: 31px;
        width: 9%;
        z-index: 0; }
      .panel-timeline ul.timeline > li.item:first-of-type::before {
        background: white none repeat scroll 0 0;
        content: "";
        display: block;
        height: 17px;
        left: -34px;
        position: absolute;
        top: 0;
        width: 20px;
        z-index: 101; }
      .panel-timeline ul.timeline > li.item:last-of-type::before {
        background: white none repeat scroll 0 0;
        content: "";
        display: block;
        height: 100%;
        left: -34px;
        position: absolute;
        top: 47px;
        width: 20px;
        z-index: 101;
        bottom: 0; } }
    @media (min-width: 769px) {
      .panel-timeline ul.timeline > li.item {
        margin-left: 0;
        width: calc(50% - 25px); }
        .panel-timeline ul.timeline > li.item:nth-of-type(odd) {
          float: left;
          clear: left; }
          .panel-timeline ul.timeline > li.item:nth-of-type(odd):after {
            background: #e8ebec;
            content: "";
            display: block;
            height: 2px;
            position: absolute;
            right: -7%;
            top: 31px;
            width: 9%;
            z-index: 0; }
          .panel-timeline ul.timeline > li.item:nth-of-type(odd) .badge {
            right: -26px;
            left: auto;
            -webkit-transform: translateX(50%);
            transform: translateX(50%);
            z-index: 50; }
        .panel-timeline ul.timeline > li.item:nth-of-type(even) {
          margin-top: 20px;
          float: right;
          clear: right; }
          .panel-timeline ul.timeline > li.item:nth-of-type(even):after {
            background: #e8ebec;
            content: "";
            display: block;
            height: 2px;
            position: absolute;
            left: -7%;
            top: 31px;
            width: 9%;
            z-index: 0; }
        .panel-timeline ul.timeline > li.item:nth-child(1) {
          margin-top: 15px; }
        .panel-timeline ul.timeline > li.item:nth-child(2) {
          margin-top: 70px; } }

.panel-timeline .dot_top {
  background-color: #e8ebec;
  z-index: 100;
  position: relative;
  width: 10px;
  height: 10px;
  display: block;
  content: '';
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-radius: 50px; }
  @media (max-width: 767px) {
    .panel-timeline .dot_top {
      display: none; } }

.panel-timeline .dot_bottom {
  background-color: #e8ebec;
  z-index: 100;
  position: relative;
  width: 10px;
  height: 10px;
  display: block;
  content: '';
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-radius: 50px; }
  @media (max-width: 767px) {
    .panel-timeline .dot_bottom {
      display: none; } }

.slide_menu_panel {
  display: none; }
  @media (max-width: 767px) {
    .slide_menu_panel {
      display: block; }
      .slide_menu_panel.inner-box {
        padding: 4px 18px !important;
        margin-bottom: 30px !important; }
        .slide_menu_panel.inner-box #slide_menu {
          display: block; }
          .slide_menu_panel.inner-box #slide_menu .header {
            background: white;
            margin-bottom: 18px;
            border-bottom: 2px solid #e8ebec; }
            .slide_menu_panel.inner-box #slide_menu .header a {
              color: #bbc3c8;
              font-size: 19px;
              font-weight: 500; }
          .slide_menu_panel.inner-box #slide_menu .heading_wrap {
            margin-bottom: -18px;
            margin-top: 18px; }
          .slide_menu_panel.inner-box #slide_menu > ul > li {
            border-bottom: 2px solid #e8ebec; }
            .slide_menu_panel.inner-box #slide_menu > ul > li a {
              color: #1e3948;
              font-size: 20px;
              font-weight: 500;
              padding-bottom: 8px;
              padding-top: 9px;
              display: block; }
            .slide_menu_panel.inner-box #slide_menu > ul > li .panel_team_list {
              padding-top: 5px; }
          .slide_menu_panel.inner-box #slide_menu > ul li:last-of-type {
            border-bottom: none; }
          .slide_menu_panel.inner-box #slide_menu a.next:after {
            content: '\f061';
            font-family: FontAwesome;
            float: right;
            color: #bbc3c8;
            font-size: 15px;
            font-weight: 400;
            position: relative;
            top: 2px; }
          .slide_menu_panel.inner-box #slide_menu a.back:before {
            content: '\f060';
            float: left;
            font-family: FontAwesome;
            color: #bbc3c8;
            font-size: 15px;
            font-weight: 400;
            position: relative;
            top: 2px;
            margin-right: 10px; } }

.search-bar {
  height: 50px;
  background-color: #1e3948; }
  .search-bar .container {
    position: relative;
    padding-top: 7px;
    z-index: 5; }
    .search-bar .container #search-bar {
      width: 100%;
      height: 35px;
      background-color: #fbfbfb;
      border-radius: 5px;
      box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
      padding-left: 44px;
      padding-right: 20px;
      font-size: 15px;
      font-weight: 300;
      line-height: 35px;
      position: relative;
      color: #1e3948; }
      .search-bar .container #search-bar.open {
        border-radius: 5px 5px 0 0; }
    .search-bar .container ::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #bbc3c8;
      opacity: 1; }
    .search-bar .container :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #bbc3c8;
      opacity: 1; }
    .search-bar .container ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #bbc3c8;
      opacity: 1; }
    .search-bar .container :-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #bbc3c8;
      opacity: 1; }
    .search-bar .container:after {
      content: "\f002";
      display: block;
      font-family: FontAwesome;
      color: #1e3948;
      font-size: 17px;
      font-weight: 400;
      left: 29px;
      position: absolute;
      top: 12px; }
    .search-bar .container #search-bar.open + .results {
      display: block; }
    .search-bar .container .results {
      background-color: #fbfbfb;
      border-radius: 0 0 5px 5px;
      box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
      position: relative;
      top: -1px; }
      .search-bar .container .results ul li {
        padding-left: 44px;
        padding-right: 20px;
        width: 100%;
        border-top: 1px solid #e8ebec;
        cursor: pointer;
        overflow: hidden;
        height: 35px;
        line-height: 35px; }
        .search-bar .container .results ul li span {
          font-weight: 500; }
      .search-bar .container .results i.fa-times-circle {
        background: #fbfbfb none repeat scroll 0 0;
        color: #1e3948;
        font-size: 19px;
        font-weight: 400;
        position: absolute;
        right: 14px;
        top: -27px;
        cursor: pointer; }

.table-stripe {
  font-weight: 500;
  font-size: 16px;
  text-align: center; }
  @media (max-width: 767px) {
    .table-stripe {
      font-size: 12px; } }
  .table-stripe .col2 {
    width: 30%; }
  .table-stripe .col3 {
    width: 29%; }
  .table-stripe > thead > tr th {
    border: none;
    color: #fff;
    text-transform: uppercase;
    height: 80px;
    vertical-align: middle;
    text-align: center; }
    @media (max-width: 767px) {
      .table-stripe > thead > tr th {
        height: 66px; } }
    .table-stripe > thead > tr th:first-child {
      border-top-left-radius: 14px; }
    .table-stripe > thead > tr th:last-child {
      border-top-right-radius: 14px; }
  .table-stripe > tbody > tr > td {
    background: #e9f0f3;
    border: none;
    height: 72px;
    vertical-align: middle;
    padding: 8px 10px 8px 28px; }
    @media (max-width: 767px) {
      .table-stripe > tbody > tr > td {
        padding-left: 10px;
        height: 58px; } }
    .table-stripe > tbody > tr > td:first-child {
      font-weight: 400;
      text-align: left; }
  .table-stripe > tbody > tr:nth-child(even) > td {
    background: #f4f6f8; }

.brief h1, .brief h2, .brief h3, .brief h4, .brief h5, .brief h6 {
  font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif; }

.screenshot-photo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 10000; }
  .screenshot-photo .close-screenshot {
    float: right;
    margin: 5px 5px 5px 0;
    border-color: white !important;
    color: white !important; }
    .screenshot-photo .close-screenshot:hover {
      background: none; }
  .screenshot-photo img {
    clear: both;
    max-width: 95%;
    margin: 10px auto;
    display: block; }

.nav-bordered > li {
  float: left; }
  .nav-bordered > li > a {
    display: inline-block;
    padding: 10px 0;
    font-weight: 300;
    color: inherit;
    border-bottom: 4px solid transparent; }
    .nav-bordered > li > a:hover, .nav-bordered > li > a:focus {
      color: #337ab7;
      background-color: transparent; }
  .nav-bordered > li + li {
    margin-left: 30px; }
  .nav-bordered > li.active > a, .nav-bordered > li.active > a:hover, .nav-bordered > li.active > a:focus {
    font-weight: 500;
    color: #337ab7;
    border-bottom-color: #337ab7; }

.nav-bordered.nav-justified > li + li {
  margin-left: 0; }

.nav-bordered.nav-justified > li > a {
  margin-bottom: 0; }

.nav-bordered.nav-stacked > li {
  float: none;
  margin-left: 0; }
  .nav-bordered.nav-stacked > li + li {
    margin-top: 0; }
  .nav-bordered.nav-stacked > li.active > a, .nav-bordered.nav-stacked > li.active > a:hover, .nav-bordered.nav-stacked > li.active > a:focus {
    border-left-color: #337ab7; }

.nav-bordered.nav-stacked > li > a {
  display: block;
  padding: 5px 10px 5px 30px;
  border-bottom: 0;
  border-left: 4px solid transparent; }
  .nav-bordered.nav-stacked > li > a:hover, .nav-bordered.nav-stacked > li > a:focus {
    border-left: 4px solid; }

.nav-bordered.nav-stacked .nav-header {
  padding-left: 34px; }

.nav-bordered.nav-stacked .nav-divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
  margin-left: 34px;
  margin-top: 20px;
  margin-bottom: 25px; }

.nav > .nav-header {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 5px;
  font-size: 85%;
  font-weight: normal;
  letter-spacing: 1px;
  color: #b6b6b6;
  text-transform: uppercase; }

.nav > li + .nav-header {
  margin-top: 20px; }

.brief-panel {
  border-top: 3px solid #337ab7 !important; }

.sitemap > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%; }
  .sitemap > ul li {
    margin: 0 0 9px 0;
    width: 382px;
    list-style: none; }
    .sitemap > ul li:last-child {
      margin: 0; }
    .sitemap > ul li .page-details {
      padding: 15px;
      border: 1px solid #ddd;
      border-top: none; }
    .sitemap > ul li a {
      display: block;
      border: 1px solid #ddd;
      position: relative;
      padding: 10px 15px;
      height: auto;
      min-height: 20px;
      line-height: 30px;
      word-wrap: break-word;
      color: #333;
      font-weight: 700;
      text-decoration: none;
      background: #fafafa; }
      .sitemap > ul li a:hover {
        cursor: move; }
        .sitemap > ul li a:hover i {
          cursor: pointer; }
      .sitemap > ul li a i {
        float: right;
        padding-top: 8px; }
        .sitemap > ul li a i:hover {
          cursor: pointer; }
    .sitemap > ul li ul {
      margin: 9px 0 0 0; }

.timeline {
  list-style: none;
  padding: 20px 0px 30px;
  position: relative;
  margin: 0; }
  .timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 50%;
    margin-left: -1.5px; }
  .timeline > li {
    margin-bottom: 20px;
    position: relative; }
    .timeline > li:last-child {
      margin-bottom: 0; }
  .timeline > li:before,
  .timeline > li:after {
    content: " ";
    display: table; }
  .timeline > li:after {
    clear: both; }
  .timeline > li:before,
  .timeline > li:after {
    content: " ";
    display: table; }
  .timeline > li:after {
    clear: both; }
  .timeline > li > .timeline-panel {
    width: 46%;
    float: left;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 20px;
    position: relative;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); }
  .timeline > li > .timeline-panel:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #ccc;
    border-right: 0 solid #ccc;
    border-bottom: 15px solid transparent;
    content: " "; }
  .timeline > li > .timeline-panel:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #fff;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    content: " "; }
  .timeline > li > .timeline-badge {
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -25px;
    background-color: #999999;
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%; }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right; }
  .timeline > li.timeline-inverted > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto; }
  .timeline > li.timeline-inverted > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto; }
  .timeline .timeline-badge.primary {
    background-color: #2e6da4 !important; }
  .timeline .timeline-badge.success {
    background-color: #3f903f !important; }
  .timeline .timeline-badge.warning {
    background-color: #f0ad4e !important; }
  .timeline .timeline-badge.danger {
    background-color: #d9534f !important; }
  .timeline .timeline-badge.info {
    background-color: #5bc0de !important; }
  .timeline .timeline-title {
    margin-top: 0;
    color: inherit; }
  .timeline .timeline-body > p,
  .timeline .timeline-body > ul {
    margin-bottom: 0; }
  .timeline .timeline-body > p + p {
    margin-top: 5px; }

.algolia-search {
  position: relative;
  height: 50px; }
  .algolia-search:after {
    content: "\f002";
    display: block;
    color: #1e3948;
    font: 400 17px FontAwesome;
    position: absolute;
    left: 14px;
    top: 9px; }
  .algolia-search input {
    height: 35px;
    background-color: #fbfbfb;
    border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    padding-left: 44px;
    padding-right: 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 35px;
    color: #1e3948;
    width: 100%; }
    .algolia-search input.open {
      border-radius: 5px 5px 0 0; }
  .algolia-search ul {
    width: 100%;
    background-color: #fbfbfb;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    top: -1px;
    z-index: 1; }
    .algolia-search ul li {
      padding-left: 44px;
      padding-right: 20px;
      width: 100%;
      border-top: 1px solid #e8ebec;
      cursor: pointer;
      overflow: hidden;
      height: 35px;
      line-height: 35px; }
      .algolia-search ul li:focus {
        background-color: #e8f0f7;
        color: #1e6ab4;
        outline: 0; }
      .algolia-search ul li span {
        font-weight: 500; }

/* ---------------------------------------------------------
   Blog listing
   ---------------------------------------------------------*/
.blog-list {
  padding-top: 62px;
  padding-bottom: 62px; }
  @media (max-width: 767px) {
    .blog-list {
      padding-bottom: 24px;
      padding-top: 24px; } }
  @media (min-width: 768px) {
    .blog-list .col-sm-8 {
      border-right: 1px solid #ccc; } }
  .blog-list .load-more {
    -moz-transition: background 0.25s ease-in;
    -o-transition: background 0.25s ease-in;
    -webkit-transition: background 0.25s ease-in;
    -ms-transform: background 0.25s ease-in;
    transition: background 0.25s ease-in;
    display: block;
    color: #fff;
    background: #17222c;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font: 700 14px/29px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    padding: 33px 70px 33px 3000px;
    margin: 0 -15px 0 -3000px; }
    @media (max-width: 767px) {
      .blog-list .load-more {
        margin-right: -30px; } }
    @media (max-width: 767px) {
      .blog-list .load-more {
        padding: 19px 70px 16px 3000px;
        margin-bottom: 20px; } }
    .blog-list .load-more .ico {
      margin-left: 5px;
      display: inline-block; }
      .blog-list .load-more .ico:before {
        font-family: 'FontAwesome';
        content: "\f063"; }
    .blog-list .load-more:hover {
      background: #31495e; }
    .blog-list .load-more.disabled .ico {
      -webkit-animation: spin 4s infinite linear;
      animation: spin 4s infinite linear; }
      .blog-list .load-more.disabled .ico:before {
        content: "\f110"; }

.blog {
  position: relative;
  padding: 55px 44px 55px 157px; }
  @media (max-width: 991px) {
    .blog {
      padding: 55px 10px 50px 120px; } }
  @media (max-width: 479px) {
    .blog {
      padding: 55px 0 50px; } }
  .blog:first-child {
    padding-top: 14px; }
    @media (min-width: 992px) {
      .blog:first-child {
        padding-bottom: 97px; } }
    .blog:first-child .head .category {
      top: 23px; }
  .blog:nth-child(even) {
    color: #fff; }
    @media (min-width: 992px) {
      .blog:nth-child(even) {
        padding: 55px 44px 31px 135px; } }
    .blog:nth-child(even):after, .blog:nth-child(even):before {
      content: '';
      position: absolute;
      top: 0; }
    .blog:nth-child(even):after {
      bottom: 0;
      right: -15px;
      left: -9999px;
      background: #17222c;
      z-index: -1; }
      @media (max-width: 767px) {
        .blog:nth-child(even):after {
          right: -30px; } }
    .blog:nth-child(even):before {
      height: 0;
      width: 0;
      border-left: 15px solid transparent;
      border-right: 15px solid transparent;
      border-top: 15px solid #fff;
      border-width: 13px 34px 0;
      left: -35px; }
      @media (max-width: 991px) {
        .blog:nth-child(even):before {
          left: -17px; } }
    .blog:nth-child(even) .head {
      color: #fff;
      margin-bottom: 25px; }
      .blog:nth-child(even) .head h2 a {
        color: #fff; }
      .blog:nth-child(even) .head .author {
        color: #2881d7;
        font-weight: 700; }
        .blog:nth-child(even) .head .author:hover {
          color: #1e6ab4; }
      .blog:nth-child(even) .head .category {
        background: #81b11d; }
    .blog:nth-child(even) .btn-info {
      border-color: #3a444c;
      color: #fff; }
      .blog:nth-child(even) .btn-info:hover {
        background: #3a444c; }
  .blog .head {
    margin-bottom: 34px;
    color: rgba(0, 0, 0, 0.5); }
    @media (max-width: 767px) {
      .blog .head {
        margin-bottom: 24px; } }
    .blog .head h2 {
      font: italic 700 28px/28px "Archer", serif;
      margin-bottom: 11px; }
      .blog .head h2 a {
        color: #000;
        text-decoration: none; }
        .blog .head h2 a:hover {
          color: #1e6ab4; }
    .blog .head .meta {
      display: block; }
    .blog .head .avatar {
      width: 26px;
      height: 26px;
      display: inline-block;
      margin: 0 5px;
      box-shadow: none; }
    .blog .head .author {
      color: rgba(0, 0, 0, 0.5); }
    .blog .head .category {
      background: #1e6ab4;
      border-radius: 5px;
      color: #fff;
      font-size: 14px;
      line-height: 18px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 2px 10px;
      min-width: 86px;
      text-align: center;
      display: inline-block;
      vertical-align: top;
      margin-top: 14px; }
      @media (min-width: 480px) {
        .blog .head .category {
          position: absolute;
          left: 0;
          top: 60px;
          margin-top: 0; } }
      .blog .head .category:hover {
        background: #134372; }
  .blog .img {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 23px; }
  .blog p {
    margin-bottom: 26px; }
  .blog .btn-info {
    color: #101010;
    padding: 6px 18px; }
    .blog .btn-info:hover {
      color: #fff; }

.heading-demo .t {
  display: table;
  width: 100%;
  margin-bottom: 22px; }
  .heading-demo .t > * {
    display: table-cell;
    vertical-align: baseline; }
  .heading-demo .t span {
    width: 80px;
    text-align: right; }

.blog-single {
  padding-bottom: 85px; }
  @media (max-width: 767px) {
    .blog-single {
      padding-bottom: 44px; } }
  .blog-single h1, .blog-single h2, .blog-single h3 {
    font-style: italic; }
  .blog-single h1 {
    font-weight: 600;
    font-style: italic; }
  .blog-single h4, .blog-single h5, .blog-single h6 {
    font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif; }
  .blog-single h6 {
    text-transform: uppercase; }
  .blog-single .video {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin: 5px 0 20px 30px;
    width: 454px; }
    @media (max-width: 767px) {
      .blog-single .video {
        float: none !important;
        margin: 0 0 30px;
        width: auto; } }
    @media (max-width: 767px) {
      .blog-single .video img {
        width: 100%; } }
    .blog-single .video .btn-play {
      -moz-transition: all 0.25s ease-in;
      -o-transition: all 0.25s ease-in;
      -webkit-transition: all 0.25s ease-in;
      -ms-transform: all 0.25s ease-in;
      transition: all 0.25s ease-in;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 86px;
      height: 86px;
      border: 6px solid #fff;
      background: rgba(0, 0, 0, 0.48);
      border-radius: 50%; }
      .blog-single .video .btn-play:hover {
        background: rgba(0, 0, 0, 0.78); }
      .blog-single .video .btn-play:after {
        height: 0;
        width: 0;
        border-bottom: 13px solid transparent;
        border-left: 13px solid #fff;
        border-top: 13px solid transparent;
        border-width: 9px 0 8px 13px;
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }

.page-title {
  display: inline-block;
  margin: 0;
  font-size: 25px;
  font-weight: 500; }

@media (max-width: 767px) {
  .brief.tabs-sidebar-layout .btn_start {
    float: right; } }

.brief .tabs-wrapper .nav-tabs > li {
  width: 25%; }

.brief .tab-content .expand-wrapper {
  text-align: center;
  position: relative;
  margin-bottom: 25px; }
  .brief .tab-content .expand-wrapper:before {
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 12px;
    width: 100%;
    background-color: #e8ebec;
    z-index: 0; }
  .brief .tab-content .expand-wrapper .btn-expand {
    background-color: #e8ebec;
    color: #1e3948;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 13px 1px;
    border-radius: 50px;
    position: relative;
    z-index: 1; }
    .brief .tab-content .expand-wrapper .btn-expand i.fa {
      margin-left: 7px; }

.brief .summary-info {
  max-width: 225px;
  width: 100%;
  margin: 0 auto;
  color: #1e3948;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  text-align: center; }

.brief .summary-box {
  background-color: #fbfbfb;
  border: 1px solid #e8ebec;
  border-radius: 5px;
  box-shadow: 0 2px 0 #e8ebec;
  margin-top: 25px;
  margin-bottom: 25px; }
  .brief .summary-box .item {
    border-bottom: 1px solid #e8ebec;
    position: relative;
    padding: 9px 15px; }
    .brief .summary-box .item h5 {
      margin: 0;
      color: #1e3948;
      font-size: 18px;
      font-weight: 500; }
    .brief .summary-box .item p {
      margin: 0;
      color: #8e9ca3;
      font-size: 12px;
      font-weight: 300; }
    .brief .summary-box .item i {
      position: absolute;
      right: 20px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      color: #bbc3c8; }
    .brief .summary-box .item:last-of-type {
      border-bottom: 0; }

.brief .panel-project-details .item .col-right {
  margin-left: 52px; }

@media (max-width: 1240px) {
  .brief #htab4 .heading_wrap .btn-oval-sm.pdf, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open {
    float: right;
    height: auto;
    padding: 9px 16px 7px 39px;
    position: relative;
    width: auto; }
    .brief #htab4 .heading_wrap .btn-oval-sm.pdf:before, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open:before {
      left: 23px; }
    .brief #htab4 .heading_wrap .btn-oval-sm.pdf span, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open span {
      display: inline-block; } }

@media (max-width: 767px) {
  .brief #htab4 .heading_wrap h2 {
    display: block;
    text-align: center; }
  .brief #htab4 .heading_wrap .btn-oval-sm.pdf, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open {
    float: none;
    left: 50%;
    margin: 12px 0 8px;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
    .brief #htab4 .heading_wrap .btn-oval-sm.pdf:before, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open:before {
      left: 23px; }
    .brief #htab4 .heading_wrap .btn-oval-sm.pdf span, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open span {
      display: inline-block; } }

.collapse-wrapper {
  margin-bottom: 30px; }
  .collapse-wrapper > .item {
    background-color: white;
    border: 1px solid #e8ebec;
    border-radius: 5px;
    box-shadow: 0 2px 0 #e8ebec;
    margin-bottom: 17px; }
    .collapse-wrapper > .item .iteam-header {
      padding: 10px 20px 8px 25px; }
      @media (max-width: 767px) {
        .collapse-wrapper > .item .iteam-header {
          padding: 0 10px; } }
      .collapse-wrapper > .item .iteam-header h4 {
        display: inline-block;
        color: #1e3948;
        font-size: 17px;
        font-weight: 500;
        cursor: pointer;
        position: relative;
        margin: 0;
        padding-top: 7px; }
        @media (max-width: 767px) {
          .collapse-wrapper > .item .iteam-header h4 {
            padding-top: 8px; }
            .collapse-wrapper > .item .iteam-header h4 span {
              white-space: nowrap;
              position: relative;
              max-width: 145px;
              overflow: hidden; }
              .collapse-wrapper > .item .iteam-header h4 span.cover:after {
                /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+78 */
                /* FF3.6-15 */
                background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 97%, white 100%);
                /* Chrome10-25,Safari5.1-6 */
                background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 97%, white 100%);
                /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
                /* IE6-9 */
                content: "";
                display: block;
                height: 100%;
                position: absolute;
                right: 0;
                top: 0;
                width: 100%;
                z-index: 2; } }
        .collapse-wrapper > .item .iteam-header h4 span {
          display: inline-block;
          position: relative; }
        .collapse-wrapper > .item .iteam-header h4 i {
          color: #bbc3c8;
          font-size: 20px;
          font-weight: 400;
          margin-left: 5px; }
      .collapse-wrapper > .item .iteam-header ul {
        float: right; }
        .collapse-wrapper > .item .iteam-header ul li {
          float: left; }
          .collapse-wrapper > .item .iteam-header ul li * {
            display: inline-block; }
          .collapse-wrapper > .item .iteam-header ul li span.preview {
            position: relative;
            top: 1px; }
            @media (max-width: 767px) {
              .collapse-wrapper > .item .iteam-header ul li span.preview {
                display: none; } }
          .collapse-wrapper > .item .iteam-header ul li img {
            margin-left: 10px; }
            @media (max-width: 767px) {
              .collapse-wrapper > .item .iteam-header ul li img {
                max-width: 32px;
                margin-left: 4px;
                margin-top: 6px; } }
          .collapse-wrapper > .item .iteam-header ul li .sep {
            width: 1px;
            height: 25px;
            background-color: #e8ebec;
            display: inline-block;
            margin: 8px 14px 0; }
            @media (max-width: 767px) {
              .collapse-wrapper > .item .iteam-header ul li .sep {
                margin: 8px 5px 0; } }
          .collapse-wrapper > .item .iteam-header ul li .btn-success-blank {
            margin-top: 5px;
            padding: 5px 14px; }
            .collapse-wrapper > .item .iteam-header ul li .btn-success-blank i {
              display: none; }
            @media (max-width: 767px) {
              .collapse-wrapper > .item .iteam-header ul li .btn-success-blank {
                border: none;
                posirion: relative;
                margin-top: 6px;
                padding: 0; }
                .collapse-wrapper > .item .iteam-header ul li .btn-success-blank span {
                  display: none; }
                .collapse-wrapper > .item .iteam-header ul li .btn-success-blank i {
                  display: inline-block;
                  font-size: 28px; }
                  .collapse-wrapper > .item .iteam-header ul li .btn-success-blank i.inactive {
                    opacity: 0.4; } }
    .collapse-wrapper > .item .item-content {
      background-color: #fbfbfb;
      border-top: 1px solid #e8ebec;
      padding: 25px 30px 12px; }
      @media (max-width: 767px) {
        .collapse-wrapper > .item .item-content {
          padding: 10px; } }
      .collapse-wrapper > .item .item-content .checkbox-list {
        margin-bottom: 20px; }
        .collapse-wrapper > .item .item-content .checkbox-list .checkbox-item input {
          padding: 0;
          margin: 0;
          margin-right: 7px;
          vertical-align: text-top; }
        .collapse-wrapper > .item .item-content .checkbox-list .checkbox-item span.sep {
          background-color: #bbc3c8;
          display: inline-block;
          height: 15px;
          margin: 0 6px 0 3px;
          position: relative;
          top: 3px;
          width: 1px; }
        .collapse-wrapper > .item .item-content .checkbox-list .checkbox-item .info_file {
          color: #8e9ca3;
          font-family: "Gotham Rounded";
          font-size: 13px;
          font-weight: 300; }
        .collapse-wrapper > .item .item-content .checkbox-list .checkbox-item a.file_name {
          color: #337bb8;
          font-size: 13px;
          font-weight: 300;
          margin-left: 7px; }
          .collapse-wrapper > .item .item-content .checkbox-list .checkbox-item a.file_name i {
            margin-right: 4px; }
      .collapse-wrapper > .item .item-content h5 {
        color: #1e3948;
        font-size: 14px;
        font-weight: 500; }
      .collapse-wrapper > .item .item-content > p {
        font-size: 13px;
        font-weight: 300;
        line-height: 24px; }
        .collapse-wrapper > .item .item-content > p a {
          color: #1a6db4; }

.info-box-green {
  background-color: #f9fcf3;
  border: 1px solid #edf5dc;
  border-radius: 5px;
  box-shadow: 0 2px 0 #edf5dc;
  width: 100%;
  height: 89px;
  padding-right: 20px;
  margin-bottom: 35px; }
  @media (max-width: 767px) {
    .info-box-green {
      padding-right: 0;
      height: 60px; } }
  .info-box-green .icon {
    background-color: #89bc17;
    border-radius: 5px 0 0 5px;
    width: 90px;
    height: 100%;
    float: left;
    text-align: center; }
    @media (max-width: 767px) {
      .info-box-green .icon {
        width: 60px; } }
    .info-box-green .icon i {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      display: inline-block;
      color: white;
      font-size: 25px;
      font-weight: 400; }
  .info-box-green .col:nth-child(2) {
    float: left;
    width: calc(65% - 45px);
    padding: 0;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block; }
    @media (max-width: 1240px) {
      .info-box-green .col:nth-child(2) {
        width: calc(55% - 45px);
        padding-top: 10px;
        padding-bottom: 10px; } }
    @media (max-width: 767px) {
      .info-box-green .col:nth-child(2) {
        width: calc(100% - 60px); } }
    .info-box-green .col:nth-child(2) > p {
      padding: 0 25px;
      text-align: center;
      margin: 0;
      color: #1e3948; }
  .info-box-green .col:nth-child(3) {
    float: left;
    width: calc(35% - 45px);
    padding: 0;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block; }
    @media (max-width: 1240px) {
      .info-box-green .col:nth-child(3) {
        width: calc(45% - 45px); } }
    @media (max-width: 767px) {
      .info-box-green .col:nth-child(3) {
        display: none; } }

.sitemap {
  position: relative; }
  .sitemap .tree ul > li > ul {
    margin-left: 45px; }
    @media (max-width: 767px) {
      .sitemap .tree ul > li > ul {
        margin-left: 15px; } }
  .sitemap .tree {
    /*Remove connectors before root*/
    /*Remove connectors after last child*/ }
    .sitemap .tree .first-level {
      margin-left: 100px; }
      @media (max-width: 767px) {
        .sitemap .tree .first-level {
          margin-left: 15px; } }
    .sitemap .tree li {
      margin: 0px 0;
      list-style-type: none;
      position: relative;
      padding: 20px 5px 0px 5px;
      background: white; }
      @media (max-width: 767px) {
        .sitemap .tree li {
          padding: 8px 0 0 5px; } }
      .sitemap .tree li:before {
        content: '';
        position: absolute;
        top: -5px;
        width: 1px;
        height: 100%;
        right: auto;
        left: -20px;
        border-left: 2px solid #e8ebec;
        bottom: 50px; }
        @media (max-width: 767px) {
          .sitemap .tree li:before {
            border-left: 2px solid #e8ebec;
            bottom: 50px;
            content: "";
            height: 100%;
            left: -5px;
            position: absolute;
            right: auto;
            top: -5px;
            width: 1px; } }
      .sitemap .tree li:after {
        content: '';
        position: absolute;
        top: 50px;
        width: 25px;
        height: 20px;
        right: auto;
        left: -20px;
        border-top: 2px solid #e8ebec; }
        @media (max-width: 767px) {
          .sitemap .tree li:after {
            content: "";
            height: 20px;
            left: -5px;
            position: absolute;
            top: 27px;
            width: 10px; } }
      .sitemap .tree li > div.leaf,
      .sitemap .tree li div.root {
        display: inline-block;
        padding: 8px 10px 8px 20px;
        text-decoration: none;
        background-color: white;
        border: 1px solid #e8ebec;
        border-radius: 5px;
        box-shadow: 0 2px 0 #e8ebec;
        color: #1e3948;
        font-size: 17px;
        font-weight: 500; }
        @media (max-width: 767px) {
          .sitemap .tree li > div.leaf,
          .sitemap .tree li div.root {
            padding: 4px;
            width: 100%; } }
        .sitemap .tree li > div.leaf h5,
        .sitemap .tree li div.root h5 {
          display: inline-block;
          -webkit-transform: translateY(50%);
          transform: translateY(50%);
          margin: 0;
          color: #1e3948;
          font-size: 17px;
          font-weight: 500;
          margin-right: 37px;
          float: left; }
          @media (max-width: 767px) {
            .sitemap .tree li > div.leaf h5,
            .sitemap .tree li div.root h5 {
              margin-right: 15px;
              margin-top: 6px;
              padding-left: 4px;
              -webkit-transform: translateY(0);
              transform: translateY(0);
              font-size: 15px; } }
        .sitemap .tree li > div.leaf p,
        .sitemap .tree li div.root p {
          display: inline-block;
          margin: 0;
          float: right; }
          .sitemap .tree li > div.leaf p span,
          .sitemap .tree li div.root p span {
            color: #8e9ca3;
            font-size: 13px;
            font-weight: 500; }
            @media (max-width: 767px) {
              .sitemap .tree li > div.leaf p span,
              .sitemap .tree li div.root p span {
                display: none; } }
          .sitemap .tree li > div.leaf p *,
          .sitemap .tree li div.root p * {
            display: inline-block;
            text-align: right; }
          @media (max-width: 767px) {
            .sitemap .tree li > div.leaf p img,
            .sitemap .tree li div.root p img {
              max-width: 32px; } }
    .sitemap .tree > ul > li::before,
    .sitemap .tree > ul > li::after {
      border: 0; }
    .sitemap .tree li:last-child::before {
      height: 57px; }
      @media (max-width: 767px) {
        .sitemap .tree li:last-child::before {
          height: 33px; } }

.table-invoice {
  background-color: white;
  margin-bottom: 35px;
  box-shadow: 0 3px 0 #e8ebec;
  border-radius: 5px; }
  .table-invoice table, .table-invoice tr, .table-invoice td {
    border-collapse: separate;
    border: 0; }
  .table-invoice > table {
    width: 100%; }
    .table-invoice > table tr:first-of-type td {
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
      border-bottom: 0; }
    .table-invoice > table tr:last-of-type td {
      border-top: 0;
      border-bottom: 0;
      -webkit-border-bottom-left-radius: 5px;
      -webkit-border-bottom-right-radius: 5px;
      -moz-border-radius-bottomleft: 5px;
      -moz-border-radius-bottomright: 5px;
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px; }
  .table-invoice td {
    border: 1px solid #e8ebec; }
  .table-invoice p {
    margin: 0; }
  .table-invoice tr.inner-table-wrap > td:nth-child(1) {
    width: 53%;
    border-right: 0; }
    @media (max-width: 767px) {
      .table-invoice tr.inner-table-wrap > td:nth-child(1) {
        width: 100%;
        display: block;
        border-right: 1px solid #e8ebec; } }
  .table-invoice tr.inner-table-wrap > td:nth-child(2) {
    width: 47%;
    text-align: center; }
    @media (max-width: 767px) {
      .table-invoice tr.inner-table-wrap > td:nth-child(2) {
        width: 100%;
        display: block;
        border-top: 0; } }
    .table-invoice tr.inner-table-wrap > td:nth-child(2) p {
      padding: 0 15px; }
      .table-invoice tr.inner-table-wrap > td:nth-child(2) p span {
        display: block;
        font-weight: 500; }
    .table-invoice tr.inner-table-wrap > td:nth-child(2) a.btn {
      margin-top: 11px; }
  .table-invoice tr td {
    padding: 14px 10px;
    color: #1e3948;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px; }
    .table-invoice tr td h5 {
      color: #1e3948;
      font-size: 19px;
      font-weight: 500;
      text-align: center;
      margin: 0;
      padding: 4px 0; }
  .table-invoice tr td.inner-table {
    background-color: #fbfbfb;
    padding: 0; }
    .table-invoice tr td.inner-table table {
      width: 100%; }
    .table-invoice tr td.inner-table table, .table-invoice tr td.inner-table th, .table-invoice tr td.inner-table td {
      border: 0;
      border-collapse: collapse; }
    .table-invoice tr td.inner-table tr {
      border-bottom: 1px solid #e8ebec; }
      .table-invoice tr td.inner-table tr td p.light {
        color: #bbc3c8;
        font-size: 12px; }
        .table-invoice tr td.inner-table tr td p.light.green {
          color: #89bc17; }
      .table-invoice tr td.inner-table tr td:nth-child(1) {
        border-right: 1px solid #e8ebec;
        text-align: right;
        width: 70%; }
      .table-invoice tr td.inner-table tr td:nth-child(2) {
        text-align: right;
        width: 30%; }
      .table-invoice tr td.inner-table tr:last-of-type {
        border-bottom: 0; }
  .table-invoice tr:last-of-type td {
    text-align: center; }
    .table-invoice tr:last-of-type td p span {
      color: #bbc3c8; }

.invoice-preview {
  margin-top: 10px;
  padding-bottom: 50px; }
  .invoice-preview > .row:first-of-type .col:nth-child(1) p {
    max-width: 240px;
    color: #1e3948;
    font-size: 15px;
    line-height: 24px;
    font-weight: 300; }
  .invoice-preview > .row:first-of-type .col:nth-child(2) .logo-invoice {
    width: 78px;
    height: 75px;
    float: right; }
    @media (max-width: 767px) {
      .invoice-preview > .row:first-of-type .col:nth-child(2) .logo-invoice {
        max-width: 40px; } }
  .invoice-preview > .row:nth-child(2) {
    margin-top: 25px;
    margin-bottom: 25px; }
    .invoice-preview > .row:nth-child(2) p {
      line-height: 24px; }
    .invoice-preview > .row:nth-child(2) table tr:nth-child(1) td {
      background-color: #fbfbfb;
      border-left: 0;
      border-right: 0; }
    .invoice-preview > .row:nth-child(2) table tr:nth-child(1) td:nth-child(2) {
      text-align: right; }
    .invoice-preview > .row:nth-child(2) table tr:nth-child(2) td:nth-child(2) {
      text-align: right; }
    .invoice-preview > .row:nth-child(2) table tr:nth-child(2) td {
      border-top: 1px solid #e8ebec;
      border-bottom: 1px solid #e8ebec;
      padding: 5px 10px;
      border-left: 0;
      border-right: 0; }
    .invoice-preview > .row:nth-child(2) table td {
      border-top: 1px solid #e8ebec;
      border-bottom: 1px solid #e8ebec;
      padding: 5px 10px; }
  .invoice-preview > h5 {
    color: #1e3948;
    font-size: 15px;
    font-weight: 500;
    padding-left: 15px;
    margin-top: 20px; }
  .invoice-preview table {
    width: 100%; }
    .invoice-preview table tr td {
      padding: 10px;
      border: 1px solid #e8ebec; }
      .invoice-preview table tr td p {
        margin: 0; }
  .invoice-preview .table-desc-xs {
    margin-bottom: 15px; }
  .invoice-preview .table-desc tr td:nth-child(2) {
    width: 100px;
    text-align: center; }
  .invoice-preview .table-desc tr td:nth-child(3) {
    width: 70px;
    text-align: center; }
  .invoice-preview .table-desc tr td:nth-child(4) {
    width: 100px;
    text-align: center; }
  .invoice-preview .table-desc tr td.colspan {
    text-align: right; }
  @media (max-width: 767px) {
    .invoice-preview .table-desc tr:nth-child(1) td:first-of-type {
      display: none; }
    .invoice-preview .table-desc tr:nth-child(2) td:first-of-type {
      display: none; } }
  .invoice-preview table:last-of-type tr td:nth-child(2) {
    width: 95px;
    text-align: center; }
  .invoice-preview table:last-of-type tr td:nth-child(3) {
    width: 125px;
    text-align: center; }

.invoices .main_content .invoice-preview {
  margin-top: 0;
  padding-bottom: 70px; }

.invoices .sidebar .table-invoice {
  box-shadow: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0; }
  .invoices .sidebar .table-invoice td {
    border: 0 none; }
  .invoices .sidebar .table-invoice tr td.inner-table tr:last-of-type {
    border-bottom: 1px solid #e8ebec; }
  .invoices .sidebar .table-invoice table tr:first-of-type td {
    border-bottom: 0 none;
    border-radius: 0; }
  .invoices .sidebar .table-invoice tr.inner-table-wrap > td:nth-child(1) {
    width: 100%;
    display: block;
    border-right: 0; }
  .invoices .sidebar .table-invoice tr.inner-table-wrap > td:nth-child(2) {
    width: 100%;
    display: block;
    border-top: 0;
    border-bottom: 1px solid #e8ebec;
    padding: 20px 30px; }
  .invoices .sidebar .table-invoice tr.round-last > td {
    padding: 20px 30px; }
    .invoices .sidebar .table-invoice tr.round-last > td p span {
      font-weight: 500; }
  .invoices .sidebar .table-invoice tr.green_info td {
    background-color: #fbfdf8;
    border-bottom: 1px solid #e8ebec !important; }
    .invoices .sidebar .table-invoice tr.green_info td p {
      color: #89bc17;
      font-weight: 500;
      padding: 20px 55px;
      text-align: center; }
      @media (max-width: 1240px) {
        .invoices .sidebar .table-invoice tr.green_info td p {
          padding: 15px 15px; } }

.inner-wrapper {
  background-color: white;
  border: 1px solid #e8ebec;
  border-radius: 5px;
  box-shadow: 0 2px 0 #e8ebec;
  padding: 25px; }
  @media (max-width: 767px) {
    .inner-wrapper {
      padding: 15px; } }

span.inner_info {
  color: white;
  font-size: 9px;
  font-weight: 500;
  background-color: #bbc3c8;
  border-radius: 7px;
  padding: 1px 10px;
  display: inline-block;
  margin-bottom: 15px; }

#top-info_filters {
  padding: 25px 0 10px; }
  #top-info_filters > h2 {
    display: inline-block;
    margin: 0; }
    @media (max-width: 767px) {
      #top-info_filters > h2 {
        max-width: none;
        width: auto; }
        #top-info_filters > h2:after {
          display: none; } }

.filters_wrap > ul {
  float: right; }
  .filters_wrap > ul > li {
    float: left; }
    .filters_wrap > ul > li > span {
      color: #1e3948;
      font-size: 14px;
      font-weight: 500;
      display: inline-block;
      position: relative;
      margin-right: 10px; }
    .filters_wrap > ul > li.select_wrap {
      margin-right: 10px; }
      .filters_wrap > ul > li.select_wrap > span {
        position: relative; }
      @media (max-width: 991px) {
        .filters_wrap > ul > li.select_wrap {
          display: none; } }
    @media (max-width: 991px) {
      .filters_wrap > ul > li.search_wrap {
        display: none; } }
    .filters_wrap > ul > li .sep {
      width: 1px;
      height: 25px;
      background: #dee3e5;
      margin: 0 21px; }
      @media (max-width: 1240px) {
        .filters_wrap > ul > li .sep {
          margin: 0 5px;
          background: none; } }
    .filters_wrap > ul > li .btn-oval-sm, .filters_wrap > ul > li .uploadcare-widget-button-open {
      position: relative;
      top: -7px; }
      @media (max-width: 1240px) {
        .filters_wrap > ul > li .btn-oval-sm, .filters_wrap > ul > li .uploadcare-widget-button-open {
          width: 35px;
          height: 35px;
          padding: 0; }
          .filters_wrap > ul > li .btn-oval-sm:before, .filters_wrap > ul > li .uploadcare-widget-button-open:before {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); } }
      .filters_wrap > ul > li .btn-oval-sm:before, .filters_wrap > ul > li .uploadcare-widget-button-open:before {
        content: "\f067"; }
    .filters_wrap > ul > li a.btn_filter {
      display: none; }
    @media (max-width: 991px) {
      .filters_wrap > ul > li a.btn_filter {
        display: inline-block;
        margin-right: 10px; }
        .filters_wrap > ul > li a.btn_filter:before {
          content: "\f0b0";
          color: #8e9ca3;
          font-size: 16px;
          font-weight: 400; } }
    .filters_wrap > ul > li ::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #bbc3c8;
      opacity: 1; }
    .filters_wrap > ul > li :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #bbc3c8;
      opacity: 1; }
    .filters_wrap > ul > li ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #bbc3c8;
      opacity: 1; }
    .filters_wrap > ul > li :-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #bbc3c8;
      opacity: 1; }

.filters_wrap .input-text {
  background-color: white;
  border: 2px solid #e8ebec;
  border-radius: 15px;
  color: #bbc3c8;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
  padding: 4px 17px 3px;
  width: 159px; }

.filters_wrap .group {
  display: block;
  margin-bottom: 10px; }
  .filters_wrap .group span {
    display: inline-block; }
  .filters_wrap .group.all_projects > span {
    display: inline-block;
    width: 45px;
    margin: 0;
    position: relative; }
  .filters_wrap .group.all_projects .select-blue {
    width: 81%; }
  .filters_wrap .group.with_status span:first-of-type {
    display: inline-block;
    width: 35px;
    margin: 0; }
  .filters_wrap .group.with_status > span {
    position: relative; }
  .filters_wrap .group.with_status .select-blue {
    width: 70%;
    margin-right: 4px; }
  .filters_wrap .group.filter_by span:first-of-type {
    display: inline-block;
    width: 87px;
    margin: 0; }
  .filters_wrap .group.filter_by .input-text {
    margin-right: 0;
    max-width: 247px;
    width: calc(100% - 92px) !important; }

.filter_mobile {
  display: none; }
  @media (max-width: 991px) {
    .filter_mobile {
      display: none;
      border-top: 1px solid #e8ebec; } }
  .filter_mobile .filter_mobile_wrapper {
    padding: 20px 15px 10px;
    max-width: 345px;
    width: 100%;
    margin: 0 auto; }
    .filter_mobile .filter_mobile_wrapper.todos_filters {
      padding: 20px 0 10px; }

.customer-main .page-content {
  border-top: 1px solid #e8ebec;
  padding-bottom: 20px; }
  .customer-main .page-content > .col-wrap {
    width: 100%;
    margin: 0 auto; }
    .customer-main .page-content > .col-wrap .col-left {
      padding-left: 0;
      width: 65%;
      text-align: left; }
    .customer-main .page-content > .col-wrap .col-right {
      width: 35%;
      padding-left: 0;
      text-align: right; }
  .customer-main .page-content .inner-box {
    background-color: white;
    border: 1px solid #e8ebec;
    border-radius: 10px;
    box-shadow: 0 2px 0 #e8ebec; }
    .customer-main .page-content .inner-box a.title {
      color: #1a6db4;
      font-size: 20px;
      font-weight: 500;
      line-height: 28px;
      display: block; }
      @media (max-width: 767px) {
        .customer-main .page-content .inner-box a.title {
          font-size: 18px;
          line-height: 25px; } }
    .customer-main .page-content .inner-box p.desc {
      color: #8e9ca3;
      font-size: 15px;
      font-weight: 300;
      line-height: 24px; }
      @media (max-width: 767px) {
        .customer-main .page-content .inner-box p.desc {
          font-size: 14px;
          line-height: 22px; } }
    @media (max-width: 767px) {
      .customer-main .page-content .inner-box hr {
        margin: 18px 0; } }
    .customer-main .page-content .inner-box ul {
      margin-bottom: 7px; }
      .customer-main .page-content .inner-box ul li {
        color: #8e9ca3;
        font-size: 12px;
        line-height: 24px;
        font-weight: 300; }
        .customer-main .page-content .inner-box ul li span {
          font-weight: 500; }
    .customer-main .page-content .inner-box a.btn_archive {
      color: #1a6db4;
      font-size: 12px;
      font-weight: 500;
      line-height: 24px; }
    .customer-main .page-content .inner-box .inner-wrap {
      width: 100%;
      text-align: center;
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      display: inline-block; }
      .customer-main .page-content .inner-box .inner-wrap .btn_add {
        background: white;
        border: 2px solid #bad3e8; }
        .customer-main .page-content .inner-box .inner-wrap .btn_add i {
          color: #1a6db4;
          font-size: 22px;
          margin-top: 2px; }

.customer-main h3 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 500; }

.customer-main h4 {
  color: #1a6db4;
  font-size: 15px;
  font-weight: 500; }
  .customer-main h4 a {
    color: #1a6db4; }

.deploy_script, .env_file {
  width: 100%;
  display: block;
  height: 200px;
  background: #333 !important;
  padding: 5px;
  margin: 0;
  border: 0;
  color: white !important;
  font-family: "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 500;
  outline: 0 !important; }

@media (max-width: 767px) {
  .discussions .panel_team_members {
    display: none; } }

.discussions h3 {
  color: #8e9ca3;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 10px; }

.discussions .new_subject {
  margin-bottom: 22px; }
  .discussions .new_subject input {
    background-color: white;
    border: 1px solid #e8ebec;
    border-radius: 5px;
    box-shadow: inset 0 2px 0 #e8ebec;
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    color: #1e3948;
    font-size: 17px;
    font-weight: 300; }

.table-invoices {
  margin-bottom: 111px; }
  @media (max-width: 1240px) {
    .table-invoices {
      margin-bottom: 25px; } }
  .table-invoices tr th {
    color: #8e9ca3;
    font-size: 14px;
    font-weight: 500;
    border-bottom: none;
    padding: 0;
    padding-bottom: 14px; }
    @media (max-width: 767px) {
      .table-invoices tr th:nth-child(2), .table-invoices tr th:nth-child(3) {
        display: none; } }
  .table-invoices tr td {
    padding: 10px 0;
    border-top: 1px solid #e8ebec; }
    .table-invoices tr td p {
      padding: 0;
      margin: 0; }
    .table-invoices tr td:nth-child(1) {
      width: 59.055118%;
      vertical-align: bottom; }
      @media (max-width: 767px) {
        .table-invoices tr td:nth-child(1) {
          width: 100%; } }
    .table-invoices tr td:nth-child(2), .table-invoices tr td:nth-child(3) {
      width: 20.472441%;
      vertical-align: bottom;
      color: #8e9ca3;
      font-size: 14px;
      font-weight: 300; }
      @media (max-width: 767px) {
        .table-invoices tr td:nth-child(2), .table-invoices tr td:nth-child(3) {
          display: none; } }
    .table-invoices tr td a.topic {
      color: #1a6db4;
      font-size: 18px;
      font-weight: 500;
      display: block; }
    .table-invoices tr td span.inner_info {
      margin-bottom: 7px; }
      .table-invoices tr td span.inner_info.green {
        background-color: #89bc17; }
  .table-invoices tbody tr td {
    border-bottom: 1px solid #e8ebec; }

@media (max-width: 767px) {
  .invoices #top-info_filters + hr {
    margin-bottom: 10px; } }

.invoices .tasks {
  padding-top: 0; }
  .invoices .tasks .table-invoices tr th {
    text-align: center; }
    @media (max-width: 767px) {
      .invoices .tasks .table-invoices tr th:nth-child(1), .invoices .tasks .table-invoices tr th:nth-child(2), .invoices .tasks .table-invoices tr th:nth-child(3), .invoices .tasks .table-invoices tr th:nth-child(4) {
        display: none; } }
    .invoices .tasks .table-invoices tr th:nth-child(1) {
      text-align: left; }
  .invoices .tasks .table-invoices tr td:nth-child(1) {
    width: 55%;
    vertical-align: bottom;
    text-align: left; }
    @media (max-width: 767px) {
      .invoices .tasks .table-invoices tr td:nth-child(1) {
        width: 75%; } }
  .invoices .tasks .table-invoices tr td:nth-child(2), .invoices .tasks .table-invoices tr td:nth-child(3), .invoices .tasks .table-invoices tr td:nth-child(4) {
    text-align: center;
    width: 15%;
    vertical-align: bottom;
    color: #8e9ca3;
    font-size: 14px;
    font-weight: 300; }
  @media (max-width: 767px) {
    .invoices .tasks .table-invoices tr td:nth-child(2), .invoices .tasks .table-invoices tr td:nth-child(3) {
      display: none; } }
  .invoices .tasks .table-invoices tr td:nth-child(4) {
    text-align: center; }
    @media (max-width: 767px) {
      .invoices .tasks .table-invoices tr td:nth-child(4) {
        width: 25%;
        text-align: right; } }
  @media (max-width: 767px) {
    .invoices .tasks .table-invoices > thead > tr > th,
    .invoices .tasks .table-invoices > thead > tr > td,
    .invoices .tasks .table-invoices > tbody > tr > th,
    .invoices .tasks .table-invoices > tbody > tr > td,
    .invoices .tasks .table-invoices > tfoot > tr > th,
    .invoices .tasks .table-invoices > tfoot > tr > td {
      border-top: medium none; } }

.send_message_button {
  margin-top: 15px; }

/* ---------------------------------------------------------
   Intro article
   ---------------------------------------------------------*/
.intro-article {
  padding: 96px 0 70px;
  position: relative;
  font-size: 28px;
  line-height: 1.57; }
  @media (max-width: 1240px) {
    .intro-article {
      font-size: 22px; } }
  @media (max-width: 991px) {
    .intro-article {
      padding: 83px 0;
      font-size: 18px; } }
  @media (max-width: 767px) {
    .intro-article {
      padding: 65px 0 43px;
      font-size: 16px; } }
  .intro-article:before {
    background: url("../../images/bg-contact.jpg");
    -webkit-transform: none;
    transform: none;
    top: -190px; }
  .intro-article:after {
    height: 0;
    width: 0;
    border-left: 41px solid transparent;
    border-right: 41px solid transparent;
    border-top: 41px solid #eaeff8;
    border-top-width: 32px;
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
  .intro-article h1 {
    color: #1e6ab4;
    font-size: 64px;
    font-style: italic;
    margin-bottom: 42px;
    font-weight: 600; }
    @media (max-width: 1240px) {
      .intro-article h1 {
        font-size: 54px; } }
    @media (max-width: 991px) {
      .intro-article h1 {
        font-size: 40px;
        margin-bottom: 26px; } }
    @media (max-width: 767px) {
      .intro-article h1 {
        font-size: 28px;
        margin-bottom: 14px; } }
  .intro-article p {
    margin-bottom: 46px; }
    @media (max-width: 991px) {
      .intro-article p {
        margin-bottom: 19px; } }
    @media (max-width: 767px) {
      .intro-article p {
        margin-bottom: 8px; } }

.special-blue-bg {
  background: #337ab7 url("../../images/images/bg-call-area.jpg"); }

.invoice-panel {
  border-top: 3px solid #337ab7 !important;
  padding: 30px; }
  .invoice-panel .logo-bg {
    background: url("../../images/code-my-views-square-mark.png") no-repeat right center;
    background-size: auto 100%; }
  .invoice-panel .table-white {
    background: white; }
    .invoice-panel .table-white tr, .invoice-panel .table-white td, .invoice-panel .table-white th {
      background: white; }

/* ---------------------------------------------------------
   Login box
   ---------------------------------------------------------*/
.login-box {
  max-width: 280px;
  margin: 0 auto;
  text-align: center; }
  .login-box .logo {
    width: 112px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 59px; }
  .login-box .form-control, .login-box .mastermind-users .algolia-search input, .mastermind-users .algolia-search .login-box input {
    margin-bottom: 15px;
    height: 36px;
    font-size: 14px;
    line-height: 22px;
    border-color: #d4dbe0;
    color: #aaa; }
    .login-box .form-control ::-webkit-input-placeholder, .login-box .mastermind-users .algolia-search input ::-webkit-input-placeholder, .mastermind-users .algolia-search .login-box input ::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #aaa;
      opacity: 1; }
    .login-box .form-control :-moz-placeholder, .login-box .mastermind-users .algolia-search input :-moz-placeholder, .mastermind-users .algolia-search .login-box input :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #aaa;
      opacity: 1; }
    .login-box .form-control ::-moz-placeholder, .login-box .mastermind-users .algolia-search input ::-moz-placeholder, .mastermind-users .algolia-search .login-box input ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #aaa;
      opacity: 1; }
    .login-box .form-control :-ms-input-placeholder, .login-box .mastermind-users .algolia-search input :-ms-input-placeholder, .mastermind-users .algolia-search .login-box input :-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #aaa;
      opacity: 1; }
  .login-box input.btn-blue {
    width: 100%;
    margin-top: 15px;
    line-height: 2; }
  .login-box .btn-group {
    text-align: center; }
    .login-box .btn-group .btn {
      letter-spacing: 0; }

.blurred {
  filter: blur(10px);
  -webkit-filter: blur(10px);
  cursor: pointer; }

.mastermind-users .algolia-search:after {
  content: ""; }

.merge-projects {
  padding-top: 20px; }
  .merge-projects table td {
    padding: 3px; }

/* ---------------------------------------------------------
   Methods
   ---------------------------------------------------------*/
.methods .heading {
  padding: 96px 0 53px;
  line-height: 32px; }
  @media (max-width: 767px) {
    .methods .heading {
      line-height: 26px; } }
  .methods .heading h1 {
    font-size: 68px;
    line-height: 68px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 27px; }
    @media (max-width: 767px) {
      .methods .heading h1 {
        font-size: 45px;
        line-height: 50px;
        margin-bottom: 15px; } }
  .methods .heading h2 {
    font: 400 69px/69px "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    color: #88be15;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 48px; }
    @media (max-width: 767px) {
      .methods .heading h2 {
        font-size: 27px;
        line-height: 36px;
        letter-spacing: 14px;
        margin-bottom: 6px; } }

.methods .content {
  position: relative;
  padding: 112px 0 83px; }
  @media (max-width: 767px) {
    .methods .content {
      padding: 64px 0 40px; } }
  .methods .content:before {
    background: url("../../images/bg-methods.jpg") #f7f9fb; }

.methods .media {
  width: 50%;
  margin-top: 122px;
  line-height: 24px; }
  @media (max-width: 991px) {
    .methods .media {
      width: auto;
      margin-top: 50px; } }
  .methods .media:first-child {
    margin-top: 0; }
  .methods .media:nth-child(even) {
    margin-left: auto; }
  .methods .media .media-title {
    font-style: italic;
    font-size: 28px; }
    @media (max-width: 767px) {
      .methods .media .media-title {
        font-size: 24px;
        margin-bottom: 10px; } }
  .methods .media .media-left {
    padding: 13px 10px 0 0;
    width: 129px; }
    @media (max-width: 991px) {
      .methods .media .media-left {
        padding-top: 0; } }
    @media (max-width: 767px) {
      .methods .media .media-left {
        width: 126px; } }
    @media (max-width: 479px) {
      .methods .media .media-left {
        width: 86px; } }
    @media (max-width: 479px) {
      .methods .media .media-left img {
        max-width: 60px; } }
  .methods .media .media-body {
    width: auto; }

@media (min-width: 992px) {
  .methods .media-center {
    margin-right: auto;
    text-align: center; } }

@media (min-width: 992px) {
  .methods .media-center .media-left,
  .methods .media-center .media-body {
    display: block;
    width: auto; } }

@media (min-width: 992px) {
  .methods .media-center .media-left {
    padding: 0 0 20px; } }

.methods .media-center .media-left img {
  display: inline-block; }

/* ---------------------------------------------------------
   Panel get quote
   ---------------------------------------------------------*/
.panel-get-quote {
  padding: 113px 0; }
  @media (max-width: 991px) {
    .panel-get-quote {
      padding: 50px 0 74px; } }
  @media (max-width: 767px) {
    .panel-get-quote {
      padding: 40px 0 50px; } }
  .panel-get-quote .row {
    position: relative; }
    @media (min-width: 992px) {
      .panel-get-quote .row {
        margin: 0 -60px; } }
    .panel-get-quote .row:before {
      content: '';
      position: absolute;
      display: block;
      left: 50%;
      top: -41px;
      bottom: 71px;
      width: 1px;
      border-left: 1px solid #ccc; }
      @media (max-width: 991px) {
        .panel-get-quote .row:before {
          display: none; } }
    @media (min-width: 992px) {
      .panel-get-quote .row .col-md-6 {
        padding: 0 60px; } }
  .panel-get-quote .heading {
    padding: 0 60px 32px 0;
    border-bottom: 1px solid #ccc;
    margin: 0 -60px 56px 0; }
    @media (max-width: 767px) {
      .panel-get-quote .heading {
        padding: 0 0 16px;
        margin: 0 0 35px; } }
    .panel-get-quote .heading h1 {
      font-size: 40px;
      font-style: italic;
      margin-bottom: 10px; }
      @media (max-width: 767px) {
        .panel-get-quote .heading h1 {
          font-size: 28px;
          line-height: 1.1;
          margin-bottom: 4px; } }
    .panel-get-quote .heading h2 {
      font: 400 28px/1.3 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
      letter-spacing: 4px;
      margin-bottom: 0;
      text-transform: uppercase;
      color: #1e6ab4; }
      @media (max-width: 767px) {
        .panel-get-quote .heading h2 {
          font-size: 16px; } }

@media (max-width: 767px) {
  .media-work {
    margin-bottom: 30px; } }

.media-work .media-left {
  width: 152px;
  padding: 7px; }
  @media (max-width: 767px) {
    .media-work .media-left {
      width: 90px;
      padding: 7px 15px 0 0; } }

.media-work .media-body {
  width: auto; }

.media-work h3 {
  font: 700 18px/1.5 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #1e6ab4;
  letter-spacing: 3px; }

.media-work .list-custom li {
  margin-bottom: 23px;
  padding-left: 58px; }
  @media (min-width: 992px) {
    .media-work .list-custom li {
      margin-bottom: 36px; } }
  .media-work .list-custom li:before {
    margin-left: -58px; }
    @media (min-width: 992px) {
      .media-work .list-custom li:before {
        margin-top: -6px; } }

.form-quote {
  padding-top: 10px; }
  .form-quote .title {
    display: block;
    font: 700 18px/1.3 "Archer", serif;
    margin-bottom: 25px; }
    @media (max-width: 767px) {
      .form-quote .title {
        margin-bottom: 16px; } }
  .form-quote .input-row {
    padding-bottom: 35px; }
    @media (max-width: 767px) {
      .form-quote .input-row {
        padding-bottom: 10px; } }
  .form-quote .selector {
    margin-bottom: 27px; }
  .form-quote .form-control, .form-quote .mastermind-users .algolia-search input, .mastermind-users .algolia-search .form-quote input {
    background: #f3f7fa;
    border-color: #ccc;
    font: italic 18px/1.3 "Archer", serif; }
  .form-quote textarea.form-control {
    min-height: 206px;
    padding: 16px 20px;
    color: rgba(0, 0, 0, 0.4); }
    .form-quote textarea.form-control ::-webkit-input-placeholder {
      /* WebKit browsers */
      color: rgba(0, 0, 0, 0.4);
      opacity: 1; }
    .form-quote textarea.form-control :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: rgba(0, 0, 0, 0.4);
      opacity: 1; }
    .form-quote textarea.form-control ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: rgba(0, 0, 0, 0.4);
      opacity: 1; }
    .form-quote textarea.form-control :-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: rgba(0, 0, 0, 0.4);
      opacity: 1; }
  .form-quote .btn-wrap {
    padding-top: 56px; }
    @media (max-width: 991px) {
      .form-quote .btn-wrap {
        padding-top: 15px; } }
    @media (max-width: 767px) {
      .form-quote .btn-wrap {
        padding-top: 0; } }
  .form-quote .btn {
    min-width: 150px; }

.upload-box {
  background: #1d232a;
  border-radius: 5px;
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.29;
  margin: 0 0 35px; }
  .upload-box h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px; }
  .upload-box .media-left {
    padding-right: 28px; }
    @media (max-width: 767px) {
      .upload-box .media-left {
        padding-right: 18px; } }
  .upload-box .media-body {
    vertical-align: middle; }
  .upload-box p {
    margin-bottom: 0; }
  .upload-box .uploader {
    width: 120px;
    height: 120px;
    border: 1px solid #1e6ab4;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    z-index: 1; }
    @media (max-width: 767px) {
      .upload-box .uploader {
        width: 88px;
        height: 88px; } }
    .upload-box .uploader span {
      display: none; }
    .upload-box .uploader:after {
      content: 'Upload';
      position: absolute;
      left: 10px;
      right: 10px;
      overflow: hidden;
      bottom: 20px;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 2px;
      z-index: -1; }
      @media (max-width: 767px) {
        .upload-box .uploader:after {
          bottom: 12px;
          font-size: 11px; } }
    .upload-box .uploader:before {
      content: '';
      position: absolute;
      top: 28px;
      left: 50%;
      width: 48px;
      height: 43px;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      background: url("../../images/ico-upload.png") no-repeat 0 0/100% auto; }
      @media (max-width: 767px) {
        .upload-box .uploader:before {
          width: 30px;
          height: 28px;
          top: 15px; } }

.flat .plan {
  border-radius: 6px;
  list-style: none;
  padding: 0 0 20px;
  margin: 30px 0 15px;
  background: #fff;
  text-align: center; }
  .flat .plan .black {
    color: black; }
  .flat .plan li {
    padding: 10px 15px;
    color: #ccc;
    border-top: 1px solid #f5f5f5;
    -webkit-transition: 300ms;
    transition: 300ms; }
    .flat .plan li.plan-price {
      border-top: 0; }
    .flat .plan li.plan-name {
      border-radius: 6px 6px 0 0;
      padding: 15px;
      font-size: 24px;
      line-height: 24px;
      color: #fff;
      background: #337ab7;
      margin-bottom: 30px;
      border-top: 0; }
    .flat .plan li > strong {
      color: #333; }
    .flat .plan li.plan-action {
      margin-top: 10px;
      border-top: 0; }
  .flat .plan.featured {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
    .flat .plan.featured li.plan-name {
      background: #96d019; }
    .flat .plan.featured:hover li.plan-name {
      background: #96d019; }
  .flat .plan:hover li.plan-name {
    background: #337ab7; }

/* CSS for Credit Card Payment form */
.credit-card-box .panel-title {
  display: inline;
  font-weight: bold; }

.credit-card-box .form-control.error, .credit-card-box .mastermind-users .algolia-search input.error, .mastermind-users .algolia-search .credit-card-box input.error {
  border-color: red;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6); }

.credit-card-box label.error {
  font-weight: bold;
  color: red;
  padding: 2px 8px;
  margin-top: 2px; }

.credit-card-box .payment-errors {
  font-weight: bold;
  color: red;
  padding: 2px 8px;
  margin-top: 2px; }

.credit-card-box label {
  display: block; }

/* The old "center div vertically" hack */
.credit-card-box .display-table {
  display: table; }

.credit-card-box .display-tr {
  display: table-row; }

.credit-card-box .display-td {
  display: table-cell;
  vertical-align: middle;
  width: 50%; }

/* Just looks nicer */
.credit-card-box .panel-heading img {
  min-width: 180px; }

/* ---------------------------------------------------------
   Panel overview
   ---------------------------------------------------------*/
.panel-overview {
  padding-top: 238px;
  line-height: 24px;
  position: relative; }
  @media (max-width: 1240px) {
    .panel-overview {
      padding-top: 207px; } }
  @media (max-width: 767px) {
    .panel-overview {
      padding-top: 51px; } }
  .panel-overview h2 {
    font: italic 700 44px/48px "Archer", serif;
    margin-bottom: 52px;
    color: #1e6cc5; }
    @media (max-width: 767px) {
      .panel-overview h2 {
        margin-bottom: 15px; } }
  .panel-overview p {
    margin-bottom: 43px; }
  .panel-overview .tab-content {
    margin-bottom: 0; }
    @media (max-width: 991px) {
      .panel-overview .tab-content {
        margin-bottom: 30px; } }
  .panel-overview .list-custom {
    margin-bottom: 30px; }
    @media (min-width: 480px) {
      .panel-overview .list-custom {
        margin-bottom: 40px;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px; } }
    .panel-overview .list-custom .has-link {
      color: #1e6ab4;
      font-weight: 700; }
  .panel-overview .img-collage {
    overflow: hidden;
    margin: 2px -10px; }
    .panel-overview .img-collage li {
      float: left;
      padding: 0 8px 14px; }
      .panel-overview .img-collage li:first-child {
        width: 100%; }
        .panel-overview .img-collage li:first-child .bg-stretch {
          padding-top: 83%; }
          @media (min-width: 1241px) {
            .panel-overview .img-collage li:first-child .bg-stretch {
              min-height: 402px; } }
      .panel-overview .img-collage li:nth-child(2) {
        width: 66%; }
      .panel-overview .img-collage li:nth-child(3) {
        width: 34%; }
    .panel-overview .img-collage .bg-stretch {
      min-height: 187px; }
  @media (min-width: 1241px) {
    .panel-overview .nav-tabs {
      display: table;
      table-layout: fixed; } }
  @media (min-width: 1241px) {
    .panel-overview .nav-tabs > li {
      width: 16.67%; } }

.tabset-wrap {
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 103px;
  left: 0;
  width: 100%; }
  @media (max-width: 1240px) {
    .tabset-wrap {
      margin-bottom: 38px; } }
  @media (max-width: 767px) {
    .tabset-wrap {
      position: static !important; } }
  .tabset-wrap.fixed-position {
    z-index: 30; }
  @media (max-width: 1240px) {
    .tabset-wrap .container {
      width: 100%;
      padding: 0; } }

.toggle-accepted {
  background: rgba(140, 192, 27, 0.15);
  text-transform: uppercase;
  padding: 7px 0; }
  .toggle-accepted a {
    text-decoration: none !important; }
  .toggle-accepted a:hover {
    text-decoration: none; }

.to-do-list-item .fa-reorder {
  position: absolute;
  right: 4px;
  top: -13px;
  color: #c9c9c9;
  cursor: move; }

.accepted-task-item {
  background: rgba(140, 192, 27, 0.15);
  padding: 10px !important; }

.list-group-item {
  margin-bottom: -1px; }
  .list-group-item .media-body {
    overflow: visible; }

.media-group-header {
  padding: 5px 10px !important;
  background: rgba(204, 204, 204, 0.3);
  color: #cbcbcb !important;
  text-transform: uppercase;
  font-weight: 700 !important; }

@media (min-width: 768px) {
  .todos_page .sidebar {
    display: none; } }

@media (max-width: 767px) {
  .todos_page .sidebar .developers,
  .todos_page .sidebar .team,
  .todos_page .sidebar .dev-info,
  .todos_page .sidebar .deploy-settings,
  .todos_page .sidebar .project-engineer .profile_desc {
    display: none; } }

.inner-col {
  background-color: white;
  border: 1px solid #e8ebec;
  border-radius: 5px;
  box-shadow: 0 2px 0 #e8ebec; }

.todo_page #page-content {
  padding-top: 10px; }
  .todo_page #page-content .todos_profile {
    display: none;
    margin-bottom: 0; }
    @media (max-width: 767px) {
      .todo_page #page-content .todos_profile {
        display: block; }
        .todo_page #page-content .todos_profile .sidebar {
          margin: 0; } }
  .todo_page #page-content > .row > .col .alert-success {
    margin-top: -17px; }
  .todo_page #page-content > .row > .col .inner-box #top-info_filters {
    padding: 0;
    margin: 0; }
    .todo_page #page-content > .row > .col .inner-box #top-info_filters h2 {
      font-size: 25px;
      font-weight: 500; }
  .todo_page #page-content > .row > .col .inner-box > hr:first-of-type {
    margin-top: 14px; }

.todo_page .btn_start {
  float: right;
  position: relative;
  top: -10px;
  padding: 10px 16px 9px;
  background-color: #8abc19; }
  @media (max-width: 767px) {
    .todo_page .btn_start {
      float: none;
      margin-bottom: 15px;
      top: -5px; } }
  .todo_page .btn_start i {
    position: relative;
    top: -2px;
    font-size: 16px; }

.todo_page .top-heading {
  padding-top: 7px; }
  @media (max-width: 767px) {
    .todo_page .top-heading + hr {
      background: #e8ebec; } }
  .todo_page .top-heading .col:nth-child(1) {
    text-align: right; }
    @media (max-width: 767px) {
      .todo_page .top-heading .col:nth-child(1) {
        padding-bottom: 11px; } }
  .todo_page .top-heading .col:nth-child(2) {
    padding-top: 0; }
    .todo_page .top-heading .col:nth-child(2) .inner-wrap {
      margin-bottom: 14px; }
      .todo_page .top-heading .col:nth-child(2) .inner-wrap i {
        width: 18px;
        height: 18px;
        background-color: #f24a44;
        border-radius: 9px;
        color: white;
        padding-top: 2px;
        font-size: 12px;
        text-align: center;
        text-indent: 1px;
        margin-right: 7px; }
      .todo_page .top-heading .col:nth-child(2) .inner-wrap span.inner_info {
        margin: 0;
        padding: 3px 10px;
        background-color: #bbc3c8;
        border-radius: 9px;
        color: white;
        font-size: 9px;
        font-weight: 500; }
    .todo_page .top-heading .col:nth-child(2) h2 {
      color: #1e3948;
      font-size: 30px;
      font-weight: 500; }
      @media (max-width: 767px) {
        .todo_page .top-heading .col:nth-child(2) h2 {
          font-size: 22px;
          max-width: 230px; } }
    .todo_page .top-heading .col:nth-child(2) .circle-xs {
      position: relative;
      top: -1px; }

.todo_page h3 {
  color: #1e3948;
  font-size: 19px;
  font-weight: 500; }

.todo_page .filters_wrap {
  margin-bottom: 25px; }
  .todo_page .filters_wrap > ul {
    width: 100%; }
    .todo_page .filters_wrap > ul.todos_filters {
      width: auto; }
      .todo_page .filters_wrap > ul.todos_filters .search_wrap {
        max-width: none;
        width: auto; }
      @media (max-width: 1240px) {
        .todo_page .filters_wrap > ul.todos_filters > li:nth-child(3) {
          display: inline-block; } }
      @media (max-width: 991px) {
        .todo_page .filters_wrap > ul.todos_filters > li:nth-child(3) {
          display: none; } }
    .todo_page .filters_wrap > ul .search_wrap {
      max-width: 315px;
      width: 100%; }
      @media (max-width: 1240px) {
        .todo_page .filters_wrap > ul .search_wrap {
          max-width: 285px; } }
      .todo_page .filters_wrap > ul .search_wrap .input-text {
        max-width: 215px;
        width: 100%; }
        @media (max-width: 1240px) {
          .todo_page .filters_wrap > ul .search_wrap .input-text {
            max-width: 180px; } }
      .todo_page .filters_wrap > ul .search_wrap .input_search {
        display: inline-block;
        position: relative; }
        .todo_page .filters_wrap > ul .search_wrap .input_search ul.search_results {
          position: absolute;
          top: 0;
          left: 0;
          z-index: 10;
          top: 45px;
          display: none;
          width: 295px;
          background-color: white;
          border-radius: 7px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          padding: 10px; }
          .todo_page .filters_wrap > ul .search_wrap .input_search ul.search_results > li.box_task {
            background-color: white;
            border: 1px solid #e8ebec;
            border-radius: 5px;
            box-shadow: 0 2px 0 #e8ebec;
            margin-bottom: 10px;
            padding: 10px; }
            .todo_page .filters_wrap > ul .search_wrap .input_search ul.search_results > li.box_task:last-of-type {
              margin-bottom: 0; }
            .todo_page .filters_wrap > ul .search_wrap .input_search ul.search_results > li.box_task p.subtitle {
              margin: 0;
              margin-top: 4px; }
            .todo_page .filters_wrap > ul .search_wrap .input_search ul.search_results > li.box_task a.title {
              font-weight: 400;
              margin-bottom: 0; }
              .todo_page .filters_wrap > ul .search_wrap .input_search ul.search_results > li.box_task a.title strong {
                font-weight: 500; }
          .todo_page .filters_wrap > ul .search_wrap .input_search ul.search_results:after {
            border-bottom: 10px solid #fff;
            border-left: 14px solid transparent;
            border-right: 14px solid transparent;
            bottom: 100%;
            content: "";
            height: 0;
            left: 50px;
            position: absolute;
            width: 0; }
          .todo_page .filters_wrap > ul .search_wrap .input_search ul.search_results:before {
            border-bottom: 11px solid #e8ebec;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            content: "";
            height: 0;
            left: 49px;
            position: absolute;
            top: -11px;
            position: absolute;
            width: 0; }
    .todo_page .filters_wrap > ul > li {
      margin-left: 10px; }
      .todo_page .filters_wrap > ul > li .btn-oval-sm, .todo_page .filters_wrap > ul > li .uploadcare-widget-button-open {
        position: relative;
        top: -3px;
        padding: 6px 16px 6px 43px; }
      .todo_page .filters_wrap > ul > li .sep {
        margin: 0 7px 0 0; }
      @media (max-width: 1240px) {
        .todo_page .filters_wrap > ul > li {
          margin-left: 5px; }
          .todo_page .filters_wrap > ul > li:nth-child(3) {
            display: none; }
          .todo_page .filters_wrap > ul > li .btn-oval-sm, .todo_page .filters_wrap > ul > li .uploadcare-widget-button-open {
            padding: 0; } }
      @media (max-width: 767px) {
        .todo_page .filters_wrap > ul > li {
          float: right; } }

.todo_page .table_wrapper .table_files {
  width: 100%; }
  .todo_page .table_wrapper .table_files tr th {
    color: #8e9ca3;
    font-size: 14px;
    font-weight: 500;
    padding: 0 0 14px;
    border-bottom: 1px solid #e8ebec; }
    .todo_page .table_wrapper .table_files tr th.dl {
      color: #1e6ab4; }
      .todo_page .table_wrapper .table_files tr th.dl i {
        margin-right: 7px; }
  .todo_page .table_wrapper .table_files tr:first-of-type td {
    padding-top: 30px; }
  .todo_page .table_wrapper .table_files tr td {
    padding: 15px 0;
    border-bottom: 1px solid #e8ebec;
    color: #8e9ca3;
    font-size: 14px;
    font-weight: 300;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: relative; }
    @media (max-width: 767px) {
      .todo_page .table_wrapper .table_files tr td {
        padding: 14px 0 10px; }
        .todo_page .table_wrapper .table_files tr td p.file_size {
          position: absolute;
          bottom: 24px;
          color: #8e9ca3;
          font-size: 12px;
          font-weight: 300; } }
    @media (min-width: 769px) {
      .todo_page .table_wrapper .table_files tr td p.file_size {
        display: none; } }
    .todo_page .table_wrapper .table_files tr td p {
      padding: 0;
      margin: 0;
      display: inline-block; }
      .todo_page .table_wrapper .table_files tr td p.name {
        color: #1a6db4;
        font-size: 18px;
        font-weight: 500;
        left: 0;
        max-width: 240px;
        overflow: hidden;
        position: absolute;
        bottom: 18px;
        white-space: nowrap;
        width: 100%; }
        @media (max-width: 1240px) {
          .todo_page .table_wrapper .table_files tr td p.name {
            font-size: 14px; } }
        @media (max-width: 767px) {
          .todo_page .table_wrapper .table_files tr td p.name {
            bottom: 5px;
            font-size: 16px; } }
        .todo_page .table_wrapper .table_files tr td p.name:after {
          /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+78 */
          /* FF3.6-15 */
          background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 97%, white 100%);
          /* Chrome10-25,Safari5.1-6 */
          background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 97%, white 100%);
          /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
          filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
          /* IE6-9 */
          content: "";
          display: block;
          height: 100%;
          position: absolute;
          right: 0;
          top: 0;
          width: 100%;
          z-index: 2; }
          @media (max-width: 767px) {
            .todo_page .table_wrapper .table_files tr td p.name:after {
              display: none; } }
    .todo_page .table_wrapper .table_files tr td a {
      display: inline-block; }
    .todo_page .table_wrapper .table_files tr td:last-of-type {
      text-align: right; }
      .todo_page .table_wrapper .table_files tr td:last-of-type a.download {
        margin-right: 15px;
        color: #1a6db4;
        font-size: 14px;
        font-weight: 500; }
      .todo_page .table_wrapper .table_files tr td:last-of-type a.remove {
        margin-right: 20px;
        color: #bbc3c8;
        font-size: 16px;
        font-weight: 400; }
  .todo_page .table_wrapper .table_files tr td:nth-child(1) {
    width: 37.190083%; }
    .todo_page .table_wrapper .table_files tr td:nth-child(1) p.name {
      max-width: none; }
      .todo_page .table_wrapper .table_files tr td:nth-child(1) p.name:after {
        display: none; }
    @media (max-width: 1240px) {
      .todo_page .table_wrapper .table_files tr td:nth-child(1) {
        width: 27.190083%; } }
    @media (max-width: 767px) {
      .todo_page .table_wrapper .table_files tr td:nth-child(1) {
        width: 70%; } }
  .todo_page .table_wrapper .table_files tr td:nth-child(2) {
    width: 19.008264%; }
    @media (max-width: 767px) {
      .todo_page .table_wrapper .table_files tr td:nth-child(2) {
        display: none; } }
  .todo_page .table_wrapper .table_files tr td:nth-child(3) {
    width: 19.008264%; }
    @media (max-width: 767px) {
      .todo_page .table_wrapper .table_files tr td:nth-child(3) {
        display: none; } }
  .todo_page .table_wrapper .table_files tr td:nth-child(4) {
    width: 24.793388%; }
    @media (max-width: 1240px) {
      .todo_page .table_wrapper .table_files tr td:nth-child(4) {
        width: 34.793388%; } }
    @media (max-width: 767px) {
      .todo_page .table_wrapper .table_files tr td:nth-child(4) {
        width: 30%; } }
  @media (max-width: 767px) {
    .todo_page .table_wrapper .table_files thead {
      display: none; } }
  .todo_page .table_wrapper .table_files.table_history tr th:nth-child(1) {
    width: 200px;
    text-align: left; }
  .todo_page .table_wrapper .table_files.table_history tr th:nth-child(2) {
    width: auto;
    text-align: left; }
  .todo_page .table_wrapper .table_files.table_history tr td:nth-child(1) {
    width: 200px;
    text-align: left; }
    @media (max-width: 767px) {
      .todo_page .table_wrapper .table_files.table_history tr td:nth-child(1) {
        display: block;
        width: 100%;
        border: none; } }
  .todo_page .table_wrapper .table_files.table_history tr td:nth-child(2) {
    width: auto;
    text-align: left;
    color: #1e3948; }
    @media (max-width: 767px) {
      .todo_page .table_wrapper .table_files.table_history tr td:nth-child(2) {
        display: block;
        width: 100%;
        border: none; } }
  @media (max-width: 767px) {
    .todo_page .table_wrapper .table_files.table_history tr {
      border-bottom: 1px solid #e8ebec; }
      .todo_page .table_wrapper .table_files.table_history tr:first-of-type td {
        padding-top: 0; }
      .todo_page .table_wrapper .table_files.table_history tr td {
        padding: 0; }
        .todo_page .table_wrapper .table_files.table_history tr td:nth-child(1) {
          padding-top: 11px;
          padding-bottom: 2px; }
        .todo_page .table_wrapper .table_files.table_history tr td:nth-child(2) {
          padding-top: 2px;
          padding-bottom: 11px; } }

.todo_page.files .filters_wrap .group.filter_by span:first-of-type {
  width: 97px; }

.todo_page.files .filters_wrap .group.filter_by .input-text {
  width: calc(100% - 120px) !important; }

@media (max-width: 1240px) {
  .todo_page.files .table_wrapper .table_files tr th:nth-child(3),
  .todo_page.files .table_wrapper .table_files tr th:nth-child(4) {
    display: none; } }

.todo_page.files .table_wrapper .table_files tr td:nth-child(1) {
  width: 32%; }
  @media (max-width: 1240px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(1) {
      width: 30%; } }
  @media (max-width: 767px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(1) {
      width: 70%; } }

.todo_page.files .table_wrapper .table_files tr td:nth-child(2) {
  width: 12%; }
  @media (max-width: 1240px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(2) {
      width: 20%; } }
  @media (max-width: 767px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(2) {
      display: none; } }

.todo_page.files .table_wrapper .table_files tr td:nth-child(3) {
  width: 12%; }
  @media (max-width: 1240px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(3) {
      display: none; } }
  @media (max-width: 767px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(3) {
      display: none; } }

.todo_page.files .table_wrapper .table_files tr td:nth-child(4) {
  width: 12%; }
  @media (max-width: 1240px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(4) {
      display: none; } }
  @media (max-width: 767px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(4) {
      display: none; } }

.todo_page.files .table_wrapper .table_files tr td:nth-child(5) {
  width: 12%; }
  @media (max-width: 1240px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(5) {
      width: 20%; } }
  @media (max-width: 767px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(5) {
      display: none; } }

.todo_page.files .table_wrapper .table_files tr td:nth-child(6) {
  width: 16%; }
  @media (max-width: 1240px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(6) {
      width: 30%; } }
  @media (max-width: 767px) {
    .todo_page.files .table_wrapper .table_files tr td:nth-child(6) {
      width: 30%; } }

@media (max-width: 991px) {
  .todo_page .sidebar {
    margin-bottom: 25px; } }

.todo_page .sidebar .inner-col > h3 {
  border-bottom: 1px solid #e8ebec;
  text-align: center;
  padding: 15px 0;
  margin: 0; }

.todo_page .sidebar .inner-col .inner-wrap {
  padding: 25px; }
  @media (max-width: 767px) {
    .todo_page .sidebar .inner-col .inner-wrap {
      padding: 15px; } }
  .todo_page .sidebar .inner-col .inner-wrap .info_box {
    background-color: #f9fcf3;
    border: 1px solid #dbebb9;
    border-radius: 5px;
    box-shadow: 0 2px 0 #dbebb9;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 26px;
    padding-right: 38px;
    padding-left: 70px;
    position: relative;
    margin-bottom: 28px; }
    .todo_page .sidebar .inner-col .inner-wrap .info_box span {
      font-weight: 500; }
    .todo_page .sidebar .inner-col .inner-wrap .info_box:before {
      color: #8abc19;
      font-size: 25px;
      content: "\f274";
      font-family: FontAwesome;
      left: 28px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  .todo_page .sidebar .inner-col .inner-wrap .input-text {
    background-color: #fbfbfb;
    border: 1px solid #e8ebec;
    border-radius: 5px;
    box-shadow: inset 0 2px 0 #e8ebec;
    width: 100%;
    color: #1e3948;
    font-size: 15px;
    font-weight: 300;
    padding: 10px 10px 8px; }
  .todo_page .sidebar .inner-col .inner-wrap .form-group {
    margin-bottom: 15px; }
    .todo_page .sidebar .inner-col .inner-wrap .form-group > p {
      color: #8e9ca3;
      font-size: 15px;
      font-weight: 300; }
      .todo_page .sidebar .inner-col .inner-wrap .form-group > p i {
        color: #bbc3c8;
        font-family: FontAwesome;
        font-size: 15px;
        font-weight: 400;
        margin-left: 3px; }
    .todo_page .sidebar .inner-col .inner-wrap .form-group .input-group {
      background-color: #fbfbfb;
      border: 1px solid #e8ebec;
      border-radius: 5px; }
      .todo_page .sidebar .inner-col .inner-wrap .form-group .input-group .input-group-addon {
        background-color: #e8ebec;
        border: none;
        font-size: 16px;
        font-weight: normal;
        line-height: 1;
        padding: 6px 12px;
        text-align: center;
        color: #8e9ca3;
        font-family: FontAwesome;
        font-size: 18px;
        font-weight: 400; }
      .todo_page .sidebar .inner-col .inner-wrap .form-group .input-group input.form-control, .todo_page .sidebar .inner-col .inner-wrap .form-group .input-group .mastermind-users .algolia-search input, .mastermind-users .algolia-search .todo_page .sidebar .inner-col .inner-wrap .form-group .input-group input {
        background-color: #fbfbfb;
        border: none;
        box-shadow: inset 0 2px 0 #e8ebec;
        height: 40px;
        line-height: 40px;
        padding-left: 15px;
        padding-top: 10px;
        color: #1e3948;
        font-size: 15px;
        font-weight: 300; }
    .todo_page .sidebar .inner-col .inner-wrap .form-group .chbx-wrap {
      padding: 4px 0; }
      .todo_page .sidebar .inner-col .inner-wrap .form-group .chbx-wrap label {
        padding: 0 0 0 8px; }

@media (max-width: 767px) {
  .todo_page .main_content {
    padding: 0; }
    .todo_page .main_content .inner-col {
      background-color: white;
      border: none;
      border-radius: 0;
      box-shadow: none;
      overflow: visible; }
      .todo_page .main_content .inner-col .nav-tabs-dropdown {
        border: none;
        width: 100%;
        background-color: white;
        border: 1px solid #bad3e8;
        box-shadow: 0 2px 0 #bad3e8;
        border-radius: 5px 5px 0 0 !important;
        color: #1a6db4;
        font-size: 18px;
        font-weight: 500; } }

.todo_page .filter_mobile {
  display: none;
  margin-top: 15px; }
  @media (max-width: 991px) {
    .todo_page .filter_mobile {
      display: none;
      margin-bottom: 0; } }
  .todo_page .filter_mobile .filter_mobile_wrapper {
    padding: 20px 0 10px; }

.tasks {
  padding-top: 10px; }
  .tasks .btn-tasks {
    display: none; }
    @media (max-width: 991px) {
      .tasks .btn-tasks {
        display: block;
        width: 100%;
        margin-bottom: 65px; }
        .tasks .btn-tasks .dropdown-toggle {
          width: 100%;
          height: 45px;
          background-color: white;
          border: 1px solid #bbc3c8;
          border-radius: 5px 5px 0 0 !important;
          box-shadow: 0 2px 0 #bbc3c8;
          color: #1e3948;
          font-size: 18px;
          font-weight: 500; }
          .tasks .btn-tasks .dropdown-toggle i.fa-angle-down {
            font-size: 25px;
            position: absolute;
            right: 10px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
        .tasks .btn-tasks .dropdown-menu {
          top: 45px;
          background-color: #f4f5f6;
          border: 1px solid #bbc3c8;
          border-radius: 0 0 5px 5px;
          box-shadow: 0 2px 0 #bbc3c8;
          padding: 0;
          margin: 0; }
          .tasks .btn-tasks .dropdown-menu li {
            padding: 0;
            margin: 0; }
            .tasks .btn-tasks .dropdown-menu li a {
              padding: 0;
              margin: 0;
              font-size: 16px;
              font-weight: 500;
              color: #bbc3c8;
              padding: 9px 0 7px 38px;
              border-bottom: 1px solid #bbc3c8;
              line-height: normal; }
            .tasks .btn-tasks .dropdown-menu li.active a {
              color: #1e3948;
              background: none;
              position: relative; }
              .tasks .btn-tasks .dropdown-menu li.active a:before {
                content: '\f00c';
                font: 15px/1 'FontAwesome';
                color: #1e3948;
                margin: 0;
                position: absolute;
                left: 16px;
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%); } }
  .tasks .row {
    margin-left: -15px;
    margin-right: -15px; }
    .tasks .row .col {
      padding-left: 15px;
      padding-right: 15px;
      border-right: 1px solid #e8ebec; }
      @media (max-width: 991px) {
        .tasks .row .col {
          border: none; } }
      .tasks .row .col:last-of-type {
        border: none; }
      .tasks .row .col h4 {
        background-color: white;
        border: 1px solid #bbc3c8;
        border-radius: 5px 5px 0 0;
        box-shadow: 0 2px 0 #bbc3c8;
        padding: 10px 0;
        text-align: center;
        color: #1e3948;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 17px; }
        @media (max-width: 991px) {
          .tasks .row .col h4 {
            display: none; } }
      .tasks .row .col .box-wrapper {
        max-height: 1500px;
        overflow-y: scroll;
        -ms-overflow-style: none; }
        .tasks .row .col .box-wrapper::-webkit-scrollbar {
          display: none; }
  .tasks .tasks_desktop {
    display: -webkit-box;
    display: flex; }
    .tasks .tasks_desktop .col {
      -webkit-box-flex: 1;
      flex: 1; }
    @media (max-width: 991px) {
      .tasks .tasks_desktop {
        display: none; } }
  @media (min-width: 993px) {
    .tasks .tasks_mobile {
      display: none; } }

.box_task {
  background-color: white;
  border: 1px solid #e8ebec;
  border-radius: 5px;
  box-shadow: 0 2px 0 #e8ebec;
  margin-bottom: 17px;
  padding: 18px;
  position: relative; }
  .box_task.completed {
    background-color: #dff0d8;
    color: #3c763d;
    border-color: #d6e9c6; }
    .box_task.completed a.title {
      color: #3c763d; }
  .box_task.view-completed {
    text-align: center;
    background-color: #dff0d8;
    color: #3c763d; }
    .box_task.view-completed .fa-check {
      color: white;
      background-color: #96d019; }
    .box_task.view-completed a.title {
      color: #3c763d; }
  @media (max-width: 991px) {
    .box_task {
      padding: 15px; } }
  .box_task .drag {
    color: #e8ebec;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    top: 21px;
    right: 19px;
    cursor: move; }
  .box_task .info_task {
    color: white;
    font-size: 10px;
    font-weight: 500;
    display: inline-block;
    border-radius: 9px;
    padding: 3px 9px 2px;
    margin-bottom: 16px; }
    .box_task .info_task i {
      color: white;
      font-size: 11px;
      font-weight: 400;
      margin-right: 4px; }
    .box_task .info_task.start {
      background-color: #89bc17; }
    .box_task .info_task.accept {
      background-color: #89bc17; }
    .box_task .info_task.reject {
      background-color: #f24a44; }
    .box_task .info_task.deliver {
      background-color: #4797dc; }
    .box_task .info_task.finish {
      background-color: #1a6db4; }
  .box_task:last-of-type {
    margin-bottom: 0; }
  .box_task p {
    margin: 0;
    padding: 0; }
  .box_task a.title {
    color: #1a6db4;
    font-size: 15px;
    font-weight: 500;
    display: inline-block; }
  .box_task p.subtitle {
    color: #1e3948;
    font-size: 12px;
    font-weight: 300;
    margin: 10px 0; }
    @media (max-width: 991px) {
      .box_task p.subtitle {
        margin: 10px 0 3px; } }
    .box_task p.subtitle i {
      font-style: italic;
      color: #bbc3c8; }
  .box_task ul li {
    float: left; }
    .box_task ul li i {
      background-color: #f2cf44;
      border-radius: 50%;
      color: white;
      font-size: 10px;
      font-weight: 400;
      height: 15px;
      line-height: 15px;
      text-align: center;
      width: 15px;
      margin-right: 5px; }
      .box_task ul li i.fa-bug {
        background-color: #f24a44; }
    .box_task ul li span {
      margin: 0; }

.tabs-wrapper .nav-tabs-dropdown {
  display: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

@media (min-width: 769px) {
  .tabs-wrapper #nav-tabs-wrapper {
    display: block !important; } }

@media (max-width: 767px) {
  .tabs-wrapper .nav-tabs-dropdown {
    display: block; }
  .tabs-wrapper #nav-tabs-wrapper {
    display: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    text-align: center; }
  .tabs-wrapper .nav-tabs-horizontal {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
    .tabs-wrapper .nav-tabs-horizontal > li {
      float: none; }
      .tabs-wrapper .nav-tabs-horizontal > li + li {
        margin-left: 2px; } }
      @media (max-width: 767px) and (max-width: 767px) {
        .tabs-wrapper .nav-tabs-horizontal > li + li {
          margin: 0; } }

@media (max-width: 767px) {
      .tabs-wrapper .nav-tabs-horizontal > li > a {
        border-radius: 4px; } }
      @media (max-width: 767px) and (max-width: 767px) {
        .tabs-wrapper .nav-tabs-horizontal > li > a {
          border-radius: 0; } }

@media (max-width: 767px) {
    .tabs-wrapper .nav-tabs-horizontal > li,
    .tabs-wrapper .nav-tabs-horizontal > li > a {
      background: transparent;
      width: 100%; }
    .tabs-wrapper .nav-tabs-horizontal > li.active > a,
    .tabs-wrapper .nav-tabs-horizontal > li.active > a:hover,
    .tabs-wrapper .nav-tabs-horizontal > li.active > a:focus {
      color: #ffffff;
      background-color: #428bca; } }
  @media (max-width: 767px) and (max-width: 767px) {
    .tabs-wrapper .nav-tabs-horizontal {
      margin-bottom: 0;
      padding: 0;
      background-color: #e8f0f7;
      border: 1px solid #bad3e8;
      border-radius: 0 0 5px 5px;
      box-shadow: 0 2px 0 #bad3e8; }
      .tabs-wrapper .nav-tabs-horizontal > li {
        width: 100% !important;
        margin: 0; }
      .tabs-wrapper .nav-tabs-horizontal > li.active > a {
        background-color: #e8f0f7; }
      .tabs-wrapper .nav-tabs-horizontal > li.active > a:hover,
      .tabs-wrapper .nav-tabs-horizontal > li.active > a:focus {
        background-color: #e8f0f7;
        color: #1e6ab4; }
      .tabs-wrapper .nav-tabs-horizontal > li.active > a,
      .tabs-wrapper .nav-tabs-horizontal > li.active > a:hover,
      .tabs-wrapper .nav-tabs-horizontal > li.active > a:focus {
        color: #1e6ab4; } }

.tabs-wrapper .nav-tabs > li > a::after {
  content: "";
  display: inline-block;
  min-height: unset;
  vertical-align: middle;
  width: 0; }

.tabs-wrapper .nav-tabs > li {
  border: none;
  background-color: #e8f0f7;
  border-radius: 0;
  width: 33.3333333333%;
  margin: 0;
  border-left: 1px solid #d1e2f0; }
  @media (max-width: 767px) {
    .tabs-wrapper .nav-tabs > li {
      border-bottom: 1px solid #bad3e8; } }
  .tabs-wrapper .nav-tabs > li a {
    background: none;
    color: #8cb6d9;
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    padding: 13px 0; }
    @media (max-width: 767px) {
      .tabs-wrapper .nav-tabs > li a {
        padding: 8px 0;
        padding-left: 40px;
        text-align: left; } }
  .tabs-wrapper .nav-tabs > li.active {
    background: white; }
    .tabs-wrapper .nav-tabs > li.active a {
      color: #1a6db4;
      font-size: 18px;
      font-weight: 500;
      position: relative; }
      @media (max-width: 767px) {
        .tabs-wrapper .nav-tabs > li.active a:after {
          color: #1a6db4;
          content: "\f00c";
          display: block;
          font-family: FontAwesome;
          font-size: 15px;
          left: 15px;
          top: 8px;
          position: absolute;
          z-index: 9; } }
    .tabs-wrapper .nav-tabs > li.active:hover {
      background: white; }
  .tabs-wrapper .nav-tabs > li:first-of-type {
    border-left: none; }

.tabs-wrapper .nav-tabs > li.active a::before,
.tabs-wrapper .nav-tabs > li a:hover::before {
  display: none; }

.tabs-wrapper .nav-tabs > li.active > a,
.tabs-wrapper .nav-tabs > li.active > a:hover,
.tabs-wrapper .nav-tabs > li.active > a:focus {
  border: none;
  cursor: default; }

.tabs-wrapper .nav-tabs > li > a:hover,
.tabs-wrapper .nav-tabs > li > a:focus {
  background: none;
  text-decoration: none; }

.tabs-wrapper .tab-content {
  padding: 30px; }
  @media (max-width: 1240px) {
    .tabs-wrapper .tab-content {
      padding: 15px;
      padding-top: 25px; } }
  @media (max-width: 767px) {
    .tabs-wrapper .tab-content {
      padding: 0;
      padding-top: 20px; } }
  .tabs-wrapper .tab-content .discussion .media-heading .posted {
    float: left;
    top: -2px; }

.datepicker-dropdown.datepicker {
  background: white none repeat scroll 0 0;
  left: 0;
  top: 0;
  width: 250px;
  padding: 4px 0px 4px 2px;
  border: 1px solid #e8ebec; }
  .datepicker-dropdown.datepicker:after {
    border-color: transparent transparent white;
    border-style: none solid solid;
    border-width: 0 13px 10px;
    bottom: -9px;
    content: "";
    display: inline-block;
    left: 20px !important;
    position: absolute;
    top: auto !important;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  .datepicker-dropdown.datepicker.dropdown-menu {
    font-size: 17px;
    font-weight: 500; }
    .datepicker-dropdown.datepicker.dropdown-menu table {
      -moz-user-select: none;
      margin: 0 auto; }
  .datepicker-dropdown.datepicker.datepicker-orient-top::before {
    border-bottom: 11px none;
    border-top: 11px solid #e8ebec;
    border-width: 11px 12px;
    bottom: -11px;
    left: 21px;
    top: auto; }
  .datepicker-dropdown.datepicker table .prev, .datepicker-dropdown.datepicker table .datepicker-switch, .datepicker-dropdown.datepicker table .next {
    cursor: pointer; }
  .datepicker-dropdown.datepicker table tr td.day:hover, .datepicker-dropdown.datepicker table tr td.day.focused {
    background: #d9e5ec none repeat scroll 0 0;
    cursor: pointer; }
  .datepicker-dropdown.datepicker table tr td.active, .datepicker-dropdown.datepicker table tr td.active:hover, .datepicker-dropdown.datepicker table tr td.active.disabled, .datepicker-dropdown.datepicker table tr td.active.disabled:hover {
    background-color: #1E6AB4;
    background-image: -webkit-linear-gradient(top, #1e8ad9, #1E6AB4);
    background-image: linear-gradient(to bottom, #1e8ad9, #1E6AB4);
    background-repeat: repeat-x;
    border: none;
    color: #fff;
    text-shadow: none; }

@media (min-width: 992px) {
  .todo_page #page-content > .row > .sidebar {
    display: none; } }

@media (max-width: 991px) {
  .todo_page #page-content > .row > .sidebar {
    display: block; }
    .todo_page #page-content > .row > .sidebar .developers,
    .todo_page #page-content > .row > .sidebar .team,
    .todo_page #page-content > .row > .sidebar .dev-info,
    .todo_page #page-content > .row > .sidebar .deploy-settings,
    .todo_page #page-content > .row > .sidebar .project-engineer .profile_desc {
      display: none; } }

.page-title {
  display: inline-block;
  margin: 0;
  font-size: 25px;
  font-weight: 500; }

@media (max-width: 767px) {
  .brief.tabs-sidebar-layout .btn_start {
    float: right; } }

.brief .tabs-wrapper .nav-tabs > li {
  width: 25%; }

.brief .tab-content .expand-wrapper {
  text-align: center;
  position: relative;
  margin-bottom: 25px; }
  .brief .tab-content .expand-wrapper:before {
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 12px;
    width: 100%;
    background-color: #e8ebec;
    z-index: 0; }
  .brief .tab-content .expand-wrapper .btn-expand {
    background-color: #e8ebec;
    color: #1e3948;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 13px 1px;
    border-radius: 50px;
    position: relative;
    z-index: 1; }
    .brief .tab-content .expand-wrapper .btn-expand i.fa {
      margin-left: 7px; }

.brief .summary-info {
  max-width: 225px;
  width: 100%;
  margin: 0 auto;
  color: #1e3948;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  text-align: center; }

.brief .summary-box {
  background-color: #fbfbfb;
  border: 1px solid #e8ebec;
  border-radius: 5px;
  box-shadow: 0 2px 0 #e8ebec;
  margin-top: 25px;
  margin-bottom: 25px; }
  .brief .summary-box .item {
    border-bottom: 1px solid #e8ebec;
    position: relative;
    padding: 9px 15px; }
    .brief .summary-box .item h5 {
      margin: 0;
      color: #1e3948;
      font-size: 18px;
      font-weight: 500; }
    .brief .summary-box .item p {
      margin: 0;
      color: #8e9ca3;
      font-size: 12px;
      font-weight: 300; }
    .brief .summary-box .item i {
      position: absolute;
      right: 20px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      color: #bbc3c8; }
    .brief .summary-box .item:last-of-type {
      border-bottom: 0; }

.brief .panel-project-details .item .col-right {
  margin-left: 52px; }

@media (max-width: 1240px) {
  .brief #htab4 .heading_wrap .btn-oval-sm.pdf, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open {
    float: right;
    height: auto;
    padding: 9px 16px 7px 39px;
    position: relative;
    width: auto; }
    .brief #htab4 .heading_wrap .btn-oval-sm.pdf:before, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open:before {
      left: 23px; }
    .brief #htab4 .heading_wrap .btn-oval-sm.pdf span, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open span {
      display: inline-block; } }

@media (max-width: 767px) {
  .brief #htab4 .heading_wrap h2 {
    display: block;
    text-align: center; }
  .brief #htab4 .heading_wrap .btn-oval-sm.pdf, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open {
    float: none;
    left: 50%;
    margin: 12px 0 8px;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
    .brief #htab4 .heading_wrap .btn-oval-sm.pdf:before, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open:before {
      left: 23px; }
    .brief #htab4 .heading_wrap .btn-oval-sm.pdf span, .brief #htab4 .heading_wrap .pdf.uploadcare-widget-button-open span {
      display: inline-block; } }

.collapse-wrapper {
  margin-bottom: 30px; }
  .collapse-wrapper > .item {
    background-color: white;
    border: 1px solid #e8ebec;
    border-radius: 5px;
    box-shadow: 0 2px 0 #e8ebec;
    margin-bottom: 17px; }
    .collapse-wrapper > .item .iteam-header {
      padding: 10px 20px 8px 25px; }
      @media (max-width: 767px) {
        .collapse-wrapper > .item .iteam-header {
          padding: 0 10px; } }
      .collapse-wrapper > .item .iteam-header h4 {
        display: inline-block;
        color: #1e3948;
        font-size: 17px;
        font-weight: 500;
        cursor: pointer;
        position: relative;
        margin: 0;
        padding-top: 7px; }
        @media (max-width: 767px) {
          .collapse-wrapper > .item .iteam-header h4 {
            padding-top: 8px; }
            .collapse-wrapper > .item .iteam-header h4 span {
              white-space: nowrap;
              position: relative;
              max-width: 145px;
              overflow: hidden; }
              .collapse-wrapper > .item .iteam-header h4 span.cover:after {
                /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+78 */
                /* FF3.6-15 */
                background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 97%, white 100%);
                /* Chrome10-25,Safari5.1-6 */
                background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 97%, white 100%);
                /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
                /* IE6-9 */
                content: "";
                display: block;
                height: 100%;
                position: absolute;
                right: 0;
                top: 0;
                width: 100%;
                z-index: 2; } }
        .collapse-wrapper > .item .iteam-header h4 span {
          display: inline-block;
          position: relative; }
        .collapse-wrapper > .item .iteam-header h4 i {
          color: #bbc3c8;
          font-size: 20px;
          font-weight: 400;
          margin-left: 5px; }
      .collapse-wrapper > .item .iteam-header ul {
        float: right; }
        .collapse-wrapper > .item .iteam-header ul li {
          float: left; }
          .collapse-wrapper > .item .iteam-header ul li * {
            display: inline-block; }
          .collapse-wrapper > .item .iteam-header ul li span.preview {
            position: relative;
            top: 1px; }
            @media (max-width: 767px) {
              .collapse-wrapper > .item .iteam-header ul li span.preview {
                display: none; } }
          .collapse-wrapper > .item .iteam-header ul li img {
            margin-left: 10px; }
            @media (max-width: 767px) {
              .collapse-wrapper > .item .iteam-header ul li img {
                max-width: 32px;
                margin-left: 4px;
                margin-top: 6px; } }
          .collapse-wrapper > .item .iteam-header ul li .sep {
            width: 1px;
            height: 25px;
            background-color: #e8ebec;
            display: inline-block;
            margin: 8px 14px 0; }
            @media (max-width: 767px) {
              .collapse-wrapper > .item .iteam-header ul li .sep {
                margin: 8px 5px 0; } }
          .collapse-wrapper > .item .iteam-header ul li .btn-success-blank {
            margin-top: 5px;
            padding: 5px 14px; }
            .collapse-wrapper > .item .iteam-header ul li .btn-success-blank i {
              display: none; }
            @media (max-width: 767px) {
              .collapse-wrapper > .item .iteam-header ul li .btn-success-blank {
                border: none;
                posirion: relative;
                margin-top: 6px;
                padding: 0; }
                .collapse-wrapper > .item .iteam-header ul li .btn-success-blank span {
                  display: none; }
                .collapse-wrapper > .item .iteam-header ul li .btn-success-blank i {
                  display: inline-block;
                  font-size: 28px; }
                  .collapse-wrapper > .item .iteam-header ul li .btn-success-blank i.inactive {
                    opacity: 0.4; } }
    .collapse-wrapper > .item .item-content {
      background-color: #fbfbfb;
      border-top: 1px solid #e8ebec;
      padding: 25px 30px 12px; }
      @media (max-width: 767px) {
        .collapse-wrapper > .item .item-content {
          padding: 10px; } }
      .collapse-wrapper > .item .item-content .checkbox-list {
        margin-bottom: 20px; }
        .collapse-wrapper > .item .item-content .checkbox-list .checkbox-item input {
          padding: 0;
          margin: 0;
          margin-right: 7px;
          vertical-align: text-top; }
        .collapse-wrapper > .item .item-content .checkbox-list .checkbox-item span.sep {
          background-color: #bbc3c8;
          display: inline-block;
          height: 15px;
          margin: 0 6px 0 3px;
          position: relative;
          top: 3px;
          width: 1px; }
        .collapse-wrapper > .item .item-content .checkbox-list .checkbox-item .info_file {
          color: #8e9ca3;
          font-family: "Gotham Rounded";
          font-size: 13px;
          font-weight: 300; }
        .collapse-wrapper > .item .item-content .checkbox-list .checkbox-item a.file_name {
          color: #337bb8;
          font-size: 13px;
          font-weight: 300;
          margin-left: 7px; }
          .collapse-wrapper > .item .item-content .checkbox-list .checkbox-item a.file_name i {
            margin-right: 4px; }
      .collapse-wrapper > .item .item-content h5 {
        color: #1e3948;
        font-size: 14px;
        font-weight: 500; }
      .collapse-wrapper > .item .item-content > p {
        font-size: 13px;
        font-weight: 300;
        line-height: 24px; }
        .collapse-wrapper > .item .item-content > p a {
          color: #1a6db4; }

.info-box-green {
  background-color: #f9fcf3;
  border: 1px solid #edf5dc;
  border-radius: 5px;
  box-shadow: 0 2px 0 #edf5dc;
  width: 100%;
  height: 89px;
  padding-right: 20px;
  margin-bottom: 35px; }
  @media (max-width: 767px) {
    .info-box-green {
      padding-right: 0;
      height: 60px; } }
  .info-box-green .icon {
    background-color: #89bc17;
    border-radius: 5px 0 0 5px;
    width: 90px;
    height: 100%;
    float: left;
    text-align: center; }
    @media (max-width: 767px) {
      .info-box-green .icon {
        width: 60px; } }
    .info-box-green .icon i {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      display: inline-block;
      color: white;
      font-size: 25px;
      font-weight: 400; }
  .info-box-green .col:nth-child(2) {
    float: left;
    width: calc(65% - 45px);
    padding: 0;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block; }
    @media (max-width: 1240px) {
      .info-box-green .col:nth-child(2) {
        width: calc(55% - 45px);
        padding-top: 10px;
        padding-bottom: 10px; } }
    @media (max-width: 767px) {
      .info-box-green .col:nth-child(2) {
        width: calc(100% - 60px); } }
    .info-box-green .col:nth-child(2) > p {
      padding: 0 25px;
      text-align: center;
      margin: 0;
      color: #1e3948; }
  .info-box-green .col:nth-child(3) {
    float: left;
    width: calc(35% - 45px);
    padding: 0;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block; }
    @media (max-width: 1240px) {
      .info-box-green .col:nth-child(3) {
        width: calc(45% - 45px); } }
    @media (max-width: 767px) {
      .info-box-green .col:nth-child(3) {
        display: none; } }

.sitemap {
  position: relative; }
  .sitemap .tree ul > li > ul {
    margin-left: 45px; }
    @media (max-width: 767px) {
      .sitemap .tree ul > li > ul {
        margin-left: 15px; } }
  .sitemap .tree {
    /*Remove connectors before root*/
    /*Remove connectors after last child*/ }
    .sitemap .tree .first-level {
      margin-left: 100px; }
      @media (max-width: 767px) {
        .sitemap .tree .first-level {
          margin-left: 15px; } }
    .sitemap .tree li {
      margin: 0px 0;
      list-style-type: none;
      position: relative;
      padding: 20px 5px 0px 5px;
      background: white; }
      @media (max-width: 767px) {
        .sitemap .tree li {
          padding: 8px 0 0 5px; } }
      .sitemap .tree li:before {
        content: '';
        position: absolute;
        top: -5px;
        width: 1px;
        height: 100%;
        right: auto;
        left: -20px;
        border-left: 2px solid #e8ebec;
        bottom: 50px; }
        @media (max-width: 767px) {
          .sitemap .tree li:before {
            border-left: 2px solid #e8ebec;
            bottom: 50px;
            content: "";
            height: 100%;
            left: -5px;
            position: absolute;
            right: auto;
            top: -5px;
            width: 1px; } }
      .sitemap .tree li:after {
        content: '';
        position: absolute;
        top: 50px;
        width: 25px;
        height: 20px;
        right: auto;
        left: -20px;
        border-top: 2px solid #e8ebec; }
        @media (max-width: 767px) {
          .sitemap .tree li:after {
            content: "";
            height: 20px;
            left: -5px;
            position: absolute;
            top: 27px;
            width: 10px; } }
      .sitemap .tree li > div.leaf,
      .sitemap .tree li div.root {
        display: inline-block;
        padding: 8px 10px 8px 20px;
        text-decoration: none;
        background-color: white;
        border: 1px solid #e8ebec;
        border-radius: 5px;
        box-shadow: 0 2px 0 #e8ebec;
        color: #1e3948;
        font-size: 17px;
        font-weight: 500; }
        @media (max-width: 767px) {
          .sitemap .tree li > div.leaf,
          .sitemap .tree li div.root {
            padding: 4px;
            width: 100%; } }
        .sitemap .tree li > div.leaf h5,
        .sitemap .tree li div.root h5 {
          display: inline-block;
          -webkit-transform: translateY(50%);
          transform: translateY(50%);
          margin: 0;
          color: #1e3948;
          font-size: 17px;
          font-weight: 500;
          margin-right: 37px;
          float: left; }
          @media (max-width: 767px) {
            .sitemap .tree li > div.leaf h5,
            .sitemap .tree li div.root h5 {
              margin-right: 15px;
              margin-top: 6px;
              padding-left: 4px;
              -webkit-transform: translateY(0);
              transform: translateY(0);
              font-size: 15px; } }
        .sitemap .tree li > div.leaf p,
        .sitemap .tree li div.root p {
          display: inline-block;
          margin: 0;
          float: right; }
          .sitemap .tree li > div.leaf p span,
          .sitemap .tree li div.root p span {
            color: #8e9ca3;
            font-size: 13px;
            font-weight: 500; }
            @media (max-width: 767px) {
              .sitemap .tree li > div.leaf p span,
              .sitemap .tree li div.root p span {
                display: none; } }
          .sitemap .tree li > div.leaf p *,
          .sitemap .tree li div.root p * {
            display: inline-block;
            text-align: right; }
          @media (max-width: 767px) {
            .sitemap .tree li > div.leaf p img,
            .sitemap .tree li div.root p img {
              max-width: 32px; } }
    .sitemap .tree > ul > li::before,
    .sitemap .tree > ul > li::after {
      border: 0; }
    .sitemap .tree li:last-child::before {
      height: 57px; }
      @media (max-width: 767px) {
        .sitemap .tree li:last-child::before {
          height: 33px; } }

.table-invoice {
  background-color: white;
  margin-bottom: 35px;
  box-shadow: 0 3px 0 #e8ebec;
  border-radius: 5px; }
  .table-invoice table, .table-invoice tr, .table-invoice td {
    border-collapse: separate;
    border: 0; }
  .table-invoice > table {
    width: 100%; }
    .table-invoice > table tr:first-of-type td {
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
      border-bottom: 0; }
    .table-invoice > table tr:last-of-type td {
      border-top: 0;
      border-bottom: 0;
      -webkit-border-bottom-left-radius: 5px;
      -webkit-border-bottom-right-radius: 5px;
      -moz-border-radius-bottomleft: 5px;
      -moz-border-radius-bottomright: 5px;
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px; }
  .table-invoice td {
    border: 1px solid #e8ebec; }
  .table-invoice p {
    margin: 0; }
  .table-invoice tr.inner-table-wrap > td:nth-child(1) {
    width: 53%;
    border-right: 0; }
    @media (max-width: 767px) {
      .table-invoice tr.inner-table-wrap > td:nth-child(1) {
        width: 100%;
        display: block;
        border-right: 1px solid #e8ebec; } }
  .table-invoice tr.inner-table-wrap > td:nth-child(2) {
    width: 47%;
    text-align: center; }
    @media (max-width: 767px) {
      .table-invoice tr.inner-table-wrap > td:nth-child(2) {
        width: 100%;
        display: block;
        border-top: 0; } }
    .table-invoice tr.inner-table-wrap > td:nth-child(2) p {
      padding: 0 15px; }
      .table-invoice tr.inner-table-wrap > td:nth-child(2) p span {
        display: block;
        font-weight: 500; }
    .table-invoice tr.inner-table-wrap > td:nth-child(2) a.btn {
      margin-top: 11px; }
  .table-invoice tr td {
    padding: 14px 10px;
    color: #1e3948;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px; }
    .table-invoice tr td h5 {
      color: #1e3948;
      font-size: 19px;
      font-weight: 500;
      text-align: center;
      margin: 0;
      padding: 4px 0; }
  .table-invoice tr td.inner-table {
    background-color: #fbfbfb;
    padding: 0; }
    .table-invoice tr td.inner-table table {
      width: 100%; }
    .table-invoice tr td.inner-table table, .table-invoice tr td.inner-table th, .table-invoice tr td.inner-table td {
      border: 0;
      border-collapse: collapse; }
    .table-invoice tr td.inner-table tr {
      border-bottom: 1px solid #e8ebec; }
      .table-invoice tr td.inner-table tr td p.light {
        color: #bbc3c8;
        font-size: 12px; }
        .table-invoice tr td.inner-table tr td p.light.green {
          color: #89bc17; }
      .table-invoice tr td.inner-table tr td:nth-child(1) {
        border-right: 1px solid #e8ebec;
        text-align: right;
        width: 70%; }
      .table-invoice tr td.inner-table tr td:nth-child(2) {
        text-align: right;
        width: 30%; }
      .table-invoice tr td.inner-table tr:last-of-type {
        border-bottom: 0; }
  .table-invoice tr:last-of-type td {
    text-align: center; }
    .table-invoice tr:last-of-type td p span {
      color: #bbc3c8; }

.invoice-preview {
  margin-top: 10px;
  padding-bottom: 50px; }
  .invoice-preview > .row:first-of-type .col:nth-child(1) p {
    max-width: 240px;
    color: #1e3948;
    font-size: 15px;
    line-height: 24px;
    font-weight: 300; }
  .invoice-preview > .row:first-of-type .col:nth-child(2) .logo-invoice {
    width: 78px;
    height: 75px;
    float: right; }
    @media (max-width: 767px) {
      .invoice-preview > .row:first-of-type .col:nth-child(2) .logo-invoice {
        max-width: 40px; } }
  .invoice-preview > .row:nth-child(2) {
    margin-top: 25px;
    margin-bottom: 25px; }
    .invoice-preview > .row:nth-child(2) p {
      line-height: 24px; }
    .invoice-preview > .row:nth-child(2) table tr:nth-child(1) td {
      background-color: #fbfbfb;
      border-left: 0;
      border-right: 0; }
    .invoice-preview > .row:nth-child(2) table tr:nth-child(1) td:nth-child(2) {
      text-align: right; }
    .invoice-preview > .row:nth-child(2) table tr:nth-child(2) td:nth-child(2) {
      text-align: right; }
    .invoice-preview > .row:nth-child(2) table tr:nth-child(2) td {
      border-top: 1px solid #e8ebec;
      border-bottom: 1px solid #e8ebec;
      padding: 5px 10px;
      border-left: 0;
      border-right: 0; }
    .invoice-preview > .row:nth-child(2) table td {
      border-top: 1px solid #e8ebec;
      border-bottom: 1px solid #e8ebec;
      padding: 5px 10px; }
  .invoice-preview > h5 {
    color: #1e3948;
    font-size: 15px;
    font-weight: 500;
    padding-left: 15px;
    margin-top: 20px; }
  .invoice-preview table {
    width: 100%; }
    .invoice-preview table tr td {
      padding: 10px;
      border: 1px solid #e8ebec; }
      .invoice-preview table tr td p {
        margin: 0; }
  .invoice-preview .table-desc-xs {
    margin-bottom: 15px; }
  .invoice-preview .table-desc tr td:nth-child(2) {
    width: 100px;
    text-align: center; }
  .invoice-preview .table-desc tr td:nth-child(3) {
    width: 70px;
    text-align: center; }
  .invoice-preview .table-desc tr td:nth-child(4) {
    width: 100px;
    text-align: center; }
  .invoice-preview .table-desc tr td.colspan {
    text-align: right; }
  @media (max-width: 767px) {
    .invoice-preview .table-desc tr:nth-child(1) td:first-of-type {
      display: none; }
    .invoice-preview .table-desc tr:nth-child(2) td:first-of-type {
      display: none; } }
  .invoice-preview table:last-of-type tr td:nth-child(2) {
    width: 95px;
    text-align: center; }
  .invoice-preview table:last-of-type tr td:nth-child(3) {
    width: 125px;
    text-align: center; }

.invoices .main_content .invoice-preview {
  margin-top: 0;
  padding-bottom: 70px; }

.invoices .sidebar .table-invoice {
  box-shadow: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0; }
  .invoices .sidebar .table-invoice td {
    border: 0 none; }
  .invoices .sidebar .table-invoice tr td.inner-table tr:last-of-type {
    border-bottom: 1px solid #e8ebec; }
  .invoices .sidebar .table-invoice table tr:first-of-type td {
    border-bottom: 0 none;
    border-radius: 0; }
  .invoices .sidebar .table-invoice tr.inner-table-wrap > td:nth-child(1) {
    width: 100%;
    display: block;
    border-right: 0; }
  .invoices .sidebar .table-invoice tr.inner-table-wrap > td:nth-child(2) {
    width: 100%;
    display: block;
    border-top: 0;
    border-bottom: 1px solid #e8ebec;
    padding: 20px 30px; }
  .invoices .sidebar .table-invoice tr.round-last > td {
    padding: 20px 30px; }
    .invoices .sidebar .table-invoice tr.round-last > td p span {
      font-weight: 500; }
  .invoices .sidebar .table-invoice tr.green_info td {
    background-color: #fbfdf8;
    border-bottom: 1px solid #e8ebec !important; }
    .invoices .sidebar .table-invoice tr.green_info td p {
      color: #89bc17;
      font-weight: 500;
      padding: 20px 55px;
      text-align: center; }
      @media (max-width: 1240px) {
        .invoices .sidebar .table-invoice tr.green_info td p {
          padding: 15px 15px; } }

.inner-wrapper {
  background-color: white;
  border: 1px solid #e8ebec;
  border-radius: 5px;
  box-shadow: 0 2px 0 #e8ebec;
  padding: 25px; }
  @media (max-width: 767px) {
    .inner-wrapper {
      padding: 15px; } }

/* ---------------------------------------------------------
   Landing page styles
   ---------------------------------------------------------*/
.visual-article {
  font-size: 22px;
  line-height: 2;
  padding: 143px 0 165px; }
  .visual-article.text-left {
    text-align: center; }
  @media (max-width: 1531px) {
    .visual-article {
      font-size: 18px; } }
  @media (max-width: 991px) {
    .visual-article {
      font-size: 16px;
      line-height: 1.4;
      padding: 105px 0 117px; } }
  .visual-article.visual {
    padding: 155px 0 112px; }
    @media (max-width: 991px) {
      .visual-article.visual {
        padding: 113px 0 100px; } }
    .visual-article.visual .btn-circle {
      bottom: -148px; }
      @media (max-width: 991px) {
        .visual-article.visual .btn-circle {
          bottom: -133px; } }
      @media (max-width: 767px) {
        .visual-article.visual .btn-circle {
          bottom: -117px; } }
    .visual-article.visual .new-section {
      margin-bottom: 200px; }
    .visual-article.visual .section-title {
      text-align: left;
      color: #337ab7;
      padding: 70px 0; }
    .visual-article.visual .section-icon {
      font-size: 225px;
      color: #337ab7;
      opacity: .5;
      margin-top: -20px; }
    .visual-article.visual .wysiwyg .img-responsive {
      margin: 40px; }
    .visual-article.visual .wysiwyg p, .visual-article.visual .wysiwyg li, .visual-article.visual .wysiwyg ul, .visual-article.visual .wysiwyg ol {
      font-size: 22px;
      font-weight: 300;
      line-height: 35px; }
    .visual-article.visual .wysiwyg p, .visual-article.visual .wysiwyg ul, .visual-article.visual .wysiwyg ol {
      margin-bottom: 60px; }
    .visual-article.visual .wysiwyg ul, .visual-article.visual .wysiwyg ol {
      margin-left: 30px; }
    .visual-article.visual .wysiwyg h4 {
      font-size: 30px;
      line-height: 35px; }
    .visual-article.visual .wysiwyg li {
      list-style: disc;
      margin-bottom: 15px; }
  .visual-article .container {
    position: relative; }
    @media (min-width: 992px) {
      .visual-article .container {
        width: 646px; } }
    @media (min-width: 1241px) {
      .visual-article .container {
        width: 900px; } }
    @media (min-width: 1532px) {
      .visual-article .container {
        width: 1224px; } }
  .visual-article h1 {
    font-size: 60px;
    line-height: 1.24;
    font-style: italic;
    font-weight: 400;
    color: #1e6ab4;
    margin-bottom: 52px; }
    @media (max-width: 1531px) {
      .visual-article h1 {
        font-size: 45px;
        margin-bottom: 28px; } }
    @media (max-width: 991px) {
      .visual-article h1 {
        font-size: 31px;
        line-height: 1.2; } }
  .visual-article p {
    max-width: none;
    margin-bottom: 0; }
  .visual-article .btn-circle {
    left: 50%;
    bottom: -164px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
    @media (max-width: 991px) {
      .visual-article .btn-circle {
        bottom: -114px; } }
    @media (max-width: 767px) {
      .visual-article .btn-circle {
        bottom: -97px; } }

.filteration {
  width: 157px;
  height: 391px;
  position: absolute;
  top: 32px;
  right: 100%;
  margin-right: 5px; }
  @media (max-width: 991px) {
    .filteration {
      display: none; } }
  .filteration .pipe-01 {
    top: 253px;
    border-left: 14px solid #000;
    bottom: -231px;
    left: 75px; }
    .filteration .pipe-01:before {
      content: '';
      bottom: -6px;
      left: -21px;
      transform: rotate(-90deg);
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg); }

.testimonial-block {
  padding: 131px 0;
  position: relative;
  color: #fff; }
  @media (max-width: 991px) {
    .testimonial-block {
      padding-bottom: 88px; } }
  @media (max-width: 767px) {
    .testimonial-block {
      padding: 72px 0 48px; } }
  .testimonial-block:before {
    background: url("../../images//bg03.jpg"); }
  .testimonial-block .quote-sym {
    text-align: center;
    position: relative;
    max-width: 520px;
    margin: 0 auto 60px; }
    .testimonial-block .quote-sym:before, .testimonial-block .quote-sym:after {
      content: '';
      position: absolute;
      top: 50%;
      width: 40%;
      border-top: 1px solid #fff; }
    .testimonial-block .quote-sym:before {
      left: 0; }
    .testimonial-block .quote-sym:after {
      right: 0; }
    .testimonial-block .quote-sym .ico-quote {
      overflow: hidden;
      text-indent: 101%;
      white-space: nowrap;
      display: inline-block;
      vertical-align: top;
      width: 32px;
      height: 22px;
      background: url("../../images//bg-quote-w.svg") no-repeat 0 0/100% auto; }
  .testimonial-block blockquote {
    padding: 0;
    background: none;
    text-align: center;
    outline: none;
    font: normal 300 22px/1.64 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    position: relative; }
    @media (max-width: 991px) {
      .testimonial-block blockquote {
        font-size: 18px;
        line-height: 1.45; } }
    .testimonial-block blockquote cite,
    .testimonial-block blockquote q,
    .testimonial-block blockquote .name,
    .testimonial-block blockquote .company {
      display: block;
      font-style: normal; }
    .testimonial-block blockquote q {
      margin-bottom: 61px; }
    .testimonial-block blockquote .img-avatar {
      width: 106px;
      margin-bottom: 22px; }
    .testimonial-block blockquote .name {
      display: block;
      color: #94cc17;
      font-weight: 500; }
    .testimonial-block blockquote .company {
      display: block; }
  .testimonial-block .slider-testimonial {
    padding: 0 40px; }
    @media (max-width: 767px) {
      .testimonial-block .slider-testimonial {
        padding: 0; } }
    .testimonial-block .slider-testimonial .slick-dots {
      margin: 35px auto 0;
      text-align: center; }
      @media (max-width: 767px) {
        .testimonial-block .slider-testimonial .slick-dots {
          margin-top: 10px; } }
    .testimonial-block .slider-testimonial .slick-arrow {
      display: inline !important; }
      @media (max-width: 767px) {
        .testimonial-block .slider-testimonial .slick-arrow {
          display: none !important; } }

.learn-block {
  padding: 145px 0 35px;
  color: #2e3338; }
  @media (max-width: 767px) {
    .learn-block {
      padding-top: 79px; } }
  .learn-block .heading {
    line-height: 1.75;
    padding-bottom: 57px; }
    @media (max-width: 767px) {
      .learn-block .heading {
        padding-bottom: 25px; } }
    .learn-block .heading h2 {
      font: normal 400 44px/1.2 "GothamRounded", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
      margin-bottom: 22px;
      color: #1e6ab4; }
      @media (max-width: 991px) {
        .learn-block .heading h2 {
          font-size: 32px;
          margin-bottom: 12px; } }
  .learn-block .field {
    margin-bottom: 50px;
    min-height: 119px; }
    @media (max-width: 767px) {
      .learn-block .field {
        margin-bottom: 25px;
        min-height: 80px; } }
    @media (min-width: 1241px) {
      .learn-block .field .row {
        margin: 0 -20px; } }
    @media (min-width: 1241px) {
      .learn-block .field .col-sm-6 {
        padding: 0 20px; } }
  .learn-block label {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 11px;
    text-transform: capitalize; }
    @media (max-width: 767px) {
      .learn-block label {
        font-size: 16px; } }
  .learn-block .form-control, .learn-block .mastermind-users .algolia-search input, .mastermind-users .algolia-search .learn-block input {
    margin-bottom: 25px; }
    @media (max-width: 767px) {
      .learn-block .form-control, .learn-block .mastermind-users .algolia-search input, .mastermind-users .algolia-search .learn-block input {
        margin-bottom: 20px; } }
  .learn-block #uniform-select-range {
    max-width: 266px;
    margin-top: 6px; }
  @media (max-width: 767px) {
    .learn-block .btn-wrap {
      text-align: center;
      padding-top: 20px; } }
  .learn-block .btn-lg, .learn-block .btn-group-lg > .btn {
    padding: 13px 56px;
    text-transform: uppercase;
    font-size: 20px; }

.std-input {
  background-color: #fbfbfb;
  border: 1px solid #e8ebec;
  border-radius: 5px;
  box-shadow: 0 2px 0 #e8ebec inset;
  color: #1e3948;
  font-size: 15px;
  font-weight: 300;
  padding: 10px 10px 8px;
  width: 100%; }

.cmv-landing .container {
  max-width: 1170px; }

.cmv-landing a, .cmv-landing i {
  display: inline-block; }

.cmv-landing strong {
  font-weight: 500; }

.cmv-landing .btn-oval-md {
  border: 2px solid #1768b6;
  border-radius: 27px;
  background: #1768b6;
  color: white;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 33px; }
  .cmv-landing .btn-oval-md i {
    margin-left: 14px;
    font-size: 20px;
    position: relative;
    top: 2px; }

.cmv-landing .center-heading {
  text-align: center;
  margin-bottom: 15px; }
  .cmv-landing .center-heading h2 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 0 40px;
    margin: 0;
    margin-bottom: 35px;
    font-style: normal; }
    .cmv-landing .center-heading h2 span {
      color: #1e3948;
      font-family: Archer;
      font-size: 40px;
      font-weight: 700;
      display: inline-block;
      background: white;
      padding: 0 17px;
      position: relative;
      z-index: 1; }
      @media (max-width: 991px) {
        .cmv-landing .center-heading h2 span {
          font-size: 28px;
          line-height: 30px; } }
    .cmv-landing .center-heading h2:before {
      display: block;
      width: 100%;
      height: 1px;
      background-color: #ddd;
      border-radius: 0;
      content: '';
      position: absolute;
      top: 57%;
      left: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }

.cmv-landing .header {
  padding: 0;
  margin: 0; }
  .cmv-landing .header .container {
    border-bottom: 1px solid #eaeaea;
    padding-top: 40px;
    padding-bottom: 40px; }
    @media (max-width: 767px) {
      .cmv-landing .header .container {
        padding: 15px 15px 14px;
        border: none; } }
    .cmv-landing .header .container .logo-header {
      max-width: 317px;
      width: 100%;
      display: inline-block; }
      @media (max-width: 1240px) {
        .cmv-landing .header .container .logo-header {
          max-width: 250px; } }
      @media (max-width: 991px) {
        .cmv-landing .header .container .logo-header {
          max-width: 250px;
          display: block;
          margin: 0 auto; } }
      @media (max-width: 767px) {
        .cmv-landing .header .container .logo-header {
          display: none; } }
    .cmv-landing .header .container .logo-header-mobile {
      display: none; }
      @media (max-width: 767px) {
        .cmv-landing .header .container .logo-header-mobile {
          display: inline-block;
          max-width: 150px;
          width: 100%; } }
    .cmv-landing .header .container ul {
      float: right;
      margin-top: 7px; }
      @media (max-width: 1240px) {
        .cmv-landing .header .container ul {
          margin-top: 0; } }
      @media (max-width: 991px) {
        .cmv-landing .header .container ul {
          float: none;
          text-align: center; } }
      @media (max-width: 767px) {
        .cmv-landing .header .container ul {
          float: right;
          margin: 0; } }
      .cmv-landing .header .container ul li {
        height: 40px;
        float: left; }
        @media (max-width: 991px) {
          .cmv-landing .header .container ul li {
            float: none;
            display: inline-block; } }
        @media (max-width: 767px) {
          .cmv-landing .header .container ul li {
            display: none; }
            .cmv-landing .header .container ul li:last-of-type {
              display: inline-block;
              margin: 0; } }
        .cmv-landing .header .container ul li p {
          color: #1e3948;
          font-size: 18px;
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
          display: inline-block; }
          .cmv-landing .header .container ul li p span {
            font-weight: 500; }
          @media (max-width: 1240px) {
            .cmv-landing .header .container ul li p {
              font-size: 15px; } }
        .cmv-landing .header .container ul li span.sep {
          width: 1px;
          height: 20px;
          background-color: #ddd;
          border-radius: 0;
          display: block;
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
          display: inline-block;
          margin: 0 15px; }
        .cmv-landing .header .container ul li .btn-oval-sm, .cmv-landing .header .container ul li .uploadcare-widget-button-open {
          border: 2px solid #bad3e8;
          border-radius: 20px;
          color: #1768b6;
          font-size: 17px;
          font-weight: 500;
          padding: 6px 18px;
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
          display: inline-block; }
          @media (max-width: 991px) {
            .cmv-landing .header .container ul li .btn-oval-sm, .cmv-landing .header .container ul li .uploadcare-widget-button-open {
              top: 70%; } }
          @media (max-width: 767px) {
            .cmv-landing .header .container ul li .btn-oval-sm, .cmv-landing .header .container ul li .uploadcare-widget-button-open {
              top: 59%; } }
          .cmv-landing .header .container ul li .btn-oval-sm i, .cmv-landing .header .container ul li .uploadcare-widget-button-open i {
            margin-left: 8px; }
        .cmv-landing .header .container ul li:last-of-type {
          margin-left: 70px; }
          @media (max-width: 1240px) {
            .cmv-landing .header .container ul li:last-of-type {
              margin-left: 30px; } }
          @media (max-width: 767px) {
            .cmv-landing .header .container ul li:last-of-type {
              margin-left: 0; } }
    .cmv-landing .header .container > p {
      clear: both;
      text-align: center;
      width: 100%;
      color: #1e3948;
      font-size: 17px;
      font-weight: 300;
      line-height: 29px;
      border-top: 1px solid #eaeaea;
      border-bottom: 1px solid #eaeaea;
      padding-top: 15px;
      margin-top: 15px;
      padding-bottom: 15px; }

.cmv-landing .intro .container {
  background: transparent url("../../images/bg-intro-2.svg") no-repeat scroll 91% 45px/76% auto;
  padding-top: 70px; }
  @media (max-width: 767px) {
    .cmv-landing .intro .container {
      padding-top: 0;
      background: transparent url("../../images/bg-intro-2.svg") no-repeat scroll 91% 45px/100% auto; } }
  .cmv-landing .intro .container h1 {
    color: #1e3948;
    font-size: 60px;
    font-weight: 700;
    font-style: italic;
    line-height: 65px; }
    @media (max-width: 991px) {
      .cmv-landing .intro .container h1 {
        font-size: 30px;
        font-weight: 700;
        font-style: italic;
        line-height: 40px; } }
  .cmv-landing .intro .container p {
    color: #1e3948;
    font-size: 18px;
    line-height: 34px;
    font-weight: 300; }
    @media (max-width: 991px) {
      .cmv-landing .intro .container p {
        font-size: 17px;
        line-height: 29px; } }
  .cmv-landing .intro .container .row .col .intro-icons {
    max-width: 369px;
    width: 100%; }
    @media (max-width: 767px) {
      .cmv-landing .intro .container .row .col .intro-icons {
        display: none !important; } }
  .cmv-landing .intro .container .row .col .intro-icons-xs {
    max-width: 369px;
    width: 100%; }
    @media (min-width: 769px) {
      .cmv-landing .intro .container .row .col .intro-icons-xs {
        display: none; } }
  .cmv-landing .intro .container .row .col:nth-child(1) {
    padding-left: 55px; }
    @media (max-width: 991px) {
      .cmv-landing .intro .container .row .col:nth-child(1) {
        padding: 0 30px;
        text-align: center; } }
    .cmv-landing .intro .container .row .col:nth-child(1) p {
      max-width: 505px;
      width: 100%; }
      @media (max-width: 991px) {
        .cmv-landing .intro .container .row .col:nth-child(1) p {
          max-width: none; } }
    .cmv-landing .intro .container .row .col:nth-child(1) a {
      margin-top: 20px; }
  .cmv-landing .intro .container .row .col:nth-child(2) {
    padding-left: 55px; }
    @media (max-width: 991px) {
      .cmv-landing .intro .container .row .col:nth-child(2) {
        padding: 0 30px;
        text-align: center; }
        .cmv-landing .intro .container .row .col:nth-child(2) img {
          margin-top: 25px;
          display: inline-block; } }

.cmv-landing .clients {
  padding-top: 45px;
  padding-bottom: 25px; }
  @media (max-width: 991px) {
    .cmv-landing .clients {
      padding-top: 25px; } }
  .cmv-landing .clients h2 {
    margin-bottom: 15px; }
  .cmv-landing .clients .grid {
    max-width: 923px;
    width: 100%;
    margin: 0 auto; }
    @media (max-width: 767px) {
      .cmv-landing .clients .grid {
        padding: 0 15px; } }
    .cmv-landing .clients .grid .item {
      width: 22.75%;
      text-align: center;
      height: 103px; }
      .cmv-landing .clients .grid .item:nth-child(n) {
        margin-right: 3%;
        margin-bottom: 3%; }
      .cmv-landing .clients .grid .item:nth-child(4n) {
        margin-right: 0;
        margin-bottom: 0; }
      @media (max-width: 767px) {
        .cmv-landing .clients .grid .item {
          width: 48.5%; }
          .cmv-landing .clients .grid .item:nth-child(n) {
            margin-right: 3%;
            margin-bottom: 3%; }
          .cmv-landing .clients .grid .item:nth-child(2n) {
            margin-right: 0;
            margin-bottom: 0; } }
      .cmv-landing .clients .grid .item img {
        display: inline-block;
        width: 100%;
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        display: inline-block; }
        @media (max-width: 767px) {
          .cmv-landing .clients .grid .item img {
            max-width: 125px !important; } }
    .cmv-landing .clients .grid .item:nth-child(1) img {
      max-width: 163px; }
    .cmv-landing .clients .grid .item:nth-child(2) img {
      max-width: 198px; }
    .cmv-landing .clients .grid .item:nth-child(3) img {
      max-width: 134px; }
      @media (max-width: 767px) {
        .cmv-landing .clients .grid .item:nth-child(3) img {
          max-width: 105px !important; } }
    .cmv-landing .clients .grid .item:nth-child(4) img {
      max-width: 205px; }

.cmv-landing .features {
  background: #1768b6 url("../../images/pattern-1.svg") repeat scroll 0 0/445px auto;
  padding: 61px 0 61px; }
  @media (max-width: 767px) {
    .cmv-landing .features {
      padding: 35px 0 50px; }
      .cmv-landing .features .slick-list {
        padding: 0 !important; }
      .cmv-landing .features .slick-dots {
        text-align: center;
        margin-top: 5px; }
        .cmv-landing .features .slick-dots li button {
          background: transparent;
          border-radius: 50%;
          color: transparent;
          outline: medium none;
          padding: 0;
          text-shadow: none;
          width: 20px;
          height: 20px;
          border: 2px solid #bad3e8; }
          .cmv-landing .features .slick-dots li button:hover {
            background: white;
            box-shadow: none;
            border: 0;
            width: 20px;
            height: 20px; }
        .cmv-landing .features .slick-dots li.slick-active button {
          background: white;
          box-shadow: none;
          border: 0;
          width: 20px;
          height: 20px; } }
  .cmv-landing .features .inner_col {
    text-align: center; }
    .cmv-landing .features .inner_col img {
      max-width: 80px;
      display: inline-block; }
    .cmv-landing .features .inner_col h3 {
      color: white;
      font-size: 24px;
      font-weight: 500;
      line-height: 30px;
      margin: 40px auto 20px; }
      @media (max-width: 767px) {
        .cmv-landing .features .inner_col h3 {
          margin: 25px auto 15px; } }
    .cmv-landing .features .inner_col p {
      color: #c4dcf3;
      font-size: 18px;
      font-weight: 300;
      line-height: 30px; }

.cmv-landing .testimonials {
  padding: 70px 0;
  border-bottom: 0;
  margin-bottom: 0; }
  @media (max-width: 991px) {
    .cmv-landing .testimonials {
      padding: 30px 15px 85px; } }
  .cmv-landing .testimonials .testimonials-slider {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto; }
    .cmv-landing .testimonials .testimonials-slider .item {
      padding: 0 45px; }
      @media (max-width: 991px) {
        .cmv-landing .testimonials .testimonials-slider .item {
          padding: 0 15px 0 45px; } }
      @media (max-width: 767px) {
        .cmv-landing .testimonials .testimonials-slider .item {
          padding: 0 0 0 45px; } }
      .cmv-landing .testimonials .testimonials-slider .item img {
        max-width: 85px;
        width: 100%;
        display: block;
        margin: 0 auto;
        margin-bottom: 25px; }
      .cmv-landing .testimonials .testimonials-slider .item p {
        color: #1e3948;
        font-size: 18px;
        font-weight: 300;
        line-height: 30px; }
        .cmv-landing .testimonials .testimonials-slider .item p:first-of-type {
          position: relative; }
          .cmv-landing .testimonials .testimonials-slider .item p:first-of-type:before {
            background: transparent url("../../images/quote.svg") repeat scroll 0 0;
            width: 30px;
            height: 25px;
            background-size: 30px 25px;
            display: block;
            content: '';
            position: absolute;
            left: -45px;
            top: -7px; }
      .cmv-landing .testimonials .testimonials-slider .item p.name {
        font-weight: 500; }
      .cmv-landing .testimonials .testimonials-slider .item h5 {
        color: #1768b6;
        font-size: 18px;
        font-weight: 500;
        line-height: 30px; }
    .cmv-landing .testimonials .testimonials-slider ul.slick-dots {
      text-align: center;
      margin-top: 45px; }
      @media (max-width: 991px) {
        .cmv-landing .testimonials .testimonials-slider ul.slick-dots li {
          margin: 0 5px; } }
      .cmv-landing .testimonials .testimonials-slider ul.slick-dots li button {
        width: 20px;
        height: 20px;
        border: medium none;
        border-radius: 50%;
        color: transparent;
        font: 0px/0 a;
        outline: medium none;
        padding: 0;
        text-shadow: none;
        border: 2px solid #bad3e8;
        background: white; }
      .cmv-landing .testimonials .testimonials-slider ul.slick-dots li.slick-active button {
        width: 20px;
        height: 20px;
        background-color: #1768b6;
        border: 2px solid #1768b6; }

.cmv-landing .about {
  background: #f8f9f9 url("../../images/pattern-2.svg") repeat scroll 0 0/445px auto;
  padding: 100px 0 95px; }
  @media (max-width: 991px) {
    .cmv-landing .about {
      padding: 40px 0 45px; } }
  .cmv-landing .about .container {
    position: relative; }
    @media (max-width: 991px) {
      .cmv-landing .about .container {
        padding: 0 40px; } }
    .cmv-landing .about .container .row .col:nth-child(1) h3 {
      font-size: 40px;
      font-weight: 700;
      color: #1e3948;
      margin-bottom: 20px; }
      @media (max-width: 991px) {
        .cmv-landing .about .container .row .col:nth-child(1) h3 {
          font-size: 28px;
          font-weight: 700;
          line-height: 30px;
          margin-top: 25px; } }
      .cmv-landing .about .container .row .col:nth-child(1) h3 span {
        color: #8bc200; }
    .cmv-landing .about .container .row .col:nth-child(1) p {
      color: #1e3948;
      font-size: 18px;
      font-weight: 300;
      line-height: 33px;
      max-width: 440px;
      width: 100%; }
      @media (max-width: 991px) {
        .cmv-landing .about .container .row .col:nth-child(1) p {
          max-width: none;
          font-size: 17px; } }
    .cmv-landing .about .container .row .col:nth-child(1) .btn-oval-md {
      margin-top: 20px; }
    .cmv-landing .about .container .row .col:nth-child(2) h4 {
      font-size: 30px;
      margin-bottom: 27px;
      max-width: 455px;
      padding-top: 27px;
      text-align: center; }
      @media (max-width: 991px) {
        .cmv-landing .about .container .row .col:nth-child(2) h4 {
          margin-top: 25px;
          margin-bottom: 20px;
          max-width: none; } }
    .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper {
      position: relative; }
      @media (max-width: 991px) {
        .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper {
          height: 185px;
          width: 295px;
          margin: 0 auto; } }
      .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        position: absolute;
        overflow: hidden; }
        @media (max-width: 991px) {
          .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile {
            width: 160px;
            height: 160px; } }
        .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile p.name {
          width: 160px;
          height: 35px;
          line-height: 35px;
          background-color: #1768b6;
          color: white;
          font-size: 16px;
          font-weight: 500;
          position: absolute;
          bottom: 30px; }
          @media (max-width: 991px) {
            .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile p.name {
              width: 120px;
              bottom: 14px;
              font-size: 13px;
              height: 30px;
              line-height: 30px; } }
      .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile01 {
        z-index: 1; }
        .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile01 p.name {
          text-align: right;
          padding-right: 15px;
          left: 4px;
          border-right: 5px solid #0d5397;
          border-radius: 0 2px 2px 0; }
          @media (max-width: 991px) {
            .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile01 p.name {
              left: -1px;
              padding-right: 5px; } }
      .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile02 {
        z-index: 2;
        left: 210px;
        top: 30px; }
        @media (max-width: 991px) {
          .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile02 {
            left: 135px;
            top: 25px; } }
        .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile02 p.name {
          text-align: left;
          padding-left: 15px;
          right: 4px;
          border-radius: 2px 0 0 2px;
          border-left: 5px solid #0d5397; }
          @media (max-width: 991px) {
            .cmv-landing .about .container .row .col:nth-child(2) .profile-wrapper div.profile02 p.name {
              right: -1px;
              padding-left: 7px; } }
    @media (max-width: 991px) {
      .cmv-landing .about .container .row .col:nth-child(2) {
        padding: 0; } }
    .cmv-landing .about .container:before {
      background: transparent url("../../images/label.svg") repeat scroll 0 0;
      position: absolute;
      width: 80px;
      height: 80px;
      left: 7px;
      top: -141px;
      z-index: 1;
      display: block;
      content: ''; }
      @media (max-width: 991px) {
        .cmv-landing .about .container:before {
          width: 80px;
          height: 80px;
          left: 30px;
          top: -85px; } }

.cmv-landing .footer {
  background-color: #222428;
  padding: 31px 0 25px;
  margin: 0; }
  @media (max-width: 767px) {
    .cmv-landing .footer {
      padding: 21px 0 15px; } }
  .cmv-landing .footer .logo-footer {
    display: inline-block;
    width: 250px;
    height: 37px; }
    @media (max-width: 767px) {
      .cmv-landing .footer .logo-footer {
        display: none; } }
  .cmv-landing .footer .logo-footer-mobile {
    display: none; }
    @media (max-width: 767px) {
      .cmv-landing .footer .logo-footer-mobile {
        display: inline-block;
        max-width: 123px;
        width: 100%; } }
  .cmv-landing .footer .btn-back-to-top {
    font-size: 14px;
    font-weight: 300;
    float: right;
    height: 30px;
    line-height: 30px;
    margin-top: 5px; }
    .cmv-landing .footer .btn-back-to-top span.circle-xs {
      margin-right: 11px;
      background-color: #909193; }
      .cmv-landing .footer .btn-back-to-top span.circle-xs i {
        color: #222428; }
    .cmv-landing .footer .btn-back-to-top span.text {
      display: inline-block;
      position: relative;
      top: -9px;
      color: #909193;
      font-size: 14px;
      font-weight: 300; }

/*# sourceMappingURL=theme.css.map */
