/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
@charset "UTF-8";

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

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

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

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

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

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

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

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.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;
}

.mCustomScrollbar{-ms-touch-action:pinch-zoom;touch-action:pinch-zoom}.mCustomScrollbar.mCS_no_scrollbar,.mCustomScrollbar.mCS_touch_action{-ms-touch-action:auto;touch-action:auto}.mCustomScrollBox{position:relative;overflow:hidden;height:100%;max-width:100%;outline:0;direction:ltr}.mCSB_container{overflow:hidden;width:auto;height:auto}.mCSB_inside>.mCSB_container{margin-right:30px}.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-right:0}.mCS-dir-rtl>.mCSB_inside>.mCSB_container{margin-right:0;margin-left:30px}.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-left:0}.mCSB_scrollTools{position:absolute;width:16px;height:auto;left:auto;top:0;right:0;bottom:0;opacity:.75;filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_outside+.mCSB_scrollTools{right:-26px}.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools{right:auto;left:0}.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools{left:-26px}.mCSB_scrollTools .mCSB_draggerContainer{position:absolute;top:0;left:0;bottom:0;right:0;height:auto}.mCSB_scrollTools a+.mCSB_draggerContainer{margin:20px 0}.mCSB_scrollTools .mCSB_draggerRail{width:2px;height:100%;margin:0 auto;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px}.mCSB_scrollTools .mCSB_dragger{cursor:pointer;width:100%;height:30px;z-index:1}.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{position:relative;width:4px;height:100%;margin:0 auto;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px;text-align:center}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{width:12px}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:8px}.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonUp{display:block;position:absolute;height:20px;width:100%;overflow:hidden;margin:0 auto;cursor:pointer}.mCSB_scrollTools .mCSB_buttonDown{bottom:0}.mCSB_horizontal.mCSB_inside>.mCSB_container{margin-right:0;margin-bottom:30px}.mCSB_horizontal.mCSB_outside>.mCSB_container{min-height:100%}.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{margin-bottom:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal{width:auto;height:16px;top:auto;right:0;bottom:0;left:0}.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal{bottom:-26px}.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer{margin:0 20px}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:2px;margin:7px 0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{width:30px;height:100%;left:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:4px;margin:6px auto}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{height:12px;margin:2px auto}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:8px;margin:4px 0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{display:block;position:absolute;width:20px;height:100%;overflow:hidden;margin:0 auto;cursor:pointer}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{left:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{right:0}.mCSB_container_wrapper{position:absolute;height:auto;width:auto;overflow:hidden;top:0;left:0;right:0;bottom:0;margin-right:30px;margin-bottom:30px}.mCSB_container_wrapper>.mCSB_container{padding-right:30px;padding-bottom:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical{bottom:20px}.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal{right:20px}.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical{bottom:0}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal{right:0}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal{left:20px}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal{left:0}.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper{margin-right:0;margin-left:30px}.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container{padding-right:0}.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container{padding-bottom:0}.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{margin-right:0;margin-left:0}.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{margin-bottom:0}.mCSB_scrollTools,.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{-webkit-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;-moz-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;-o-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;transition:opacity .2s ease-in-out,background-color .2s ease-in-out}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar{-webkit-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;-moz-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;-o-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out}.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools{opacity:0;filter:"alpha(opacity=0)";-ms-filter:"alpha(opacity=0)"}.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools,.mCustomScrollBox:hover>.mCSB_scrollTools,.mCustomScrollBox:hover~.mCSB_scrollTools,.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag{opacity:1;filter:"alpha(opacity=100)";-ms-filter:"alpha(opacity=100)"}.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.4);filter:"alpha(opacity=40)";-ms-filter:"alpha(opacity=40)"}.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.75);filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85);filter:"alpha(opacity=85)";-ms-filter:"alpha(opacity=85)"}.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9);filter:"alpha(opacity=90)";-ms-filter:"alpha(opacity=90)"}.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp{background-image:url(mCSB_buttons.png);background-repeat:no-repeat;opacity:.4;filter:"alpha(opacity=40)";-ms-filter:"alpha(opacity=40)"}.mCSB_scrollTools .mCSB_buttonUp{background-position:0 0}.mCSB_scrollTools .mCSB_buttonDown{background-position:0 -20px}.mCSB_scrollTools .mCSB_buttonLeft{background-position:0 -40px}.mCSB_scrollTools .mCSB_buttonRight{background-position:0 -56px}.mCSB_scrollTools .mCSB_buttonDown:hover,.mCSB_scrollTools .mCSB_buttonLeft:hover,.mCSB_scrollTools .mCSB_buttonRight:hover,.mCSB_scrollTools .mCSB_buttonUp:hover{opacity:.75;filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_scrollTools .mCSB_buttonDown:active,.mCSB_scrollTools .mCSB_buttonLeft:active,.mCSB_scrollTools .mCSB_buttonRight:active,.mCSB_scrollTools .mCSB_buttonUp:active{opacity:.9;filter:"alpha(opacity=90)";-ms-filter:"alpha(opacity=90)"}.mCS-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:rgba(0,0,0,.85)}.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:rgba(0,0,0,.9)}.mCS-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px 0}.mCS-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -20px}.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -40px}.mCS-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -56px}.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail{width:4px;background-color:#fff;background-color:rgba(255,255,255,.1);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:4px;background-color:#fff;background-color:rgba(255,255,255,.75);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:4px;margin:6px auto}.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px 0}.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -20px}.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -40px}.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -56px}.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px 0}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -20px}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -40px}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -56px}.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail{width:4px;background-color:#fff;background-color:rgba(255,255,255,.1);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px;background-color:#fff;background-color:rgba(255,255,255,.75);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:4px;margin:6px 0}.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:6px;margin:5px auto}.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-16px 0}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-16px -20px}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-20px -40px}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-20px -56px}.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-96px 0}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-96px -20px}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-100px -40px}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-100px -56px}.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.1)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:2px}.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%}.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:2px;margin:7px auto}.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px 0}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -20px}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -40px}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -56px}.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.15)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,.mCS-rounded.mCSB_scrollTools .mCSB_dragger{height:14px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:14px;margin:0 1px}.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger{width:14px}.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{height:14px;margin:1px 0}.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{width:16px;height:16px;margin:-1px 0}.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:4px}.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{height:16px;width:16px;margin:0 -1px}.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:4px;margin:6px 0}.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{background-position:0 -72px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{background-position:0 -92px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{background-position:0 -112px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{background-position:0 -128px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px -72px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -92px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -112px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -128px}.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail{width:4px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail{background-color:transparent;background-position:center}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==);background-repeat:repeat-y;opacity:.3;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail{height:4px;margin:6px 0;background-repeat:repeat-x}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{background-position:-16px -72px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{background-position:-16px -92px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{background-position:-20px -112px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{background-position:-20px -128px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=)}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-96px -72px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-96px -92px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-100px -112px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-100px -128px}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-repeat:repeat-y;background-image:-moz-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-o-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-ms-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:linear-gradient(to right,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{background-repeat:repeat-x;background-image:-moz-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-o-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-ms-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:linear-gradient(to bottom,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%)}.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger{height:70px}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger{width:70px}.mCS-3d-dark.mCSB_scrollTools,.mCS-3d.mCSB_scrollTools{opacity:1;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail{-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px}.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail{width:8px;background-color:#000;background-color:rgba(0,0,0,.2);box-shadow:inset 1px 0 1px rgba(0,0,0,.5),inset -1px 0 1px rgba(255,255,255,.2)}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#555}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:8px}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:8px;margin:4px 0;box-shadow:inset 0 1px 1px rgba(0,0,0,.5),inset 0 -1px 1px rgba(255,255,255,.2)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:8px;margin:4px auto}.mCS-3d.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-3d.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-3d.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);box-shadow:inset 1px 0 1px rgba(0,0,0,.1)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{box-shadow:inset 0 1px 1px rgba(0,0,0,.1)}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools{opacity:1;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer,.mCS-3d-thick.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical{right:1px}.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCS-3d-thick.mCSB_scrollTools_vertical{box-shadow:inset 1px 0 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal,.mCS-3d-thick.mCSB_scrollTools_horizontal{bottom:1px;box-shadow:inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;box-shadow:inset 1px 0 0 rgba(255,255,255,.4);width:12px;margin:2px;position:absolute;height:auto;top:0;bottom:0;left:0;right:0}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 0 1px 0 rgba(255,255,255,.4);height:12px;width:auto}.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#555}.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{background-color:#000;background-color:rgba(0,0,0,.05);box-shadow:inset 1px 1px 16px rgba(0,0,0,.1)}.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-3d-thick-dark.mCSB_scrollTools{box-shadow:inset 0 0 14px rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{box-shadow:inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 1px 0 0 rgba(255,255,255,.4),inset -1px 0 0 rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 0 1px 0 rgba(255,255,255,.4),inset 0 -1px 0 rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#777}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{background-color:#fff;background-color:rgba(0,0,0,.05);box-shadow:inset 1px 1px 16px rgba(0,0,0,.1)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical{right:0;margin:12px 0}.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal{bottom:0;margin:0 12px}.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical{left:0;right:auto}.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger{height:50px}.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger{width:50px}.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.2);filter:"alpha(opacity=20)";-ms-filter:"alpha(opacity=20)"}.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.5);filter:"alpha(opacity=50)";-ms-filter:"alpha(opacity=50)"}.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.2);filter:"alpha(opacity=20)";-ms-filter:"alpha(opacity=20)"}.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.5);filter:"alpha(opacity=50)";-ms-filter:"alpha(opacity=50)"}.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail{width:6px;background-color:#000;background-color:rgba(0,0,0,.2)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px}.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:6px;margin:5px 0}.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:12px}.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:12px;margin:2px 0}.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1)}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools .mCSB_draggerRail{width:12px;background-color:#000;background-color:rgba(0,0,0,.2)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px;margin:3px 5px;position:absolute;height:auto;top:0;bottom:0;left:0;right:0}.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{height:6px;margin:5px 3px;position:absolute;width:auto;top:0;bottom:0;left:0;right:0}.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:12px;margin:2px 0}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent;border-width:1px;border-style:solid;border-color:#fff;border-color:rgba(255,255,255,.2);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{border-color:#000;border-color:rgba(0,0,0,.2)}.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.6)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.6)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.75)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}
@charset "UTF-8";
/*!
 * SimpleSlider v1.9.0
 * Simple responsive slider created in pure javascript.
 * https://github.com/michu2k/SimpleSlider
 * 
 * Copyright 2017-2019 Michał Strumpf
 * Published under MIT License
 */
.simple-slider{overflow:hidden;position:relative}.simple-slider .slider-wrapper{height:100%;position:relative;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition-timing-function:cubic-bezier(.7,0,.3,1);transition-timing-function:cubic-bezier(.7,0,.3,1)}.simple-slider .slider-slide{background-size:cover;background-position:center top;height:100%;float:left}.simple-slider .slider-pagination{text-align:center;width:100%;bottom:0;position:absolute}.simple-slider .slider-pagination .pagination-bullet{display:inline-block;cursor:pointer;width:16px;height:5px;margin:4px;background-color:#fff;-webkit-transition:all .3s ease;transition:all .3s ease}.simple-slider .slider-pagination .pagination-bullet.is-active{background-color:#999}.simple-slider .slider-btn{width:30px;height:50px;top:50%;cursor:pointer;background-repeat:no-repeat;position:absolute;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}.simple-slider .slider-btn.slider-btn-prev{left:20px;background-image:url(../img/prev.svg);background-position:left}.simple-slider .slider-btn.slider-btn-next{right:20px;background-image:url(../img/next.svg);background-position:right}
/*
 * CSSMap plugin - Continents [ http://cssmapsplugin.com/get/continents ]
 * version: 5.5
 *
 * author: Łukasz Popardowski { Winston_Wolf }
 * license: http://cssmapsplugin.com/license
 * FAQ: http://cssmapsplugin.com/faq
 *
 * email: http://cssmapsplugin.com/contact
 * twitter: @CSSMapplugin

 * ---------------------------------------------------------------------------------------------------- *
 *                               DO NOT EDIT FROM THIS POINT!                                           *
 * ---------------------------------------------------------------------------------------------------- */
@import url("cssmap-themes.css");
.c1 .s1{height:.1em;left:9.5em;top:5.7em;width:.1em}.c1 .s2{height:.4em;left:9.3em;top:5.8em;width:.3em}.c1 .s3{height:.3em;left:9.2em;top:6em;width:.3em}.c1 .s4{height:.2em;left:8.2em;top:6.5em;width:.6em}.c1 .s5{height:.1em;left:8.1em;top:6.4em;width:.8em}.c1 .s6{height:.4em;left:8em;top:6em;width:1em}.c1 .s7{height:.5em;left:8em;top:5.5em;width:1.2em}.c1 .s8{height:.2em;left:9.6em;top:4.8em;width:.1em}.c1 .s9{height:.4em;left:9.5em;top:4.8em;width:.1em}.c1 .s10{height:.5em;left:9.3em;top:4.8em;width:.2em}.c1 .s11{height:.7em;left:9.2em;top:4.7em;width:.1em}.c1 .s12{height:.9em;left:7.9em;top:4.6em;width:1.3em}.c1 .s13{height:1em;left:7.8em;top:4.4em;width:1.3em}.c1 .s14{height:.1em;left:7.5em;top:3.8em;width:.5em}.c1 .s15{height:.1em;left:7.1em;top:3.9em;width:.9em}.c1 .s16{height:.6em;left:6.8em;top:4.3em;width:.1em}.c1 .s17{height:1em;left:7em;top:4.1em;width:.1em}.c1 .s18{height:.8em;left:6.9em;top:4.2em;width:2.1em}.c1 .s19{height:1.2em;left:7.1em;top:4em;width:1.8em} .c2 .s1{height:.1em;left:11.7em;top:.6em;width:.1em}.c2 .s2{height:.1em;left:11.5em;top:.7em;width:.5em}.c2 .s3{height:.2em;left:11.4em;top:.8em;width:.6em}.c2 .s4{height:.1em;left:9.7em;top:.6em;width:.3em}.c2 .s5{height:.1em;left:9.8em;top:.7em;width:.4em}.c2 .s6{height:.1em;left:9.8em;top:.8em;width:.7em}.c2 .s7{height:.1em;left:9.8em;top:.9em;width:.8em}.c2 .s8{height:.3em;left:9.6em;top:1.6em;width:.1em}.c2 .s9{height:.4em;left:9.7em;top:1.6em;width:.1em}.c2 .s10{height:.2em;left:13.9em;top:1.2em;width:.1em}.c2 .s11{height:1.5em;left:13.7em;top:1em;width:.2em}.c2 .s12{height:1.6em;left:13.6em;top:1em;width:.1em}.c2 .s13{height:1.9em;left:13.2em;top:1em;width:.4em}.c2 .s14{height:1.1em;left:9.7em;top:2.1em;width:3.8em}.c2 .s15{height:.9em;left:9.6em;top:2.4em;width:3.8em}.c2 .s16{height:.1em;left:9.3em;top:3.2em;width:.1em}.c2 .s17{height:.5em;left:9.4em;top:3.1em;width:.1em}.c2 .s18{height:.6em;left:9.5em;top:3em;width:3.8em}.c2 .s19{height:2.9em;left:9.8em;top:1em;width:3.4em}.c2 .s20{height:.1em;left:12.4em;top:5.7em;width:.4em}.c2 .s21{height:.2em;left:11.8em;top:5.5em;width:1.6em}.c2 .s22{height:.2em;left:11.6em;top:5.3em;width:1.8em}.c2 .s23{height:.2em;left:11.5em;top:5.1em;width:1.5em}.c2 .s24{height:.1em;left:10.8em;top:5em;width:2.1em}.c2 .s25{height:.1em;left:10.7em;top:4.9em;width:2.2em}.c2 .s26{height:.1em;left:10.6em;top:4.8em;width:2.2em}.c2 .s27{height:.1em;left:9.7em;top:4.8em;width:.1em}.c2 .s28{height:.1em;left:9.3em;top:4.7em;width:3.5em}.c2 .s29{height:.3em;left:9.2em;top:4.4em;width:3.5em}.c2 .s30{height:1.1em;left:9.1em;top:3.5em;width:.1em}.c2 .s31{height:.2em;left:9em;top:4.2em;width:3.8em}.c2 .s32{height:.1em;left:8.6em;top:3.8em;width:.3em}.c2 .s33{height:.2em;left:8.5em;top:3.6em;width:4.8em}.c2 .s34{height:.6em;left:8.9em;top:3.6em;width:4em} .c3 .s1{height:.1em;left:14.3em;top:4.7em;width:.2em}.c3 .s2{height:.1em;left:13.5em;top:4.7em;width:.2em}.c3 .s3{height:.2em;left:13.2em;top:4.9em;width:.2em}.c3 .s4{height:.3em;left:13.4em;top:4.8em;width:.4em}.c3 .s5{height:.5em;left:13.8em;top:4.8em;width:.8em}.c3 .s6{height:.4em;left:13.4em;top:5.3em;width:1.8em}.c3 .s7{height:.1em;left:12.8em;top:5.7em;width:2.4em}.c3 .s8{height:.1em;left:12.7em;top:5.8em;width:2.5em}.c3 .s9{height:.2em;left:15.2em;top:6em;width:.3em}.c3 .s10{height:.3em;left:12.5em;top:5.9em;width:2.7em}.c3 .s11{height:.3em;left:12.4em;top:6em;width:2.6em}.c3 .s12{height:.1em;left:13.2em;top:7.3em;width:1.1em}.c3 .s13{height:.1em;left:13.2em;top:7.2em;width:1.2em}.c3 .s14{height:.1em;left:13.2em;top:7.1em;width:1.3em}.c3 .s15{height:.1em;left:13.1em;top:7em;width:1.5em}.c3 .s16{height:.1em;left:13em;top:6.9em;width:1.6em}.c3 .s17{height:.2em;left:12.2em;top:6.7em;width:2.4em}.c3 .s18{height:.7em;left:12.1em;top:6.1em;width:2.3em} .c4 .s1{height:.1em;left:8.9em;top:.7em;width:.2em}.c4 .s2{height:.1em;left:8.8em;top:.8em;width:.4em}.c4 .s3{height:.2em;left:8.6em;top:.9em;width:.5em}.c4 .s4{height:.2em;left:8.2em;top:1.1em;width:.1em}.c4 .s5{height:.5em;left:7.8em;top:1em;width:.4em}.c4 .s6{height:.1em;left:9.2em;top:1.3em;width:.3em}.c4 .s7{height:.5em;left:9.1em;top:1.4em;width:.3em}.c4 .s8{height:.1em;left:9.7em;top:2em;width:.1em}.c4 .s9{height:.5em;left:8.1em;top:1.9em;width:1.6em}.c4 .s10{height:1em;left:7.9em;top:2em;width:1.7em}.c4 .s11{height:.8em;left:7.8em;top:2.3em;width:1.7em}.c4 .s12{height:.1em;left:6.7em;top:2.2em;width:.3em}.c4 .s13{height:.2em;left:6.6em;top:2.3em;width:.5em}.c4 .s14{height:.1em;left:7.2em;top:2.5em;width:.1em}.c4 .s15{height:1.1em;left:7.7em;top:2.4em;width:1.6em}.c4 .s16{height:.3em;left:9.2em;top:3.3em;width:.2em}.c4 .s17{height:1.1em;left:7.6em;top:2.5em;width:1.5em}.c4 .s18{height:.5em;left:7.1em;top:2.7em;width:2.3em}.c4 .s19{height:1.2em;left:7.3em;top:2.6em;width:1.2em}.c4 .s20{height:.4em;left:7.1em;top:3.5em;width:.4em}.c4 .s21{height:.1em;left:8em;top:3.8em;width:.6em}.c4 .s22{height:.1em;left:8.4em;top:3.9em;width:.5em} .c5 .s1{height:.2em;left:7.1em;top:.9em;width:.1em}.c5 .s2{height:.5em;left:7em;top:.8em;width:.1em}.c5 .s3{height:1em;left:6.9em;top:.7em;width:.1em}.c5 .s4{height:1.5em;left:6.7em;top:.6em;width:.2em}.c5 .s5{height:1.6em;left:6.4em;top:.6em;width:.3em}.c5 .s6{height:1.7em;left:6.3em;top:.6em;width:.1em}.c5 .s7{height:1.7em;left:6.1em;top:.7em;width:.2em}.c5 .s8{height:.1em;left:5.2em;top:.5em;width:.8em}.c5 .s9{height:.1em;left:5em;top:.6em;width:1.1em}.c5 .s10{height:2em;left:4.3em;top:.7em;width:1.8em}.c5 .s11{height:2.6em;left:4em;top:.8em;width:1.5em}.c5 .s12{height:2.6em;left:3.9em;top:.9em;width:1.3em}.c5 .s13{height:2.6em;left:3.7em;top:1.1em;width:1.1em}.c5 .s14{height:2.6em;left:3.5em;top:1.2em;width:1.1em}.c5 .s15{height:.2em;left:.5em;top:2.2em;width:.2em}.c5 .s16{height:.2em;left:.7em;top:2.3em;width:.9em}.c5 .s17{height:.1em;left:1.3em;top:1.6em;width:.2em}.c5 .s18{height:.7em;left:1.2em;top:1.7em;width:.5em}.c5 .s19{height:1em;left:1.7em;top:1.4em;width:.2em}.c5 .s20{height:1.1em;left:1.9em;top:1.2em;width:.2em}.c5 .s21{height:1.2em;left:2.1em;top:1.1em;width:.3em}.c5 .s22{height:1.8em;left:2.4em;top:1.1em;width:.1em}.c5 .s23{height:2.6em;left:2.5em;top:1.1em;width:.1em}.c5 .s24{height:2.7em;left:2.6em;top:1.2em;width:.1em}.c5 .s25{height:2.8em;left:2.7em;top:1.3em;width:.1em}.c5 .s26{height:3em;left:2.8em;top:1.3em;width:.1em}.c5 .s27{height:3em;left:2.9em;top:1.4em;width:.2em}.c5 .s28{height:3.2em;left:3.1em;top:1.4em;width:1.4em}.c5 .s29{height:.4em;left:3.2em;top:4.3em;width:1.4em}.c5 .s30{height:.2em;left:3.9em;top:4.8em;width:.3em}.c5 .s31{height:.3em;left:3.4em;top:4.5em;width:1.6em}.c5 .s32{height:.3em;left:4.9em;top:4.6em;width:.2em}.c5 .s33{height:.2em;left:4em;top:4.9em;width:.3em}.c5 .s34{height:.2em;left:1.1em;top:4.3em;width:.2em} .c6 .s1{height:.4em;left:4.1em;top:5.2em;width:.1em}.c6 .s2{height:.7em;left:4.2em;top:5.1em;width:.1em}.c6 .s3{height:1em;left:4.3em;top:4.9em;width:.1em}.c6 .s4{height:1.2em;left:4.4em;top:4.8em;width:.2em}.c6 .s5{height:.4em;left:6em;top:5.4em;width:.1em}.c6 .s6{height:.8em;left:5.8em;top:5.4em;width:.2em}.c6 .s7{height:1em;left:5.6em;top:5.3em;width:.2em}.c6 .s8{height:1.2em;left:5.5em;top:5.3em;width:.1em}.c6 .s9{height:1.6em;left:5.4em;top:5.1em;width:.1em}.c6 .s10{height:1.8em;left:5.3em;top:5em;width:.1em}.c6 .s11{height:1.9em;left:5.2em;top:5em;width:.1em}.c6 .s12{height:.5em;left:4.5em;top:6.7em;width:.1em}.c6 .s13{height:2.8em;left:4.6em;top:4.8em;width:.2em}.c6 .s14{height:2.9em;left:4.7em;top:4.9em;width:.5em}

/* size: 210 */
.cssmap-210{width:210px} .cssmap-210 .continents,.cssmap-210 .continents .bg,.cssmap-210 .continents-cities{background:transparent url('/build/css/default/continents-210.png') no-repeat 0 0}  .cssmap-210 .continents.cssmap-blue,.cssmap-210 .continents.cssmap-blue .bg,.cssmap-210 .continents-cities.cssmap-blue{background-image:url('blue/continents-210.png')}  .cssmap-210 .continents.cssmap-dark,.cssmap-210 .continents.cssmap-dark .bg,.cssmap-210 .continents-cities.cssmap-dark{background-image:url('dark/continents-210.png')}  .cssmap-210 .continents.cssmap-vintage,.cssmap-210 .continents.cssmap-vintage .bg,.cssmap-210 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-210.png')}  .cssmap-210 .continents.cssmap-custom,.cssmap-210 .continents.cssmap-custom .bg,.cssmap-210 .continents-cities.cssmap-custom{background-image:url('custom/continents-210.png')}  .cssmap-210 .continents,.cssmap-210 .continents-cities{height:105px;width:210px}  .cssmap-210 .continents-cities{background-position:-220px 0}  .cssmap-210 .continents .m{margin:9997px 0 0 0}  .cssmap-210 .continents .m span{font-size:13px !important;padding:0 1px 1px 0}  .cssmap-210 .continents .bg{padding:5px}
.cssmap-210 .c1.focus .bg,.cssmap-210 .c1.active-region .bg{height:38px;left:83px;top:43px;width:38px}.cssmap-210 .c1.focus .bg{background-position:-106px -225px}.cssmap-210 .c1.active-region .bg{background-position:-326px -225px} .cssmap-210 .c2.focus .bg,.cssmap-210 .c2.active-region .bg{height:67px;left:106px;top:1px;width:71px}.cssmap-210 .c2.focus .bg{background-position:-5px -145px}.cssmap-210 .c2.active-region .bg{background-position:-225px -145px} .cssmap-210 .c3.focus .bg,.cssmap-210 .c3.active-region .bg{height:34px;left:153px;top:55px;width:44px}.cssmap-210 .c3.focus .bg{background-position:-46px -229px}.cssmap-210 .c3.active-region .bg{background-position:-266px -229px} .cssmap-210 .c4.focus .bg,.cssmap-210 .c4.active-region .bg{height:42px;left:82px;top:3px;width:41px}.cssmap-210 .c4.focus .bg{background-position:-160px -220px}.cssmap-210 .c4.active-region .bg{background-position:-380px -220px} .cssmap-210 .c5.focus .bg,.cssmap-210 .c5.active-region .bg{height:59px;left:2px;top:0;width:88px}.cssmap-210 .c5.focus .bg{background-position:-95px -146px}.cssmap-210 .c5.active-region .bg{background-position:-315px -146px} .cssmap-210 .c6.focus .bg,.cssmap-210 .c6.active-region .bg{height:39px;left:49px;top:56px;width:26px}.cssmap-210 .c6.focus .bg{background-position:-5px -227px}.cssmap-210 .c6.active-region .bg{background-position:-225px -227px}
.cssmap-210 .c1 a{left:110px;top:61px}.cssmap-210 .c1 a.tooltip-left .tooltip-arrow{left:110px} .cssmap-210 .c2 a{left:145px;top:34px}.cssmap-210 .c2 a.tooltip-right .tooltip-arrow{right:65px} .cssmap-210 .c3 a{left:170px;top:80px}.cssmap-210 .c3 a.tooltip-right .tooltip-arrow{right:40px} .cssmap-210 .c4 a{left:107px;top:40px}.cssmap-210 .c4 a.tooltip-left .tooltip-arrow{left:107px} .cssmap-210 .c5 a{left:48px;top:40px}.cssmap-210 .c5 a.tooltip-left .tooltip-arrow{left:48px} .cssmap-210 .c6 a{left:67px;top:73px}.cssmap-210 .c6 a.tooltip-left .tooltip-arrow{left:67px}

/* size: 250 */
.cssmap-250{width:250px} .cssmap-250 .continents,.cssmap-250 .continents .bg,.cssmap-250 .continents-cities{background:transparent url('/build/css/default/continents-250.png') no-repeat 0 0}  .cssmap-250 .continents.cssmap-blue,.cssmap-250 .continents.cssmap-blue .bg,.cssmap-250 .continents-cities.cssmap-blue{background-image:url('blue/continents-250.png')}  .cssmap-250 .continents.cssmap-dark,.cssmap-250 .continents.cssmap-dark .bg,.cssmap-250 .continents-cities.cssmap-dark{background-image:url('dark/continents-250.png')}  .cssmap-250 .continents.cssmap-vintage,.cssmap-250 .continents.cssmap-vintage .bg,.cssmap-250 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-250.png')}  .cssmap-250 .continents.cssmap-custom,.cssmap-250 .continents.cssmap-custom .bg,.cssmap-250 .continents-cities.cssmap-custom{background-image:url('custom/continents-250.png')}  .cssmap-250 .continents,.cssmap-250 .continents-cities{height:130px;width:250px}  .cssmap-250 .continents-cities{background-position:-260px 0}  .cssmap-250 .continents .m{margin:9998px 0 0 -3px}  .cssmap-250 .continents .m span{font-size:16px !important;padding:0 1px 1px 0}  .cssmap-250 .continents .bg{padding:5px}
.cssmap-250 .c1.focus .bg,.cssmap-250 .c1.active-region .bg{height:46px;left:100px;top:55px;width:46px}.cssmap-250 .c1.focus .bg{background-position:-119px -273px}.cssmap-250 .c1.active-region .bg{background-position:-379px -273px} .cssmap-250 .c2.focus .bg,.cssmap-250 .c2.active-region .bg{height:82px;left:128px;top:4px;width:87px}.cssmap-250 .c2.focus .bg{background-position:-5px -181px}.cssmap-250 .c2.active-region .bg{background-position:-265px -181px} .cssmap-250 .c3.focus .bg,.cssmap-250 .c3.active-region .bg{height:42px;left:186px;top:70px;width:54px}.cssmap-250 .c3.focus .bg{background-position:-51px -280px}.cssmap-250 .c3.active-region .bg{background-position:-311px -280px} .cssmap-250 .c4.focus .bg,.cssmap-250 .c4.active-region .bg{height:51px;left:98px;top:6px;width:50px}.cssmap-250 .c4.focus .bg{background-position:-180px -268px}.cssmap-250 .c4.active-region .bg{background-position:-440px -268px} .cssmap-250 .c5.focus .bg,.cssmap-250 .c5.active-region .bg{height:73px;left:0;top:2px;width:108px}.cssmap-250 .c5.focus .bg{background-position:-122px -181px}.cssmap-250 .c5.active-region .bg{background-position:-382px -181px} .cssmap-250 .c6.focus .bg,.cssmap-250 .c6.active-region .bg{height:48px;left:58px;top:71px;width:32px}.cssmap-250 .c6.focus .bg{background-position:-5px -278px}.cssmap-250 .c6.active-region .bg{background-position:-265px -278px}
.cssmap-250 .c1 a{left:132px;top:76px}.cssmap-250 .c1 a.tooltip-left .tooltip-arrow{left:132px} .cssmap-250 .c2 a{left:171px;top:42px}.cssmap-250 .c2 a.tooltip-right .tooltip-arrow{right:79px} .cssmap-250 .c3 a{left:206px;top:100px}.cssmap-250 .c3 a.tooltip-right .tooltip-arrow{right:44px} .cssmap-250 .c4 a{left:128px;top:48px}.cssmap-250 .c4 a.tooltip-left .tooltip-arrow{left:128px} .cssmap-250 .c5 a{left:55px;top:48px}.cssmap-250 .c5 a.tooltip-left .tooltip-arrow{left:55px} .cssmap-250 .c6 a{left:79px;top:91px}.cssmap-250 .c6 a.tooltip-left .tooltip-arrow{left:79px}

/* size: 320 */
.cssmap-320{width:320px} .cssmap-320 .continents,.cssmap-320 .continents .bg,.cssmap-320 .continents-cities{background:transparent url('/build/css/default/continents-320.png') no-repeat 0 0}  .cssmap-320 .continents.cssmap-blue,.cssmap-320 .continents.cssmap-blue .bg,.cssmap-320 .continents-cities.cssmap-blue{background-image:url('blue/continents-320.png')}  .cssmap-320 .continents.cssmap-dark,.cssmap-320 .continents.cssmap-dark .bg,.cssmap-320 .continents-cities.cssmap-dark{background-image:url('dark/continents-320.png')}  .cssmap-320 .continents.cssmap-vintage,.cssmap-320 .continents.cssmap-vintage .bg,.cssmap-320 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-320.png')}  .cssmap-320 .continents.cssmap-custom,.cssmap-320 .continents.cssmap-custom .bg,.cssmap-320 .continents-cities.cssmap-custom{background-image:url('custom/continents-320.png')}  .cssmap-320 .continents,.cssmap-320 .continents-cities{height:165px;width:320px}  .cssmap-320 .continents-cities{background-position:-330px 0}  .cssmap-320 .continents .m{margin:9999px 0 0 0}  .cssmap-320 .continents .m span{font-size:20px !important}
.cssmap-320 .c1.focus .bg,.cssmap-320 .c1.active-region .bg{height:58px;left:126px;top:66px;width:58px}.cssmap-320 .c1.focus .bg{background-position:-170px -341px}.cssmap-320 .c1.active-region .bg{background-position:-520px -341px} .cssmap-320 .c2.focus .bg,.cssmap-320 .c2.active-region .bg{height:103px;left:160px;top:2px;width:109px}.cssmap-320 .c2.focus .bg{background-position:-6px -210px}.cssmap-320 .c2.active-region .bg{background-position:-356px -210px} .cssmap-320 .c3.focus .bg,.cssmap-320 .c3.active-region .bg{height:53px;left:233px;top:85px;width:67px}.cssmap-320 .c3.focus .bg{background-position:-76px -343px}.cssmap-320 .c3.active-region .bg{background-position:-426px -343px} .cssmap-320 .c4.focus .bg,.cssmap-320 .c4.active-region .bg{height:64px;left:123px;top:5px;width:62px}.cssmap-320 .c4.focus .bg{background-position:-259px -336px}.cssmap-320 .c4.active-region .bg{background-position:-609px -336px} .cssmap-320 .c5.focus .bg,.cssmap-320 .c5.active-region .bg{height:91px;left:0;top:0;width:135px}.cssmap-320 .c5.focus .bg{background-position:-154px -211px}.cssmap-320 .c5.active-region .bg{background-position:-504px -211px} .cssmap-320 .c6.focus .bg,.cssmap-320 .c6.active-region .bg{height:60px;left:72px;top:86px;width:40px}.cssmap-320 .c6.focus .bg{background-position:-6px -342px}.cssmap-320 .c6.active-region .bg{background-position:-356px -342px}
.cssmap-320 .c1 a{left:169px;top:96px}.cssmap-320 .c1 a.tooltip-left .tooltip-arrow{left:169px} .cssmap-320 .c2 a{left:218px;top:53px}.cssmap-320 .c2 a.tooltip-right .tooltip-arrow{right:102px} .cssmap-320 .c3 a{left:261px;top:126px}.cssmap-320 .c3 a.tooltip-right .tooltip-arrow{right:59px} .cssmap-320 .c4 a{left:164px;top:62px}.cssmap-320 .c4 a.tooltip-left .tooltip-arrow{left:164px} .cssmap-320 .c5 a{left:69px;top:56px}.cssmap-320 .c5 a.tooltip-left .tooltip-arrow{left:69px} .cssmap-320 .c6 a{left:102px;top:115px}.cssmap-320 .c6 a.tooltip-left .tooltip-arrow{left:102px}

/* size: 430 */
.cssmap-430{width:430px} .cssmap-430 .continents,.cssmap-430 .continents .bg,.cssmap-430 .continents-cities{background:transparent url('/build/css/default/continents-430.png') no-repeat 0 0}  .cssmap-430 .continents.cssmap-blue,.cssmap-430 .continents.cssmap-blue .bg,.cssmap-430 .continents-cities.cssmap-blue{background-image:url('blue/continents-430.png')}  .cssmap-430 .continents.cssmap-dark,.cssmap-430 .continents.cssmap-dark .bg,.cssmap-430 .continents-cities.cssmap-dark{background-image:url('dark/continents-430.png')}  .cssmap-430 .continents.cssmap-vintage,.cssmap-430 .continents.cssmap-vintage .bg,.cssmap-430 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-430.png')}  .cssmap-430 .continents.cssmap-custom,.cssmap-430 .continents.cssmap-custom .bg,.cssmap-430 .continents-cities.cssmap-custom{background-image:url('custom/continents-430.png')}  .cssmap-430 .continents,.cssmap-430 .continents-cities{height:220px;width:430px}  .cssmap-430 .continents-cities{background-position:-440px 0}  .cssmap-430 .continents .m{margin:10000px 0 0 5px}  .cssmap-430 .continents .m span{font-size:26px !important;padding:0 1px 1px 0}
.cssmap-430 .c1.focus .bg,.cssmap-430 .c1.active-region .bg{height:75px;left:171px;top:91px;width:75px}.cssmap-430 .c1.focus .bg{background-position:-204px -433px}.cssmap-430 .c1.active-region .bg{background-position:-644px -433px} .cssmap-430 .c2.focus .bg,.cssmap-430 .c2.active-region .bg{height:133px;left:216px;top:8px;width:141px}.cssmap-430 .c2.focus .bg{background-position:-4px -266px}.cssmap-430 .c2.active-region .bg{background-position:-444px -266px} .cssmap-430 .c3.focus .bg,.cssmap-430 .c3.active-region .bg{height:68px;left:311px;top:115px;width:87px}.cssmap-430 .c3.focus .bg{background-position:-85px -431px}.cssmap-430 .c3.active-region .bg{background-position:-525px -431px} .cssmap-430 .c4.focus .bg,.cssmap-430 .c4.active-region .bg{height:83px;left:168px;top:12px;width:81px}.cssmap-430 .c4.focus .bg{background-position:-310px -425px}.cssmap-430 .c4.active-region .bg{background-position:-750px -425px} .cssmap-430 .c5.focus .bg,.cssmap-430 .c5.active-region .bg{height:118px;left:8px;top:5px;width:175px}.cssmap-430 .c5.focus .bg{background-position:-182px -266px}.cssmap-430 .c5.active-region .bg{background-position:-622px -266px} .cssmap-430 .c6.focus .bg,.cssmap-430 .c6.active-region .bg{height:77px;left:102px;top:117px;width:51px}.cssmap-430 .c6.focus .bg{background-position:-4px -429px}.cssmap-430 .c6.active-region .bg{background-position:-444px -429px}
.cssmap-430 .c1 a{left:225px;top:127px}.cssmap-430 .c1 a.tooltip-right .tooltip-arrow{right:205px} .cssmap-430 .c2 a{left:288px;top:72px}.cssmap-430 .c2 a.tooltip-right .tooltip-arrow{right:142px} .cssmap-430 .c3 a{left:345px;top:166px}.cssmap-430 .c3 a.tooltip-right .tooltip-arrow{right:85px} .cssmap-430 .c4 a{left:218px;top:82px}.cssmap-430 .c4 a.tooltip-left .tooltip-arrow{left:218px} .cssmap-430 .c5 a{left:94px;top:75px}.cssmap-430 .c5 a.tooltip-left .tooltip-arrow{left:94px} .cssmap-430 .c6 a{left:138px;top:151px}.cssmap-430 .c6 a.tooltip-left .tooltip-arrow{left:138px}

/* size: 540 */
.cssmap-540{width:540px} .cssmap-540 .continents,.cssmap-540 .continents .bg,.cssmap-540 .continents-cities{background:transparent url('/build/css/default/continents-540.png') no-repeat 0 0}  .cssmap-540 .continents.cssmap-blue,.cssmap-540 .continents.cssmap-blue .bg,.cssmap-540 .continents-cities.cssmap-blue{background-image:url('blue/continents-540.png')}  .cssmap-540 .continents.cssmap-dark,.cssmap-540 .continents.cssmap-dark .bg,.cssmap-540 .continents-cities.cssmap-dark{background-image:url('dark/continents-540.png')}  .cssmap-540 .continents.cssmap-vintage,.cssmap-540 .continents.cssmap-vintage .bg,.cssmap-540 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-540.png')}  .cssmap-540 .continents.cssmap-custom,.cssmap-540 .continents.cssmap-custom .bg,.cssmap-540 .continents-cities.cssmap-custom{background-image:url('custom/continents-540.png')}  .cssmap-540 .continents,.cssmap-540 .continents-cities{height:280px;width:540px}  .cssmap-540 .continents-cities{background-position:-550px 0}  .cssmap-540 .continents .m{margin:10002px 0 0 3px}  .cssmap-540 .continents .m span{font-size:33px !important;padding:0 1px 1px 0}
.cssmap-540 .c1.focus .bg,.cssmap-540 .c1.active-region .bg{height:95px;left:217px;top:119px;width:95px}.cssmap-540 .c1.focus .bg{background-position:-250px -524px}.cssmap-540 .c1.active-region .bg{background-position:-800px -524px} .cssmap-540 .c2.focus .bg,.cssmap-540 .c2.active-region .bg{height:169px;left:274px;top:14px;width:179px}.cssmap-540 .c2.focus .bg{background-position:-4px -326px}.cssmap-540 .c2.active-region .bg{background-position:-554px -326px} .cssmap-540 .c3.focus .bg,.cssmap-540 .c3.active-region .bg{height:86px;left:395px;top:150px;width:111px}.cssmap-540 .c3.focus .bg{background-position:-97px -525px}.cssmap-540 .c3.active-region .bg{background-position:-647px -525px} .cssmap-540 .c4.focus .bg,.cssmap-540 .c4.active-region .bg{height:105px;left:213px;top:18px;width:103px}.cssmap-540 .c4.focus .bg{background-position:-375px -512px}.cssmap-540 .c4.active-region .bg{background-position:-925px -512px} .cssmap-540 .c5.focus .bg,.cssmap-540 .c5.active-region .bg{height:150px;left:10px;top:10px;width:222px}.cssmap-540 .c5.focus .bg{background-position:-231px -326px}.cssmap-540 .c5.active-region .bg{background-position:-781px -326px} .cssmap-540 .c6.focus .bg,.cssmap-540 .c6.active-region .bg{height:98px;left:130px;top:152px;width:65px}.cssmap-540 .c6.focus .bg{background-position:-4px -524px}.cssmap-540 .c6.active-region .bg{background-position:-554px -524px}
.cssmap-540 .c1 a{left:282px;top:163px} .cssmap-540 .c2 a{left:363px;top:92px}.cssmap-540 .c2 a.tooltip-right .tooltip-arrow{right:177px} .cssmap-540 .c3 a{left:435px;top:212px}.cssmap-540 .c3 a.tooltip-right .tooltip-arrow{right:105px} .cssmap-540 .c4 a{left:274px;top:106px} .cssmap-540 .c5 a{left:117px;top:96px}.cssmap-540 .c5 a.tooltip-left .tooltip-arrow{left:117px} .cssmap-540 .c6 a{left:172px;top:193px}.cssmap-540 .c6 a.tooltip-left .tooltip-arrow{left:172px}

/* size: 650 */
.cssmap-650{width:650px} .cssmap-650 .continents,.cssmap-650 .continents .bg,.cssmap-650 .continents-cities{background:transparent url('/build/css/default/continents-650.png') no-repeat 0 0}  .cssmap-650 .continents.cssmap-blue,.cssmap-650 .continents.cssmap-blue .bg,.cssmap-650 .continents-cities.cssmap-blue{background-image:url('blue/continents-650.png')}  .cssmap-650 .continents.cssmap-dark,.cssmap-650 .continents.cssmap-dark .bg,.cssmap-650 .continents-cities.cssmap-dark{background-image:url('dark/continents-650.png')}  .cssmap-650 .continents.cssmap-vintage,.cssmap-650 .continents.cssmap-vintage .bg,.cssmap-650 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-650.png')}  .cssmap-650 .continents.cssmap-custom,.cssmap-650 .continents.cssmap-custom .bg,.cssmap-650 .continents-cities.cssmap-custom{background-image:url('custom/continents-650.png')}  .cssmap-650 .continents,.cssmap-650 .continents-cities{height:340px;width:650px}  .cssmap-650 .continents-cities{background-position:-660px 0}  .cssmap-650 .continents .m{margin:10003px 0 0 5px}  .cssmap-650 .continents .m span{font-size:40px !important}
.cssmap-650 .c1.focus .bg,.cssmap-650 .c1.active-region .bg{height:115px;left:266px;top:147px;width:115px}.cssmap-650 .c1.focus .bg{background-position:-296px -617px}.cssmap-650 .c1.active-region .bg{background-position:-956px -617px} .cssmap-650 .c2.focus .bg,.cssmap-650 .c2.active-region .bg{height:205px;left:335px;top:19px;width:217px}.cssmap-650 .c2.focus .bg{background-position:-4px -386px}.cssmap-650 .c2.active-region .bg{background-position:-664px -386px} .cssmap-650 .c3.focus .bg,.cssmap-650 .c3.active-region .bg{height:105px;left:481px;top:184px;width:134px}.cssmap-650 .c3.focus .bg{background-position:-120px -621px}.cssmap-650 .c3.active-region .bg{background-position:-780px -621px} .cssmap-650 .c4.focus .bg,.cssmap-650 .c4.active-region .bg{height:127px;left:261px;top:24px;width:124px}.cssmap-650 .c4.focus .bg{background-position:-443px -606px}.cssmap-650 .c4.active-region .bg{background-position:-1103px -606px} .cssmap-650 .c5.focus .bg,.cssmap-650 .c5.active-region .bg{height:182px;left:15px;top:14px;width:269px}.cssmap-650 .c5.focus .bg{background-position:-273px -386px}.cssmap-650 .c5.active-region .bg{background-position:-933px -386px} .cssmap-650 .c6.focus .bg,.cssmap-650 .c6.active-region .bg{height:119px;left:160px;top:186px;width:79px}.cssmap-650 .c6.focus .bg{background-position:-4px -620px}.cssmap-650 .c6.active-region .bg{background-position:-664px -620px}
.cssmap-650 .c1 a{left:343px;top:197px} .cssmap-650 .c2 a{left:441px;top:111px}.cssmap-650 .c2 a.tooltip-right .tooltip-arrow{right:209px} .cssmap-650 .c3 a{left:528px;top:256px}.cssmap-650 .c3 a.tooltip-right .tooltip-arrow{right:122px} .cssmap-650 .c4 a{left:333px;top:128px} .cssmap-650 .c5 a{left:143px;top:116px}.cssmap-650 .c5 a.tooltip-left .tooltip-arrow{left:143px} .cssmap-650 .c6 a{left:210px;top:234px}.cssmap-650 .c6 a.tooltip-left .tooltip-arrow{left:210px}

/* size: 750 */
.cssmap-750{width:750px} .cssmap-750 .continents,.cssmap-750 .continents .bg,.cssmap-750 .continents-cities{background:transparent url('/build/css/default/continents-750.png') no-repeat 0 0}  .cssmap-750 .continents.cssmap-blue,.cssmap-750 .continents.cssmap-blue .bg,.cssmap-750 .continents-cities.cssmap-blue{background-image:url('blue/continents-750.png')}  .cssmap-750 .continents.cssmap-dark,.cssmap-750 .continents.cssmap-dark .bg,.cssmap-750 .continents-cities.cssmap-dark{background-image:url('dark/continents-750.png')}  .cssmap-750 .continents.cssmap-vintage,.cssmap-750 .continents.cssmap-vintage .bg,.cssmap-750 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-750.png')}  .cssmap-750 .continents.cssmap-custom,.cssmap-750 .continents.cssmap-custom .bg,.cssmap-750 .continents-cities.cssmap-custom{background-image:url('custom/continents-750.png')}  .cssmap-750 .continents,.cssmap-750 .continents-cities{height:395px;width:750px}  .cssmap-750 .continents-cities{background-position:-760px 0}  .cssmap-750 .continents .m{margin:9999px 0 0 -1px}  .cssmap-750 .continents .m span{font-size:47px !important;padding:0 1px 1px 0}
.cssmap-750 .c1.focus .bg,.cssmap-750 .c1.active-region .bg{height:135px;left:309px;top:171px;width:135px}.cssmap-750 .c1.focus .bg{background-position:-324px -704px}.cssmap-750 .c1.active-region .bg{background-position:-1084px -704px} .cssmap-750 .c2.focus .bg,.cssmap-750 .c2.active-region .bg{height:241px;left:390px;top:21px;width:255px}.cssmap-750 .c2.focus .bg{background-position:-5px -441px}.cssmap-750 .c2.active-region .bg{background-position:-765px -441px} .cssmap-750 .c3.focus .bg,.cssmap-750 .c3.active-region .bg{height:123px;left:561px;top:215px;width:158px}.cssmap-750 .c3.focus .bg{background-position:-128px -721px}.cssmap-750 .c3.active-region .bg{background-position:-888px -721px} .cssmap-750 .c4.focus .bg,.cssmap-750 .c4.active-region .bg{height:149px;left:303px;top:27px;width:146px}.cssmap-750 .c4.focus .bg{background-position:-499px -693px}.cssmap-750 .c4.active-region .bg{background-position:-1259px -693px} .cssmap-750 .c5.focus .bg,.cssmap-750 .c5.active-region .bg{height:213px;left:13px;top:15px;width:316px}.cssmap-750 .c5.focus .bg{background-position:-320px -441px}.cssmap-750 .c5.active-region .bg{background-position:-1080px -441px} .cssmap-750 .c6.focus .bg,.cssmap-750 .c6.active-region .bg{height:140px;left:184px;top:218px;width:92px}.cssmap-750 .c6.focus .bg{background-position:-5px -721px}.cssmap-750 .c6.active-region .bg{background-position:-765px -721px}
.cssmap-750 .c1 a{left:397px;top:229px} .cssmap-750 .c2 a{left:512px;top:127px} .cssmap-750 .c3 a{left:614px;top:298px}.cssmap-750 .c3 a.tooltip-right .tooltip-arrow{right:136px} .cssmap-750 .c4 a{left:385px;top:147px} .cssmap-750 .c5 a{left:161px;top:134px}.cssmap-750 .c5 a.tooltip-left .tooltip-arrow{left:161px} .cssmap-750 .c6 a{left:240px;top:272px}

/* size: 850 */
.cssmap-850{width:850px} .cssmap-850 .continents,.cssmap-850 .continents .bg,.cssmap-850 .continents-cities{background:transparent url('/build/css/default/continents-850.png') no-repeat 0 0}  .cssmap-850 .continents.cssmap-blue,.cssmap-850 .continents.cssmap-blue .bg,.cssmap-850 .continents-cities.cssmap-blue{background-image:url('blue/continents-850.png')}  .cssmap-850 .continents.cssmap-dark,.cssmap-850 .continents.cssmap-dark .bg,.cssmap-850 .continents-cities.cssmap-dark{background-image:url('dark/continents-850.png')}  .cssmap-850 .continents.cssmap-vintage,.cssmap-850 .continents.cssmap-vintage .bg,.cssmap-850 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-850.png')}  .cssmap-850 .continents.cssmap-custom,.cssmap-850 .continents.cssmap-custom .bg,.cssmap-850 .continents-cities.cssmap-custom{background-image:url('custom/continents-850.png')}  .cssmap-850 .continents,.cssmap-850 .continents-cities{height:445px;width:850px}  .cssmap-850 .continents-cities{background-position:-860px 0}  .cssmap-850 .continents .m{margin:9997px 0 0 -2px}  .cssmap-850 .continents .m span{font-size:54px !important;padding:0 1px 1px 0}
.cssmap-850 .c1.focus .bg,.cssmap-850 .c1.active-region .bg{height:154px;left:355px;top:194px;width:155px}.cssmap-850 .c1.focus .bg{background-position:-378px -795px}.cssmap-850 .c1.active-region .bg{background-position:-1238px -795px} .cssmap-850 .c2.focus .bg,.cssmap-850 .c2.active-region .bg{height:276px;left:448px;top:22px;width:293px}.cssmap-850 .c2.focus .bg{background-position:-8px -491px}.cssmap-850 .c2.active-region .bg{background-position:-868px -491px} .cssmap-850 .c3.focus .bg,.cssmap-850 .c3.active-region .bg{height:141px;left:645px;top:244px;width:181px}.cssmap-850 .c3.focus .bg{background-position:-143px -807px}.cssmap-850 .c3.active-region .bg{background-position:-1003px -807px} .cssmap-850 .c4.focus .bg,.cssmap-850 .c4.active-region .bg{height:172px;left:348px;top:29px;width:168px}.cssmap-850 .c4.focus .bg{background-position:-564px -785px}.cssmap-850 .c4.active-region .bg{background-position:-1424px -785px} .cssmap-850 .c5.focus .bg,.cssmap-850 .c5.active-region .bg{height:245px;left:15px;top:15px;width:363px}.cssmap-850 .c5.focus .bg{background-position:-360px -491px}.cssmap-850 .c5.active-region .bg{background-position:-1220px -491px} .cssmap-850 .c6.focus .bg,.cssmap-850 .c6.active-region .bg{height:160px;left:211px;top:248px;width:106px}.cssmap-850 .c6.focus .bg{background-position:-7px -807px}.cssmap-850 .c6.active-region .bg{background-position:-867px -807px}
.cssmap-850 .c1 a{left:455px;top:259px} .cssmap-850 .c2 a{left:586px;top:143px} .cssmap-850 .c3 a{left:704px;top:339px}.cssmap-850 .c3 a.tooltip-right .tooltip-arrow{right:146px} .cssmap-850 .c4 a{left:441px;top:165px} .cssmap-850 .c5 a{left:184px;top:150px}.cssmap-850 .c5 a.tooltip-left .tooltip-arrow{left:184px} .cssmap-850 .c6 a{left:275px;top:308px}

/* size: 960 */
.cssmap-960{width:960px} .cssmap-960 .continents,.cssmap-960 .continents .bg,.cssmap-960 .continents-cities{background:transparent url('/build/css/default/continents-960.png') no-repeat 0 0}  .cssmap-960 .continents.cssmap-blue,.cssmap-960 .continents.cssmap-blue .bg,.cssmap-960 .continents-cities.cssmap-blue{background-image:url('blue/continents-960.png')}  .cssmap-960 .continents.cssmap-dark,.cssmap-960 .continents.cssmap-dark .bg,.cssmap-960 .continents-cities.cssmap-dark{background-image:url('dark/continents-960.png')}  .cssmap-960 .continents.cssmap-vintage,.cssmap-960 .continents.cssmap-vintage .bg,.cssmap-960 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-960.png')}  .cssmap-960 .continents.cssmap-custom,.cssmap-960 .continents.cssmap-custom .bg,.cssmap-960 .continents-cities.cssmap-custom{background-image:url('custom/continents-960.png')}  .cssmap-960 .continents,.cssmap-960 .continents-cities{height:495px;width:960px}  .cssmap-960 .continents-cities{background-position:-970px 0}  .cssmap-960 .continents .m{margin:9999px 0 0 0}  .cssmap-960 .continents .m span{font-size:60px !important}
.cssmap-960 .c1.focus .bg,.cssmap-960 .c1.active-region .bg{height:172px;left:397px;top:219px;width:172px}.cssmap-960 .c1.focus .bg{background-position:-484px -892px}.cssmap-960 .c1.active-region .bg{background-position:-1454px -892px} .cssmap-960 .c2.focus .bg,.cssmap-960 .c2.active-region .bg{height:307px;left:501px;top:28px;width:325px}.cssmap-960 .c2.focus .bg{background-position:-5px -551px}.cssmap-960 .c2.active-region .bg{background-position:-975px -551px} .cssmap-960 .c3.focus .bg,.cssmap-960 .c3.active-region .bg{height:157px;left:720px;top:275px;width:201px}.cssmap-960 .c3.focus .bg{background-position:-244px -927px}.cssmap-960 .c3.active-region .bg{background-position:-1214px -927px} .cssmap-960 .c4.focus .bg,.cssmap-960 .c4.active-region .bg{height:191px;left:390px;top:36px;width:186px}.cssmap-960 .c4.focus .bg{background-position:-5px -897px}.cssmap-960 .c4.active-region .bg{background-position:-975px -897px} .cssmap-960 .c5.focus .bg,.cssmap-960 .c5.active-region .bg{height:272px;left:19px;top:19px;width:403px}.cssmap-960 .c5.focus .bg{background-position:-426px -550px}.cssmap-960 .c5.active-region .bg{background-position:-1396px -550px} .cssmap-960 .c6.focus .bg,.cssmap-960 .c6.active-region .bg{height:178px;left:238px;top:279px;width:117px}.cssmap-960 .c6.focus .bg{background-position:-706px -882px}.cssmap-960 .c6.active-region .bg{background-position:-1676px -882px}
.cssmap-960 .c1 a{left:508px;top:290px} .cssmap-960 .c2 a{left:654px;top:161px}.cssmap-960 .c2 a.tooltip-right .tooltip-arrow{right:306px} .cssmap-960 .c3 a{left:785px;top:379px}.cssmap-960 .c3 a.tooltip-right .tooltip-arrow{right:175px} .cssmap-960 .c4 a{left:493px;top:186px} .cssmap-960 .c5 a{left:207px;top:169px}.cssmap-960 .c5 a.tooltip-left .tooltip-arrow{left:207px} .cssmap-960 .c6 a{left:308px;top:345px}.cssmap-960 .c6 a.tooltip-left .tooltip-arrow{left:308px}

/* size: 1280 */
.cssmap-1280{width:1280px} .cssmap-1280 .continents,.cssmap-1280 .continents .bg,.cssmap-1280 .continents-cities{background:transparent url('/build/css/default/continents-1280.png') no-repeat 0 0}  .cssmap-1280 .continents.cssmap-blue,.cssmap-1280 .continents.cssmap-blue .bg,.cssmap-1280 .continents-cities.cssmap-blue{background-image:url('blue/continents-1280.png')}  .cssmap-1280 .continents.cssmap-dark,.cssmap-1280 .continents.cssmap-dark .bg,.cssmap-1280 .continents-cities.cssmap-dark{background-image:url('dark/continents-1280.png')}  .cssmap-1280 .continents.cssmap-vintage,.cssmap-1280 .continents.cssmap-vintage .bg,.cssmap-1280 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-1280.png')}  .cssmap-1280 .continents.cssmap-custom,.cssmap-1280 .continents.cssmap-custom .bg,.cssmap-1280 .continents-cities.cssmap-custom{background-image:url('custom/continents-1280.png')}  .cssmap-1280 .continents,.cssmap-1280 .continents-cities{height:665px;width:1280px}  .cssmap-1280 .continents-cities{background-position:-1300px 0}  .cssmap-1280 .continents .m{margin:10001px 0 0 0}  .cssmap-1280 .continents .m span{font-size:80px !important}  .cssmap-1280 .continents .bg{padding:15px}
.cssmap-1280 .c1.focus .bg,.cssmap-1280 .c1.active-region .bg{height:229px;left:528px;top:292px;width:230px}.cssmap-1280 .c1.focus .bg{background-position:-546px -1158px}.cssmap-1280 .c1.active-region .bg{background-position:-1846px -1158px} .cssmap-1280 .c2.focus .bg,.cssmap-1280 .c2.active-region .bg{height:409px;left:666px;top:36px;width:433px}.cssmap-1280 .c2.focus .bg{background-position:-13px -715px}.cssmap-1280 .c2.active-region .bg{background-position:-1313px -715px} .cssmap-1280 .c3.focus .bg,.cssmap-1280 .c3.active-region .bg{height:209px;left:958px;top:366px;width:268px}.cssmap-1280 .c3.focus .bg{background-position:-218px -1174px}.cssmap-1280 .c3.active-region .bg{background-position:-1518px -1174px} .cssmap-1280 .c4.focus .bg,.cssmap-1280 .c4.active-region .bg{height:254px;left:518px;top:47px;width:248px}.cssmap-1280 .c4.focus .bg{background-position:-835px -1128px}.cssmap-1280 .c4.active-region .bg{background-position:-2135px -1128px} .cssmap-1280 .c5.focus .bg,.cssmap-1280 .c5.active-region .bg{height:363px;left:25px;top:26px;width:537px}.cssmap-1280 .c5.focus .bg{background-position:-526px -716px}.cssmap-1280 .c5.active-region .bg{background-position:-1826px -716px} .cssmap-1280 .c6.focus .bg,.cssmap-1280 .c6.active-region .bg{height:237px;left:316px;top:371px;width:157px}.cssmap-1280 .c6.focus .bg{background-position:-23px -1164px}.cssmap-1280 .c6.active-region .bg{background-position:-1323px -1164px}
.cssmap-1280 .c1 a{left:677px;top:388px} .cssmap-1280 .c2 a{left:872px;top:216px} .cssmap-1280 .c3 a{left:1046px;top:506px}.cssmap-1280 .c3 a.tooltip-right .tooltip-arrow{right:234px} .cssmap-1280 .c4 a{left:657px;top:249px} .cssmap-1280 .c5 a{left:276px;top:226px}.cssmap-1280 .c5 a.tooltip-left .tooltip-arrow{left:276px} .cssmap-1280 .c6 a{left:410px;top:461px}

/* size: 1450 */
.cssmap-1450{width:1450px} .cssmap-1450 .continents,.cssmap-1450 .continents .bg,.cssmap-1450 .continents-cities{background:transparent url('/build/css/default/continents-1450.png') no-repeat 0 0}  .cssmap-1450 .continents.cssmap-blue,.cssmap-1450 .continents.cssmap-blue .bg,.cssmap-1450 .continents-cities.cssmap-blue{background-image:url('blue/continents-1450.png')}  .cssmap-1450 .continents.cssmap-dark,.cssmap-1450 .continents.cssmap-dark .bg,.cssmap-1450 .continents-cities.cssmap-dark{background-image:url('dark/continents-1450.png')}  .cssmap-1450 .continents.cssmap-vintage,.cssmap-1450 .continents.cssmap-vintage .bg,.cssmap-1450 .continents-cities.cssmap-vintage{background-image:url('vintage/continents-1450.png')}  .cssmap-1450 .continents.cssmap-custom,.cssmap-1450 .continents.cssmap-custom .bg,.cssmap-1450 .continents-cities.cssmap-custom{background-image:url('custom/continents-1450.png')}  .cssmap-1450 .continents,.cssmap-1450 .continents-cities{height:755px;width:1450px}  .cssmap-1450 .continents-cities{background-position:-1500px 0}  .cssmap-1450 .continents .m{margin:10004px 0 0 5px}  .cssmap-1450 .continents .m span{font-size:90px !important}  .cssmap-1450 .continents .bg{padding:15px}
.cssmap-1450 .c1.focus .bg,.cssmap-1450 .c1.active-region .bg{height:257px;left:601px;top:334px;width:258px}.cssmap-1450 .c1.focus .bg{background-position:-932px -1283px}.cssmap-1450 .c1.active-region .bg{background-position:-2432px -1283px} .cssmap-1450 .c2.focus .bg,.cssmap-1450 .c2.active-region .bg{height:460px;left:757px;top:47px;width:487px}.cssmap-1450 .c2.focus .bg{background-position:-15px -816px}.cssmap-1450 .c2.active-region .bg{background-position:-1515px -816px} .cssmap-1450 .c3.focus .bg,.cssmap-1450 .c3.active-region .bg{height:235px;left:1085px;top:418px;width:301px}.cssmap-1450 .c3.focus .bg{background-position:-241px -1336px}.cssmap-1450 .c3.active-region .bg{background-position:-1741px -1336px} .cssmap-1450 .c4.focus .bg,.cssmap-1450 .c4.active-region .bg{height:286px;left:590px;top:59px;width:279px}.cssmap-1450 .c4.focus .bg{background-position:-592px -1283px}.cssmap-1450 .c4.active-region .bg{background-position:-2092px -1283px} .cssmap-1450 .c5.focus .bg,.cssmap-1450 .c5.active-region .bg{height:408px;left:35px;top:35px;width:604px}.cssmap-1450 .c5.focus .bg{background-position:-562px -816px}.cssmap-1450 .c5.active-region .bg{background-position:-2062px -816px} .cssmap-1450 .c6.focus .bg,.cssmap-1450 .c6.active-region .bg{height:267px;left:363px;top:424px;width:176px}.cssmap-1450 .c6.focus .bg{background-position:-15px -1326px}.cssmap-1450 .c6.active-region .bg{background-position:-1515px -1326px}
.cssmap-1450 .c1 a{left:767px;top:440px} .cssmap-1450 .c2 a{left:986px;top:247px} .cssmap-1450 .c3 a{left:1182px;top:574px}.cssmap-1450 .c3 a.tooltip-right .tooltip-arrow{right:268px} .cssmap-1450 .c4 a{left:744px;top:284px} .cssmap-1450 .c5 a{left:315px;top:259px} .cssmap-1450 .c6 a{left:467px;top:523px}

/* --------------------------------------------------------
end of the maps */
/*
 * CSSMap plugin - THEMES
 * version: 5.6
 * web: http://cssmapsplugin.com
 *
 * author: Łukasz Popardowski { Winston_Wolf }
 * license: http://cssmapsplugin.com/license
 * FAQ: http://cssmapsplugin.com/faq
 *
 * email: http://cssmapsplugin.com/contact
 * twitter: @CSSMapplugin
*/

/* ---------------------------------------------------------------------------------------------------- *
                                       TOOLTIPS - DEFAULT
 * ---------------------------------------------------------------------------------------------------- */
.cssmap > li a,.cssmap > li a:hover,.cssmap-tooltip-content{
  background: #111;
  background: rgba(0,0,0,.8);
  color: #eee;
  font: normal 12px 'Lucida Grande',Arial,Helvetica,sans-serif;
  padding: .4em 1em;
  text-align: center;
  text-shadow: 0 1px 0 #000;
  white-space: nowrap;
  -moz-border-radius: .4em;
  -ms-border-radius: .4em;
  -webkit-border-radius: .4em;
  border-radius: .4em;
  pointer-events: none;
 }
 .cssmap-1450 .cssmap > li a,.cssmap-1280 .cssmap > li a{ font-size: 14px }
 .cssmap-650 .cssmap > li a{ font-size: 11px }
 .cssmap-540 .cssmap > li a,.cssmap-430 .cssmap > li a,.cssmap-320 .cssmap > li a,
 .cssmap-250 .cssmap > li a,.cssmap-210 .cssmap > li a{ font-size: 10px !important}

    /* tooltip arrow; when you change its size don't forget to set tooltipArrowHeight option in the cssMap(); function */
    .cssmap > li a .tooltip-arrow{
      bottom: -5px; /* must be the same as a border-width */
      border: solid;
      border-color: #111 transparent;
      border-color: rgba(0,0,0,.8) transparent;
      border-width: 5px 5px 0 5px; /* this's a height of the arrow */
      margin-left: -5px; /* must be the same as a border-width */
    }
    .cssmap > li a.tooltip-right .tooltip-arrow{
      margin-right: -5px; /* must be the same as a tooltip-arrow border-width */
    }
    .cssmap > li a.tooltip-top .tooltip-arrow{ /* set tooltip under the arrow */
      border-width:0 5px 5px 5px;
      top: -5px;
    }

  .cssmap > li a small,.cssmap > li a:hover small,.cssmap-tooltip-content small,
  .cssmap > li a abbr,.cssmap > li a:hover abbr,.cssmap-tooltip-content abbr{ display:block; font-size: .8em }

/* MARKER/PIN TOOLTIP */
.cssmap-pin .cssmap-tooltip-content{
  padding: 1em;
  text-align:left;
  white-space: normal;
  max-width: 15em
 }

/* ---------------------------------------------------------------------------------------------------- *
                                  WHITE STYLE TOOLTIPS
 * ---------------------------------------------------------------------------------------------------- */
.cssmap-dark li a,.cssmap-dark li a:hover,.cssmap-tooltip-content.cssmap-dark{background:#eee;background: rgba(255,255,255,.9);border:2px solid #fff;color:#333;font-weight: bold;text-shadow:0 .1em 0 #fff;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em}
 .cssmap-dark li a .tooltip-arrow{bottom:-7px;border:solid;border-color:#fff transparent;border-width:7px 7px 0 7px;content:"";display:block;left:50%;margin-left:-7px;position:absolute;width:0}
 .cssmap-dark li a.tooltip-right .tooltip-arrow{margin-right: -7px}
 .cssmap-dark li a.tooltip-top .tooltip-arrow{border-width:0 7px 7px 7px;top: -7px}

/* ---------------------------------------------------------------------------------------------------- *
                                 VINTAGE STYLE TOOLTIPS
 * ---------------------------------------------------------------------------------------------------- */
.cssmap-vintage li a,.cssmap-vintage li a:hover,.cssmap-tooltip-content.cssmap-vintage{background: #333;border:2px solid #e9e8c9;color:#f5f5f5;text-shadow:0 1px 0 #000;-moz-border-radius:.6em;-ms-border-radius:.6em;-webkit-border-radius:.6em;border-radius:.6em;-moz-box-shadow:0 0 4px #736357;-webkit-box-shadow:0 0 4px #736357;box-shadow:0 0 4px #736357}
 .cssmap-vintage li a .tooltip-arrow{bottom:-7px;border:solid;border-color:#e9e8c9 transparent;border-width:7px 7px 0 7px;content:"";display:block;left:50%;margin-left:-7px;position:absolute;width:0}
 .cssmap-vintage li a .tooltip-arrow:after{bottom:3px;border:solid;border-color:#333 transparent;border-width:4px 4px 0 4px;content:"";display:block;left:50%;margin-left:-4px;position:absolute;width:0}
 .cssmap-vintage li a.tooltip-right .tooltip-arrow{margin-right: -7px}
 .cssmap-vintage li a.tooltip-top .tooltip-arrow{border-width:0 7px 7px 7px;top: -7px}

/* ---------------------------------------------------------------------------------------------------- *
                                 VISIBLE LIST OF REGIONS
 * ---------------------------------------------------------------------------------------------------- */
.cssmap-visible-list a{}
  /* SELECTED REGION */
  .cssmap-visible-list a:hover,.cssmap-visible-list a:focus,.cssmap-visible-list li.focus a{}
  /* ACTIVE REGION */
  .cssmap-visible-list a:active,.cssmap-visible-list li.active-region a{}

/* ---------------------------------------------------------------------------------------------------- *
                        SEARCH LINK - SHOWN IN THE MULTIPLE CLICKS MODE
 * ---------------------------------------------------------------------------------------------------- */
.cssmap-search-link{
  bottom:0;
  right:0
 }
 /* SELECTED SEARCH LINK */
 a.cssmap-search-link:hover,a.cssmap-search-link:focus{}

/* ---------------------------------------------------------------------------------------------------- *
                                        NAVIGATION
 * ---------------------------------------------------------------------------------------------------- */
.cssmap-navigation{ text-align: center }

  /* LIST OF NAVIGATION CONTROLS */
  .cssmap-nav-list{}
   .cssmap-nav-list li{
     display:inline-block;
     margin: 0 .5em;
    }
    .cssmap-nav-next{} /* LIST ITEM */
    .cssmap-nav-prev{} /* LIST ITEM */
    .cssmap-nav-separator{} /* LIST ITEM */

  /* LABEL OF THE NAVIGATION - THE H5 HEADER (OPTIONAL) */
  .cssmap-nav-label{}

  /* DESCRIPTION SHOWN ABOVE THE NAVIGATION (OPTIONAL) */
  .cssmap-nav-description{}

/* ---------------------------------------------------------------------------------------------------- *
                                        PRELOADER
 * ---------------------------------------------------------------------------------------------------- */
.cssmap-loader{
  background: #111;
  background: rgba(0,0,0,.8);
  color: #eee;
  font: normal 14px 'Lucida Grande',Arial,sans-serif;
  padding: .4em 1em;
  text-shadow: 0 1px 0 #000;
  -moz-border-radius: .4em;
  -ms-border-radius: .4em;
  -webkit-border-radius: .4em;
  border-radius: .4em;
 }
 .cssmap-1450 .cssmap-loader,.cssmap-1280 .cssmap-loader{font-size:16px}
 .cssmap-540 .cssmap-loader,.cssmap-430 .cssmap-loader{font-size:12px}
 .cssmap-320 .cssmap-loader{font-size:11px}
 .cssmap-250 .cssmap-loader{font-size:10px}
 .cssmap-210 .cssmap-loader{font-size:9px}

/* ---------------------------------------------------------------------------------------------------- *
 *                               DO NOT EDIT FROM THIS POINT!
 * ---------------------------------------------------------------------------------------------------- */
.cssmap-container{margin:0 auto;overflow:hidden;padding:0 !important;position:relative} .cssmap-container,.cssmap-container *,.cssmap-markers-container,.cssmap-markers-container *{-moz-box-sizing: content-box !important;-webkit-box-sizing: content-box !important;box-sizing: content-box !important;-moz-backface-visibility: hidden;-ms-backface-visibility: hidden;-o-backface-visibility: hidden;-webkit-backface-visibility: hidden;backface-visibility: hidden} .cssmap{border:0 none !important;display:block;left:0;margin:0 !important;list-style:none !important;padding:0 !important;position:relative} .cssmap > li{height:0;width:0} .cssmap > li a{height:auto;margin:0 0 0 -9999px;position:absolute;text-decoration:none;width:auto;z-index:89} .cssmap > li a:focus{outline:0 none} .cssmap-container span,.cssmap-cities{display:block;height:0;left:0;position:absolute;top:-9999px;width:0} .cssmap > li a.tooltip-right{left:auto;right:0;width:auto} .cssmap > li a .tooltip-arrow{left:50%;top:auto} .cssmap > li a.tooltip-middle .tooltip-arrow{display:none} .cssmap > li a.tooltip-top .tooltip-arrow{bottom:auto} .cssmap > li a.tooltip-right .tooltip-arrow{left:auto} #cssmap-tooltip{position:absolute;z-index:999} .cssmap-container .cssmap-cities{top:0;z-index:88} .cssmap .bg{padding:10px} .cssmap .active-region .bg{z-index:87} .cssmap .m{cursor:pointer;z-index:99} .cssmap .m span{z-index:89} .cssmap-visible-list-container{margin:0;overflow:hidden;position:relative;z-index:300} .cssmap-pins,.cssmap-visible-list{list-style:none;padding-left:0;padding-right:0} .cssmap-marker img{border:0 none} span.cssmap-loader{height:auto;position:absolute;text-align:center;width:auto;z-index:90} .cssmap-error{margin:2em 0;text-align:left;width:100%} .cssmap-signature{clear:both;font-size:10px;margin:1em 0;overflow:hidden;position:relative;text-align:center;width:100%} .cssmap-signature a{text-decoration: none !important} .cssmap-search-link{position:absolute;z-index:100 !important}
/* Main styles
------------------------------ */


html 
{ 
	width: 100%;  
	-webkit-text-size-adjust: none; 
	-ms-text-size-adjust: none; 
	text-size-adjust: none; 
	overflow-x:hidden !important;
}

body 
{ 
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 62.5%;
	color:#222;
	background-color:#fff !important;
	width: 100%;
	display: block;

	/*overflow-x:hidden !important;*/
}



a { color: #007AFF; text-decoration:none; cursor: pointer;}
	a:visited {  }
  	a:hover {   }
	a:active { }

h1::first-letter{ text-transform: uppercase;}

.rounded{ border-radius: 10px; overflow: hidden; }

.cover.animated{transform: translateZ(0);    width: 100%; height: 100%; position: absolute; top: 0; left: 0;}
.cover.lazy{ background-image: url(/img/deer.gif);  background-color: #00C853; background-size: auto; background-position: center; background-repeat: no-repeat;}

/*css for show more */
.hide {
	display: none;
}
/* autocomplete css

 */
.ui-autocomplete-input {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	background-color: white;
	text-decoration: none;
	color: #262626;
	/*background-image: url('searchicon.png');
	background-position: 10px 10px;
	background-repeat: no-repeat;*/
	padding: 4px 10px;
	-webkit-transition: width 0.4s ease-in-out;
	transition: width 0.4s ease-in-out;
}
/*.ui-autocomplete-input:focus {
	width: 100%;
}
.fa-search{
	position: absolute;
	margin-right: 10px;
	top: 33%;
	z-index: 1;
	color: #4f5b66;
	font-size: 18px;
} */
.a-search {
	position: relative;
}

.a-search .fa-search {
	position: absolute;
	right: 8px;
	top: 9px;
	font-size: 16px;
}

.a-search input{
	height: 34px;
	padding: 6px 12px;
	font-family: 'Open Sans', sans-serif;
	color: #555;
	background-color: #fff;
	width: 100%;
	font-size: 14px;
	min-width: 260px;
	border-radius: 4px;
	outline: none;
	border: none;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	border: 1px solid rgba(0, 0, 0, 0.15);
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.a-search input:focus + i {
	color: #333;
}

.a-search input:focus {
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
	border-color: #66afe9;
	outline: 0;
}
.ui-autocomplete {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 999999;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	list-style: none;
	font-size: 14px;
	text-align: left;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	background-clip: padding-box;
}

.ui-autocomplete > li > div {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: normal;
	line-height: 1.42857143;
	color: #333333;
	white-space: nowrap;
	z-index: 999999;
}

.ui-state-hover,
.ui-state-active,
.ui-state-focus {
	text-decoration: none;
	color: #262626;
	background-color: #f5f5f5;
	cursor: pointer;
}

.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

a.anchor {
	display: block;
	position: relative;
	top: -130px;
	visibility: hidden;
}
/*
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;

	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}

@media (min-width: 1200px) {

	.hidden-desktop{ display: none !important;}
	.hidden-desktop-tablet{ display: none !important;}

	.item-animal{  width: 23.5%; margin: 0 2% 25px 0; }
		.item-animal:nth-child(4n+1){ margin-right: 0; }
		.item-animal:nth-child(3), .item-animal:nth-child(5){ margin-right: 0; }
		.item-animal:nth-child(4){ margin-right: 2%; }

		.item-animal:first-child{ width: 49%; margin-right: 15px !important; }
	
}
input[type=text],
input[type=search],
input[type=password],
input[type=checkbox],
input[type=radio],
input[type=file],
input[type=email],
input[type=url],
textarea
{
	font-family: "Open Sans", Arial, sans-serif;
	background-color: #F5F5F5;
	font-size:1.2em;
	outline: none;
	border:1px solid #ddd;
	border-radius: 2px;
}
  input[type=text]:focus{ }


input[type=button]{}
input[type=submit]{ outline: none;}

label{}

textarea{ font-family: "Open Sans", Arial, sans-serif; font-size:1.2em; resize:none;}


select{ outline: none; font-family: "Open Sans", Arial, sans-serif; font-size:1.2em; }
  select:focus{}
  select option{}


input[type=text],
input[type=search],
input[type=password],
input[type=email],
input[type=button],
input[type=submit],
input[type=url],
textarea
{
    -webkit-appearance: none;
}

.animals{ width: 100%; float: left; }
.item-animal{ transform: translateZ(0); width: 23.5%; margin: 0 2% 25px 0; position: relative; float: left; background-color: #000;}
	.item-animal:before {display: block;content:'';margin-top: 125%; }

	.item-animal .cover{ background-position: center; height: 80%;  }
	.item-animal:hover .cover{transform: scale(1);}

	.item-animal .caption{ transform: translateZ(0); background-color: #000; width: 100%; box-sizing: border-box; padding: 20px 20px; height: 90px; position: absolute; left: 0px; bottom: 0px;  }
		.item-animal .caption .name{ width: 100%; margin-bottom: 5px; text-transform: uppercase; font-size: 2.4em;  color: #fff; font-family: 'Rubik', sans-serif;  font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
		.item-animal .caption .scientific_name{ width: 100%; font-size: 1.6em; color: #777;  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 120%;}

		.item-animal .caption .name::first-letter, .item-animal .caption .scientific_name::first-letter{ text-transform: uppercase;}


	.item-animal:first-child{}
		.item-animal:first-child:before {margin-top: 124.1%; }
		/*.item-animal:first-child .caption{height: 90px; padding: 110px 20px 70px;}*/
.content{ width: 100%; float: left; }
.container{ width: 96%;  max-width: 1200px; margin-left: auto; margin-right: auto;   position: relative;}

.admin-panel{ width: 100%; float: left; height: 40px; background-color: #222; position: fixed; z-index: 9000; }
	.admin-panel-padder{ width: 100%; float: left; height: 40px; }
	.admin-panel .admin{ float: left; margin-right: 40px; font-weight: bold; font-size: 1.8em; color: #aaa; line-height: 40px; }
	.admin-panel a:hover{ color: #fff !important; }
	.admin-panel ul{ float: left; }
		.admin-panel ul li{ display: inline-block; color: #666; line-height: 40px; font-size: 0.7em; }
		.admin-panel ul a{  color: #aaa; margin-right: 20px;}
		.admin-panel ul span{margin: 0 5px 0 10px;}

.b-admin section.s-char {
	padding-top: 140px;
}
		/*
header{width: 100%; float: left; height: 60px; position: relative; z-index: 2000;}

	header .logo{ font-family: 'Rubik', sans-serif;  font-weight: 600; font-size: 3em; line-height: 60px; color: #00C853; float: left; text-transform: uppercase; }
	header .slogan{ font-family: 'Rubik', sans-serif;  font-weight: 200; font-size: 1em; line-height: 20px; color: #00C853; float: left; clear: left; text-transform: uppercase; }
	header .main-nav{ width: 60%; margin: 0 20%; position: absolute;  text-align: center; height: 20px; padding: 20px 0; }
		header .main-nav li{ display: inline-block; margin: 0 5px; }
		header .main-nav a{ line-height: 20px; font-size: 1.4em; color: #777; text-align: center;}
			header .main-nav a:hover{ color: #222; }

	header .sub-nav{  float: right; height: 20px; padding: 20px 0; }
		header .sub-nav li{ display: inline-block; margin: 0 0 0 10px; }
		header .sub-nav a{ line-height: 20px; color: #777; }
			header .sub-nav a i{ font-size: 2.4em; }
			header .sub-nav a:hover{ color: #222; }

 header {
	font-size: 62.5%
}

header .logo span {
	color: #00c853;
	font-family: Rubik, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	display: block;
	font-weight: 400;
	line-height: 1
}

header .main-nav {
	padding-top: 30px
}

header .main-nav li {
	padding-left: 30px;
	position: relative
}

header .main-nav li::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url(../img/mammals.png) no-repeat center;
	position: absolute;
	top: 0;
	left: 0
}

header .main-nav li:nth-child(2)::before {
	background: url(../img/reptiles.png) no-repeat center
}

header .main-nav li:nth-child(3)::before {
	background: url(../img/birds.png) no-repeat center
}
*/


.page-breadcrumbs{ width: 100%; float: left; margin: 0px 0 0px; position: relative; z-index: 100; }
.breadcrumbs{ display: inline-block;  }
  .breadcrumbs li{ display: inline-block;}
  .breadcrumbs a, .breadcrumbs em{ display: inline-block; font-size: 1.2em; color: #888; font-style: normal; }
  .breadcrumbs>*:before {content: "/"; color: #ccc; margin: 0 15px; position: relative; top: 1px; font-size: 1.2em;}
  .breadcrumbs>*:first-child:before { content: " "; margin: 0;}


.paginator{ width: 100%; float: left;  margin: 0 0 40px 0;}
  .paginator .pagination{  float: left; overflow: hidden; text-align: left;}
  .paginator .pagination li{ display: inline-block;}
  .paginator .pagination li a, .paginator .pagination li span{border-radius: 3px; border: 1px solid #ccc; color: #777; width: 40px; height: 40px; line-height: 40px;   float: left; font-size: 1.6em;  text-align: center; margin: 0 4px 0 0px;  }
  .paginator .pagination li a:hover{ color: #222; text-decoration: none; border-color: #aaa; }
  .paginator .pagination li.active span{ background: #00C853;  border-color: #00C853; color: #fff;}
  .paginator .pagination li.disabled span{ color: #ccc; border-color: #eee;}

  .paginator .pagination li:first-child a, .paginator .pagination li:last-child a{ font-size: 1.4em; line-height: 30px;  font-weight: 300; margin: 0;}
  .paginator .pagination li:first-child{ float: left;}
  .paginator .pagination li:last-child{ float: right;}

.paginator{ display: inline-block; }
  .paginator li, .paginator ul{ display: inline-block; }
  .paginator li a, .paginator li span{ color: #888; margin-right: 5px; }
  .paginator .pagination li:first-child, .paginator .pagination li:last-child{ display: none;}

  .btn-load-more{ width: 100%; float: left; height: 50px;  border: 1px solid #ccc; color: #777; font-size: 1.3em; font-weight: bold; margin-bottom: 20px; }
     .btn-load-more i{ font-size: 1.2em; margin-right: 5px; }
    .btn-load-more:hover{color: #222; text-decoration: none; border-color: #aaa;}

  #loading{ width: 100%; float: left; height: 20px; text-align: center; margin: 15px 0 55px; display: none; }
    #loading.active{display: block !important;}

    

#gallery{ display: none; -webkit-animation-duration: .3s; animation-duration: .3s; position: fixed; width: 100%; height: 100%; background-color: #000; top: 0; left: 0; z-index: 5000; }
	#gallery .loader{ display: none;  position: absolute; width: 100%; height: 100%; top: 0; left: 0;  background-image: url(/img/deer-black.gif);  background-size: auto; background-position: center; background-repeat: no-repeat;}
	#gallery .image{ display: none;    -webkit-animation-duration: .3s; animation-duration: .3s; position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
	#gallery .image img{ height: 100%; max-height: 100%; margin: auto; position:absolute; top:0; bottom:0; left:0; right:0; display: block;}

	#gallery .nav{ position: absolute; opacity: 0.3; transition: opacity .25s ease-in-out; box-sizing: border-box;  height: 80%; top: 10%; flex-direction: column; display: flex;   justify-content: center;}
		#gallery .nav-next{ position: absolute;  right: 0px; /*width: 80%; right: 0; align-items: center;*/ }
		#gallery .nav-prev{ width: 20%; left: 0;  }
		#gallery .nav:hover{ opacity: 1; }

		#gallery .nav-arr{ font-size: 2.4em; color: #fff; padding: 30px; cursor: pointer;}
			#gallery .nav-arr-right{margin-left: auto;}
			#gallery .nav-arr-left{}
			

	#gallery .btn-close-gallery{ opacity: 0.3; transition: opacity .25s ease-in-out; color: #fff; font-size: 2.4em; position: absolute; top: 0; right: 0; padding: 30px; cursor: pointer; }
		#gallery .btn-close-gallery:hover{opacity: 1;}

	#gallery .caption{ position: absolute; bottom: 0; width: 100%; box-sizing: border-box; padding: 30px; color: #fff; }
		#gallery .caption .title{transform: translateZ(0); width: 50%; float: left; font-size: 2.4em;}
			#gallery .caption .title .name{ display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; line-height: 130%;}
			#gallery .caption .title .index{display: inline-block; opacity: 0.3;  }
		#gallery .caption .meta{transform: translateZ(0); width: 50%; float: right; /*opacity: 0.5;*/ text-align: right;}
			#gallery .caption .meta .author{display: inline-block; opacity: 0.5; width: 100%; font-size: 1.2em; margin-bottom: 5px; }
			#gallery .caption .meta .author a{ color: #fff; opacity: 0.5;}
			#gallery .caption .meta .license{display: inline-block; width: 100%; opacity: 0.5;  font-size: 1em; }

footer{ width: 100%; float: left; height: 200px; }


.page-animal{}



.page-home{}

	.page-home .aod{ transform: translateZ(0); width: 100%; background-size: cover; background-repeat: no-repeat; /*background-position: center;*/ float: left;  margin: 30px 0 50px; position: relative; }
	.page-home .aod:before {display: block;content:'';margin-top: 45%; }

		.page-home .aod .cover{}
		.page-home .aod:hover .cover{transform: scale(1);}

		.page-home .aod .caption{ position: absolute; left: 40px; bottom: 40px; color: #fff; font-family: 'Rubik', sans-serif; text-transform: uppercase; font-weight: 700;}
		.page-home .aod .caption .title{ font-size: 2em; }
		.page-home .aod .caption .name{ font-size: 4.8em; }


	.page-home .properties{ width: 100%; float: left; margin: 10px 0 50px; }
		.page-home .properties .property{transform: translateZ(0); width: 32%; float: left; margin: 0 2% 25px 0;  position: relative; overflow: hidden;}
		.page-home .properties .property:before {display: block;content:'';margin-top: 100%; }

		.page-home .properties .property .cover{ /*background-position: center;*/ }
		.page-home .properties .property:hover .cover{transform: scale(1);}

		.page-home .properties .property:nth-child(2){ margin-right: 0; width: 66%; }
		.page-home .properties .property:nth-child(5){ margin-right: 0; }
		.page-home .properties .property:nth-child(6){  width: 66%;}
		.page-home .properties .property:nth-child(7) {margin-right: 0;}

		.page-home .properties .property:nth-child(2):before,
		.page-home .properties .property:nth-child(6):before{margin-top: 48.5%;}

		.page-home .properties .property .caption{ width: 60%; position: absolute; left: 40px; bottom: 40px; color: #fff; font-family: 'Rubik', sans-serif; text-transform: uppercase; font-weight: 700; }
		.page-home .properties .property .caption .title{ font-size: 3.2em;  }
		.page-home .properties .property .caption .count{ font-size: 1.6em; opacity: 0.5; margin-top: 5px; }

		.page-home .properties .property:nth-child(2) .caption,
		.page-home .properties .property:nth-child(6) .caption{width: 30%;}


	.page-home h2{ width: 100%; float: left; margin: 0 0 20px 0; font-size: 1.6em; color: #444; text-transform: uppercase; letter-spacing: 2px; font-weight: bold; }




.page-catalog{}

	/*.page-catalog header .logo{ color: #fff; }
	.page-catalog header a{ color: #fff !important; }*/

	.page-catalog .page-cover{ float: left; margin: -60px 0 40px; width: 100%;  position: relative; }
	.page-catalog .page-cover .icover{ top: 0; left: 0; width: 100%; height: 100%; position: absolute; background-size: cover; background-repeat: no-repeat; /*background-position: center;*/ background-color: #00C853; }
	.page-catalog .page-cover .overlay { position: relative; float: left; box-sizing: border-box; padding: 120px 0 80px;  width: 100%; min-height: 500px;  background-color:rgba(0, 0, 0, 0.1); }
	.page-catalog .page-cover-image .overlay{background-color:rgba(0, 0, 0, 0.5);}

	.page-catalog .page-cover {  color: #fff;  }
	.page-catalog .page-cover .title, .page-catalog .page-cover .description{ }
	.page-catalog .page-cover .title{ transform: translateZ(0); float: left;  width: 45%; text-transform: uppercase;  font-family: 'Rubik', sans-serif;  font-weight: 700;}
		.page-catalog .page-cover .title .page-type{ transform: translateZ(0); opacity: 0.5; font-size: 1.6em; margin-bottom: 5px;}
		.page-catalog .page-cover .title h1{ font-size: 6.4em; }
		.page-catalog .page-cover .title h2{ transform: translateZ(0); opacity: 0.5; font-size: 2.4em; margin-top: 5px;}
	.page-catalog .page-cover .description{ width: 50%; float: right; font-size: 1.8em; line-height: 150%;  background-color: rgba(27,27,27,0.5);  padding: 44px;}
	.page-catalog .page-cover .source{ transform: translateZ(0); font-size: 0.8em; float: right; margin-top: 20px; display: inline-block; opacity: 0.5; color: #fff;  }


	.page-catalog  .breadcrumbs{  }
	.page-catalog  .breadcrumbs a, .page-catalog .breadcrumbs em, .page-catalog .breadcrumbs>*:before { color: #fff;}

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

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

::-webkit-input-placeholder {
    color: #666;
    opacity: 1;
    font-style: italic
}

:-moz-placeholder {
    color: #666;
    opacity: 1;
    font-style: italic
}

::-moz-placeholder {
    color: #666;
    opacity: 1;
    font-style: italic
}

:-ms-input-placeholder {
    color: #666;
    opacity: 1;
    font-style: italic
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none
}

::selection {
    background: #b3d4fc;
    text-shadow: none
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

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

ol,
ul {
    list-style: none
}

html {
    width: 100%;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    overflow-x: hidden!important
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 62.5%;
    color: #222;
    background-color: #fff!important;
    width: 100%;
    display: block;
    /*overflow-x: hidden!important;*/
    line-height: 1
}

a {
    color: #007aff;
    text-decoration: none;
    cursor: pointer
}

a:hover {
    color: #00c853;
    -webkit-transition: all .3s linear;
    transition: all .3s linear
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

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

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

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

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    -webkit-transition: height .5s ease-in-out;
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform .1s ease;
    transition: -webkit-transform .1s ease;
    transition: transform .1s ease;
    transition: transform .1s ease, -webkit-transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}


/*!
 * Bootstrap Grid v4.0.0-beta.2 (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

@-ms-viewport {
    width: device-width
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar
}

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

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

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

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

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

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

.col {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.col-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none
}

.col-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.col-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

@media (min-width:576px) {
    .col-sm {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }
    .col-sm-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }
    .col-sm-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }
    .col-sm-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-sm-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-sm-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .col-sm-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }
    .col-sm-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-sm-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }
    .col-sm-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
    .col-sm-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-sm-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }
    .col-sm-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }
    .col-sm-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1
    }
    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }
    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }
    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }
    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }
    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5
    }
    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6
    }
    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7
    }
    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8
    }
    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9
    }
    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10
    }
    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11
    }
    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12
    }
    .offset-sm-0 {
        margin-left: 0
    }
    .offset-sm-1 {
        margin-left: 8.33333%
    }
    .offset-sm-2 {
        margin-left: 16.66667%
    }
    .offset-sm-3 {
        margin-left: 25%
    }
    .offset-sm-4 {
        margin-left: 33.33333%
    }
    .offset-sm-5 {
        margin-left: 41.66667%
    }
    .offset-sm-6 {
        margin-left: 50%
    }
    .offset-sm-7 {
        margin-left: 58.33333%
    }
    .offset-sm-8 {
        margin-left: 66.66667%
    }
    .offset-sm-9 {
        margin-left: 75%
    }
    .offset-sm-10 {
        margin-left: 83.33333%
    }
    .offset-sm-11 {
        margin-left: 91.66667%
    }
}

@media (min-width:768px) {
    .col-md {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }
    .col-md-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }
    .col-md-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }
    .col-md-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-md-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-md-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .col-md-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }
    .col-md-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-md-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }
    .col-md-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
    .col-md-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-md-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }
    .col-md-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }
    .col-md-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1
    }
    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }
    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }
    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }
    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }
    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5
    }
    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6
    }
    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7
    }
    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8
    }
    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9
    }
    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10
    }
    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11
    }
    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12
    }
    .offset-md-0 {
        margin-left: 0
    }
    .offset-md-1 {
        margin-left: 8.33333%
    }
    .offset-md-2 {
        margin-left: 16.66667%
    }
    .offset-md-3 {
        margin-left: 25%
    }
    .offset-md-4 {
        margin-left: 33.33333%
    }
    .offset-md-5 {
        margin-left: 41.66667%
    }
    .offset-md-6 {
        margin-left: 50%
    }
    .offset-md-7 {
        margin-left: 58.33333%
    }
    .offset-md-8 {
        margin-left: 66.66667%
    }
    .offset-md-9 {
        margin-left: 75%
    }
    .offset-md-10 {
        margin-left: 83.33333%
    }
    .offset-md-11 {
        margin-left: 91.66667%
    }
}

@media (min-width:992px) {
    .col-lg {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }
    .col-lg-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }
    .col-lg-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }
    .col-lg-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-lg-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-lg-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .col-lg-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }
    .col-lg-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-lg-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }
    .col-lg-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
    .col-lg-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-lg-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }
    .col-lg-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }
    .col-lg-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1
    }
    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }
    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }
    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }
    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }
    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5
    }
    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6
    }
    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7
    }
    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8
    }
    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9
    }
    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10
    }
    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11
    }
    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12
    }
    .offset-lg-0 {
        margin-left: 0
    }
    .offset-lg-1 {
        margin-left: 8.33333%
    }
    .offset-lg-2 {
        margin-left: 16.66667%
    }
    .offset-lg-3 {
        margin-left: 25%
    }
    .offset-lg-4 {
        margin-left: 33.33333%
    }
    .offset-lg-5 {
        margin-left: 41.66667%
    }
    .offset-lg-6 {
        margin-left: 50%
    }
    .offset-lg-7 {
        margin-left: 58.33333%
    }
    .offset-lg-8 {
        margin-left: 66.66667%
    }
    .offset-lg-9 {
        margin-left: 75%
    }
    .offset-lg-10 {
        margin-left: 83.33333%
    }
    .offset-lg-11 {
        margin-left: 91.66667%
    }
}

@media (min-width:1200px) {
    .col-xl {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }
    .col-xl-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }
    .col-xl-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }
    .col-xl-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-xl-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-xl-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .col-xl-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }
    .col-xl-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-xl-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }
    .col-xl-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
    .col-xl-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-xl-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }
    .col-xl-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }
    .col-xl-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1
    }
    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }
    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }
    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }
    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4
    }
    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5
    }
    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6
    }
    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7
    }
    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8
    }
    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9
    }
    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10
    }
    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11
    }
    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12
    }
    .offset-xl-0 {
        margin-left: 0
    }
    .offset-xl-1 {
        margin-left: 8.33333%
    }
    .offset-xl-2 {
        margin-left: 16.66667%
    }
    .offset-xl-3 {
        margin-left: 25%
    }
    .offset-xl-4 {
        margin-left: 33.33333%
    }
    .offset-xl-5 {
        margin-left: 41.66667%
    }
    .offset-xl-6 {
        margin-left: 50%
    }
    .offset-xl-7 {
        margin-left: 58.33333%
    }
    .offset-xl-8 {
        margin-left: 66.66667%
    }
    .offset-xl-9 {
        margin-left: 75%
    }
    .offset-xl-10 {
        margin-left: 83.33333%
    }
    .offset-xl-11 {
        margin-left: 91.66667%
    }
}

.flex-row {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: normal!important;
    -webkit-flex-direction: row!important;
    -ms-flex-direction: row!important;
    flex-direction: row!important
}

.flex-column {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -webkit-flex-direction: column!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important
}

.flex-row-reverse {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: reverse!important;
    -webkit-flex-direction: row-reverse!important;
    -ms-flex-direction: row-reverse!important;
    flex-direction: row-reverse!important
}

.flex-column-reverse {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: reverse!important;
    -webkit-flex-direction: column-reverse!important;
    -ms-flex-direction: column-reverse!important;
    flex-direction: column-reverse!important
}

.flex-wrap {
    -webkit-flex-wrap: wrap!important;
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important
}

.flex-nowrap {
    -webkit-flex-wrap: nowrap!important;
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap!important
}

.flex-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse!important;
    -ms-flex-wrap: wrap-reverse!important;
    flex-wrap: wrap-reverse!important
}

.justify-content-start {
    -webkit-box-pack: start!important;
    -webkit-justify-content: flex-start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start!important
}

.justify-content-end {
    -webkit-box-pack: end!important;
    -webkit-justify-content: flex-end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end!important
}

.justify-content-center {
    -webkit-box-pack: center!important;
    -webkit-justify-content: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important
}

.justify-content-between {
    -webkit-box-pack: justify!important;
    -webkit-justify-content: space-between!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important
}

.justify-content-around {
    -webkit-justify-content: space-around!important;
    -ms-flex-pack: distribute!important;
    justify-content: space-around!important
}

.align-items-start {
    -webkit-box-align: start!important;
    -webkit-align-items: flex-start!important;
    -ms-flex-align: start!important;
    align-items: flex-start!important
}

.align-items-end {
    -webkit-box-align: end!important;
    -webkit-align-items: flex-end!important;
    -ms-flex-align: end!important;
    align-items: flex-end!important
}

.align-items-center {
    -webkit-box-align: center!important;
    -webkit-align-items: center!important;
    -ms-flex-align: center!important;
    align-items: center!important
}

.align-items-baseline {
    -webkit-box-align: baseline!important;
    -webkit-align-items: baseline!important;
    -ms-flex-align: baseline!important;
    align-items: baseline!important
}

.align-items-stretch {
    -webkit-box-align: stretch!important;
    -webkit-align-items: stretch!important;
    -ms-flex-align: stretch!important;
    align-items: stretch!important
}

.align-content-start {
    -webkit-align-content: flex-start!important;
    -ms-flex-line-pack: start!important;
    align-content: flex-start!important
}

.align-content-end {
    -webkit-align-content: flex-end!important;
    -ms-flex-line-pack: end!important;
    align-content: flex-end!important
}

.align-content-center {
    -webkit-align-content: center!important;
    -ms-flex-line-pack: center!important;
    align-content: center!important
}

.align-content-between {
    -webkit-align-content: space-between!important;
    -ms-flex-line-pack: justify!important;
    align-content: space-between!important
}

.align-content-around {
    -webkit-align-content: space-around!important;
    -ms-flex-line-pack: distribute!important;
    align-content: space-around!important
}

.align-content-stretch {
    -webkit-align-content: stretch!important;
    -ms-flex-line-pack: stretch!important;
    align-content: stretch!important
}

.align-self-auto {
    -webkit-align-self: auto!important;
    -ms-flex-item-align: auto!important;
    -ms-grid-row-align: auto!important;
    align-self: auto!important
}

.align-self-start {
    -webkit-align-self: flex-start!important;
    -ms-flex-item-align: start!important;
    align-self: flex-start!important
}

.align-self-end {
    -webkit-align-self: flex-end!important;
    -ms-flex-item-align: end!important;
    align-self: flex-end!important
}

.align-self-center {
    -webkit-align-self: center!important;
    -ms-flex-item-align: center!important;
    -ms-grid-row-align: center!important;
    align-self: center!important
}

.align-self-baseline {
    -webkit-align-self: baseline!important;
    -ms-flex-item-align: baseline!important;
    align-self: baseline!important
}

.align-self-stretch {
    -webkit-align-self: stretch!important;
    -ms-flex-item-align: stretch!important;
    -ms-grid-row-align: stretch!important;
    align-self: stretch!important
}

@media (min-width:576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: row!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important
    }
    .flex-sm-column {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: column!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important
    }
    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: row-reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important
    }
    .flex-sm-column-reverse {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: column-reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important
    }
    .flex-sm-wrap {
        -webkit-flex-wrap: wrap!important;
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important
    }
    .flex-sm-nowrap {
        -webkit-flex-wrap: nowrap!important;
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important
    }
    .flex-sm-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse!important;
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important
    }
    .justify-content-sm-start {
        -webkit-box-pack: start!important;
        -webkit-justify-content: flex-start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important
    }
    .justify-content-sm-end {
        -webkit-box-pack: end!important;
        -webkit-justify-content: flex-end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important
    }
    .justify-content-sm-center {
        -webkit-box-pack: center!important;
        -webkit-justify-content: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important
    }
    .justify-content-sm-between {
        -webkit-box-pack: justify!important;
        -webkit-justify-content: space-between!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important
    }
    .justify-content-sm-around {
        -webkit-justify-content: space-around!important;
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important
    }
    .align-items-sm-start {
        -webkit-box-align: start!important;
        -webkit-align-items: flex-start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important
    }
    .align-items-sm-end {
        -webkit-box-align: end!important;
        -webkit-align-items: flex-end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important
    }
    .align-items-sm-center {
        -webkit-box-align: center!important;
        -webkit-align-items: center!important;
        -ms-flex-align: center!important;
        align-items: center!important
    }
    .align-items-sm-baseline {
        -webkit-box-align: baseline!important;
        -webkit-align-items: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important
    }
    .align-items-sm-stretch {
        -webkit-box-align: stretch!important;
        -webkit-align-items: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important
    }
    .align-content-sm-start {
        -webkit-align-content: flex-start!important;
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important
    }
    .align-content-sm-end {
        -webkit-align-content: flex-end!important;
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important
    }
    .align-content-sm-center {
        -webkit-align-content: center!important;
        -ms-flex-line-pack: center!important;
        align-content: center!important
    }
    .align-content-sm-between {
        -webkit-align-content: space-between!important;
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important
    }
    .align-content-sm-around {
        -webkit-align-content: space-around!important;
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important
    }
    .align-content-sm-stretch {
        -webkit-align-content: stretch!important;
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important
    }
    .align-self-sm-auto {
        -webkit-align-self: auto!important;
        -ms-flex-item-align: auto!important;
        -ms-grid-row-align: auto!important;
        align-self: auto!important
    }
    .align-self-sm-start {
        -webkit-align-self: flex-start!important;
        -ms-flex-item-align: start!important;
        align-self: flex-start!important
    }
    .align-self-sm-end {
        -webkit-align-self: flex-end!important;
        -ms-flex-item-align: end!important;
        align-self: flex-end!important
    }
    .align-self-sm-center {
        -webkit-align-self: center!important;
        -ms-flex-item-align: center!important;
        -ms-grid-row-align: center!important;
        align-self: center!important
    }
    .align-self-sm-baseline {
        -webkit-align-self: baseline!important;
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important
    }
    .align-self-sm-stretch {
        -webkit-align-self: stretch!important;
        -ms-flex-item-align: stretch!important;
        -ms-grid-row-align: stretch!important;
        align-self: stretch!important
    }
}

@media (min-width:768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: row!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important
    }
    .flex-md-column {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: column!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important
    }
    .flex-md-row-reverse {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: row-reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important
    }
    .flex-md-column-reverse {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: column-reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important
    }
    .flex-md-wrap {
        -webkit-flex-wrap: wrap!important;
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important
    }
    .flex-md-nowrap {
        -webkit-flex-wrap: nowrap!important;
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important
    }
    .flex-md-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse!important;
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important
    }
    .justify-content-md-start {
        -webkit-box-pack: start!important;
        -webkit-justify-content: flex-start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important
    }
    .justify-content-md-end {
        -webkit-box-pack: end!important;
        -webkit-justify-content: flex-end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important
    }
    .justify-content-md-center {
        -webkit-box-pack: center!important;
        -webkit-justify-content: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important
    }
    .justify-content-md-between {
        -webkit-box-pack: justify!important;
        -webkit-justify-content: space-between!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important
    }
    .justify-content-md-around {
        -webkit-justify-content: space-around!important;
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important
    }
    .align-items-md-start {
        -webkit-box-align: start!important;
        -webkit-align-items: flex-start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important
    }
    .align-items-md-end {
        -webkit-box-align: end!important;
        -webkit-align-items: flex-end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important
    }
    .align-items-md-center {
        -webkit-box-align: center!important;
        -webkit-align-items: center!important;
        -ms-flex-align: center!important;
        align-items: center!important
    }
    .align-items-md-baseline {
        -webkit-box-align: baseline!important;
        -webkit-align-items: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important
    }
    .align-items-md-stretch {
        -webkit-box-align: stretch!important;
        -webkit-align-items: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important
    }
    .align-content-md-start {
        -webkit-align-content: flex-start!important;
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important
    }
    .align-content-md-end {
        -webkit-align-content: flex-end!important;
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important
    }
    .align-content-md-center {
        -webkit-align-content: center!important;
        -ms-flex-line-pack: center!important;
        align-content: center!important
    }
    .align-content-md-between {
        -webkit-align-content: space-between!important;
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important
    }
    .align-content-md-around {
        -webkit-align-content: space-around!important;
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important
    }
    .align-content-md-stretch {
        -webkit-align-content: stretch!important;
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important
    }
    .align-self-md-auto {
        -webkit-align-self: auto!important;
        -ms-flex-item-align: auto!important;
        -ms-grid-row-align: auto!important;
        align-self: auto!important
    }
    .align-self-md-start {
        -webkit-align-self: flex-start!important;
        -ms-flex-item-align: start!important;
        align-self: flex-start!important
    }
    .align-self-md-end {
        -webkit-align-self: flex-end!important;
        -ms-flex-item-align: end!important;
        align-self: flex-end!important
    }
    .align-self-md-center {
        -webkit-align-self: center!important;
        -ms-flex-item-align: center!important;
        -ms-grid-row-align: center!important;
        align-self: center!important
    }
    .align-self-md-baseline {
        -webkit-align-self: baseline!important;
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important
    }
    .align-self-md-stretch {
        -webkit-align-self: stretch!important;
        -ms-flex-item-align: stretch!important;
        -ms-grid-row-align: stretch!important;
        align-self: stretch!important
    }
}

@media (min-width:992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: row!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important
    }
    .flex-lg-column {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: column!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important
    }
    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: row-reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important
    }
    .flex-lg-column-reverse {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: column-reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important
    }
    .flex-lg-wrap {
        -webkit-flex-wrap: wrap!important;
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important
    }
    .flex-lg-nowrap {
        -webkit-flex-wrap: nowrap!important;
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important
    }
    .flex-lg-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse!important;
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important
    }
    .justify-content-lg-start {
        -webkit-box-pack: start!important;
        -webkit-justify-content: flex-start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important
    }
    .justify-content-lg-end {
        -webkit-box-pack: end!important;
        -webkit-justify-content: flex-end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important
    }
    .justify-content-lg-center {
        -webkit-box-pack: center!important;
        -webkit-justify-content: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important
    }
    .justify-content-lg-between {
        -webkit-box-pack: justify!important;
        -webkit-justify-content: space-between!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important
    }
    .justify-content-lg-around {
        -webkit-justify-content: space-around!important;
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important
    }
    .align-items-lg-start {
        -webkit-box-align: start!important;
        -webkit-align-items: flex-start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important
    }
    .align-items-lg-end {
        -webkit-box-align: end!important;
        -webkit-align-items: flex-end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important
    }
    .align-items-lg-center {
        -webkit-box-align: center!important;
        -webkit-align-items: center!important;
        -ms-flex-align: center!important;
        align-items: center!important
    }
    .align-items-lg-baseline {
        -webkit-box-align: baseline!important;
        -webkit-align-items: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important
    }
    .align-items-lg-stretch {
        -webkit-box-align: stretch!important;
        -webkit-align-items: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important
    }
    .align-content-lg-start {
        -webkit-align-content: flex-start!important;
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important
    }
    .align-content-lg-end {
        -webkit-align-content: flex-end!important;
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important
    }
    .align-content-lg-center {
        -webkit-align-content: center!important;
        -ms-flex-line-pack: center!important;
        align-content: center!important
    }
    .align-content-lg-between {
        -webkit-align-content: space-between!important;
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important
    }
    .align-content-lg-around {
        -webkit-align-content: space-around!important;
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important
    }
    .align-content-lg-stretch {
        -webkit-align-content: stretch!important;
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important
    }
    .align-self-lg-auto {
        -webkit-align-self: auto!important;
        -ms-flex-item-align: auto!important;
        -ms-grid-row-align: auto!important;
        align-self: auto!important
    }
    .align-self-lg-start {
        -webkit-align-self: flex-start!important;
        -ms-flex-item-align: start!important;
        align-self: flex-start!important
    }
    .align-self-lg-end {
        -webkit-align-self: flex-end!important;
        -ms-flex-item-align: end!important;
        align-self: flex-end!important
    }
    .align-self-lg-center {
        -webkit-align-self: center!important;
        -ms-flex-item-align: center!important;
        -ms-grid-row-align: center!important;
        align-self: center!important
    }
    .align-self-lg-baseline {
        -webkit-align-self: baseline!important;
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important
    }
    .align-self-lg-stretch {
        -webkit-align-self: stretch!important;
        -ms-flex-item-align: stretch!important;
        -ms-grid-row-align: stretch!important;
        align-self: stretch!important
    }
}

@media (min-width:1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: row!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important
    }
    .flex-xl-column {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: column!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important
    }
    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: row-reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important
    }
    .flex-xl-column-reverse {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: column-reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important
    }
    .flex-xl-wrap {
        -webkit-flex-wrap: wrap!important;
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important
    }
    .flex-xl-nowrap {
        -webkit-flex-wrap: nowrap!important;
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important
    }
    .flex-xl-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse!important;
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important
    }
    .justify-content-xl-start {
        -webkit-box-pack: start!important;
        -webkit-justify-content: flex-start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important
    }
    .justify-content-xl-end {
        -webkit-box-pack: end!important;
        -webkit-justify-content: flex-end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important
    }
    .justify-content-xl-center {
        -webkit-box-pack: center!important;
        -webkit-justify-content: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important
    }
    .justify-content-xl-between {
        -webkit-box-pack: justify!important;
        -webkit-justify-content: space-between!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important
    }
    .justify-content-xl-around {
        -webkit-justify-content: space-around!important;
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important
    }
    .align-items-xl-start {
        -webkit-box-align: start!important;
        -webkit-align-items: flex-start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important
    }
    .align-items-xl-end {
        -webkit-box-align: end!important;
        -webkit-align-items: flex-end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important
    }
    .align-items-xl-center {
        -webkit-box-align: center!important;
        -webkit-align-items: center!important;
        -ms-flex-align: center!important;
        align-items: center!important
    }
    .align-items-xl-baseline {
        -webkit-box-align: baseline!important;
        -webkit-align-items: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important
    }
    .align-items-xl-stretch {
        -webkit-box-align: stretch!important;
        -webkit-align-items: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important
    }
    .align-content-xl-start {
        -webkit-align-content: flex-start!important;
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important
    }
    .align-content-xl-end {
        -webkit-align-content: flex-end!important;
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important
    }
    .align-content-xl-center {
        -webkit-align-content: center!important;
        -ms-flex-line-pack: center!important;
        align-content: center!important
    }
    .align-content-xl-between {
        -webkit-align-content: space-between!important;
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important
    }
    .align-content-xl-around {
        -webkit-align-content: space-around!important;
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important
    }
    .align-content-xl-stretch {
        -webkit-align-content: stretch!important;
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important
    }
    .align-self-xl-auto {
        -webkit-align-self: auto!important;
        -ms-flex-item-align: auto!important;
        -ms-grid-row-align: auto!important;
        align-self: auto!important
    }
    .align-self-xl-start {
        -webkit-align-self: flex-start!important;
        -ms-flex-item-align: start!important;
        align-self: flex-start!important
    }
    .align-self-xl-end {
        -webkit-align-self: flex-end!important;
        -ms-flex-item-align: end!important;
        align-self: flex-end!important
    }
    .align-self-xl-center {
        -webkit-align-self: center!important;
        -ms-flex-item-align: center!important;
        -ms-grid-row-align: center!important;
        align-self: center!important
    }
    .align-self-xl-baseline {
        -webkit-align-self: baseline!important;
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important
    }
    .align-self-xl-stretch {
        -webkit-align-self: stretch!important;
        -ms-flex-item-align: stretch!important;
        -ms-grid-row-align: stretch!important;
        align-self: stretch!important
    }
}

.flex-row {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: normal!important;
    -webkit-flex-direction: row!important;
    -ms-flex-direction: row!important;
    flex-direction: row!important
}

.flex-column {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -webkit-flex-direction: column!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important
}

.flex-row-reverse {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: reverse!important;
    -webkit-flex-direction: row-reverse!important;
    -ms-flex-direction: row-reverse!important;
    flex-direction: row-reverse!important
}

.flex-column-reverse {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: reverse!important;
    -webkit-flex-direction: column-reverse!important;
    -ms-flex-direction: column-reverse!important;
    flex-direction: column-reverse!important
}

.flex-wrap {
    -webkit-flex-wrap: wrap!important;
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important
}

.flex-nowrap {
    -webkit-flex-wrap: nowrap!important;
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap!important
}

.flex-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse!important;
    -ms-flex-wrap: wrap-reverse!important;
    flex-wrap: wrap-reverse!important
}

.justify-content-start {
    -webkit-box-pack: start!important;
    -webkit-justify-content: flex-start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start!important
}

.justify-content-end {
    -webkit-box-pack: end!important;
    -webkit-justify-content: flex-end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end!important
}

.justify-content-center {
    -webkit-box-pack: center!important;
    -webkit-justify-content: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important
}

.justify-content-between {
    -webkit-box-pack: justify!important;
    -webkit-justify-content: space-between!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important
}

.justify-content-around {
    -webkit-justify-content: space-around!important;
    -ms-flex-pack: distribute!important;
    justify-content: space-around!important
}

.align-items-start {
    -webkit-box-align: start!important;
    -webkit-align-items: flex-start!important;
    -ms-flex-align: start!important;
    align-items: flex-start!important
}

.align-items-end {
    -webkit-box-align: end!important;
    -webkit-align-items: flex-end!important;
    -ms-flex-align: end!important;
    align-items: flex-end!important
}

.align-items-center {
    -webkit-box-align: center!important;
    -webkit-align-items: center!important;
    -ms-flex-align: center!important;
    align-items: center!important
}

.align-items-baseline {
    -webkit-box-align: baseline!important;
    -webkit-align-items: baseline!important;
    -ms-flex-align: baseline!important;
    align-items: baseline!important
}

.align-items-stretch {
    -webkit-box-align: stretch!important;
    -webkit-align-items: stretch!important;
    -ms-flex-align: stretch!important;
    align-items: stretch!important
}

.align-content-start {
    -webkit-align-content: flex-start!important;
    -ms-flex-line-pack: start!important;
    align-content: flex-start!important
}

.align-content-end {
    -webkit-align-content: flex-end!important;
    -ms-flex-line-pack: end!important;
    align-content: flex-end!important
}

.align-content-center {
    -webkit-align-content: center!important;
    -ms-flex-line-pack: center!important;
    align-content: center!important
}

.align-content-between {
    -webkit-align-content: space-between!important;
    -ms-flex-line-pack: justify!important;
    align-content: space-between!important
}

.align-content-around {
    -webkit-align-content: space-around!important;
    -ms-flex-line-pack: distribute!important;
    align-content: space-around!important
}

.align-content-stretch {
    -webkit-align-content: stretch!important;
    -ms-flex-line-pack: stretch!important;
    align-content: stretch!important
}

.align-self-auto {
    -webkit-align-self: auto!important;
    -ms-flex-item-align: auto!important;
    -ms-grid-row-align: auto!important;
    align-self: auto!important
}

.align-self-start {
    -webkit-align-self: flex-start!important;
    -ms-flex-item-align: start!important;
    align-self: flex-start!important
}

.align-self-end {
    -webkit-align-self: flex-end!important;
    -ms-flex-item-align: end!important;
    align-self: flex-end!important
}

.align-self-center {
    -webkit-align-self: center!important;
    -ms-flex-item-align: center!important;
    -ms-grid-row-align: center!important;
    align-self: center!important
}

.align-self-baseline {
    -webkit-align-self: baseline!important;
    -ms-flex-item-align: baseline!important;
    align-self: baseline!important
}

.align-self-stretch {
    -webkit-align-self: stretch!important;
    -ms-flex-item-align: stretch!important;
    -ms-grid-row-align: stretch!important;
    align-self: stretch!important
}

@media (min-width:576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: row!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important
    }
    .flex-sm-column {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: column!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important
    }
    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: row-reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important
    }
    .flex-sm-column-reverse {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: column-reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important
    }
    .flex-sm-wrap {
        -webkit-flex-wrap: wrap!important;
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important
    }
    .flex-sm-nowrap {
        -webkit-flex-wrap: nowrap!important;
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important
    }
    .flex-sm-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse!important;
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important
    }
    .justify-content-sm-start {
        -webkit-box-pack: start!important;
        -webkit-justify-content: flex-start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important
    }
    .justify-content-sm-end {
        -webkit-box-pack: end!important;
        -webkit-justify-content: flex-end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important
    }
    .justify-content-sm-center {
        -webkit-box-pack: center!important;
        -webkit-justify-content: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important
    }
    .justify-content-sm-between {
        -webkit-box-pack: justify!important;
        -webkit-justify-content: space-between!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important
    }
    .justify-content-sm-around {
        -webkit-justify-content: space-around!important;
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important
    }
    .align-items-sm-start {
        -webkit-box-align: start!important;
        -webkit-align-items: flex-start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important
    }
    .align-items-sm-end {
        -webkit-box-align: end!important;
        -webkit-align-items: flex-end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important
    }
    .align-items-sm-center {
        -webkit-box-align: center!important;
        -webkit-align-items: center!important;
        -ms-flex-align: center!important;
        align-items: center!important
    }
    .align-items-sm-baseline {
        -webkit-box-align: baseline!important;
        -webkit-align-items: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important
    }
    .align-items-sm-stretch {
        -webkit-box-align: stretch!important;
        -webkit-align-items: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important
    }
    .align-content-sm-start {
        -webkit-align-content: flex-start!important;
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important
    }
    .align-content-sm-end {
        -webkit-align-content: flex-end!important;
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important
    }
    .align-content-sm-center {
        -webkit-align-content: center!important;
        -ms-flex-line-pack: center!important;
        align-content: center!important
    }
    .align-content-sm-between {
        -webkit-align-content: space-between!important;
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important
    }
    .align-content-sm-around {
        -webkit-align-content: space-around!important;
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important
    }
    .align-content-sm-stretch {
        -webkit-align-content: stretch!important;
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important
    }
    .align-self-sm-auto {
        -webkit-align-self: auto!important;
        -ms-flex-item-align: auto!important;
        -ms-grid-row-align: auto!important;
        align-self: auto!important
    }
    .align-self-sm-start {
        -webkit-align-self: flex-start!important;
        -ms-flex-item-align: start!important;
        align-self: flex-start!important
    }
    .align-self-sm-end {
        -webkit-align-self: flex-end!important;
        -ms-flex-item-align: end!important;
        align-self: flex-end!important
    }
    .align-self-sm-center {
        -webkit-align-self: center!important;
        -ms-flex-item-align: center!important;
        -ms-grid-row-align: center!important;
        align-self: center!important
    }
    .align-self-sm-baseline {
        -webkit-align-self: baseline!important;
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important
    }
    .align-self-sm-stretch {
        -webkit-align-self: stretch!important;
        -ms-flex-item-align: stretch!important;
        -ms-grid-row-align: stretch!important;
        align-self: stretch!important
    }
}

@media (min-width:768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: row!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important
    }
    .flex-md-column {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: column!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important
    }
    .flex-md-row-reverse {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: row-reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important
    }
    .flex-md-column-reverse {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: column-reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important
    }
    .flex-md-wrap {
        -webkit-flex-wrap: wrap!important;
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important
    }
    .flex-md-nowrap {
        -webkit-flex-wrap: nowrap!important;
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important
    }
    .flex-md-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse!important;
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important
    }
    .justify-content-md-start {
        -webkit-box-pack: start!important;
        -webkit-justify-content: flex-start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important
    }
    .justify-content-md-end {
        -webkit-box-pack: end!important;
        -webkit-justify-content: flex-end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important
    }
    .justify-content-md-center {
        -webkit-box-pack: center!important;
        -webkit-justify-content: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important
    }
    .justify-content-md-between {
        -webkit-box-pack: justify!important;
        -webkit-justify-content: space-between!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important
    }
    .justify-content-md-around {
        -webkit-justify-content: space-around!important;
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important
    }
    .align-items-md-start {
        -webkit-box-align: start!important;
        -webkit-align-items: flex-start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important
    }
    .align-items-md-end {
        -webkit-box-align: end!important;
        -webkit-align-items: flex-end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important
    }
    .align-items-md-center {
        -webkit-box-align: center!important;
        -webkit-align-items: center!important;
        -ms-flex-align: center!important;
        align-items: center!important
    }
    .align-items-md-baseline {
        -webkit-box-align: baseline!important;
        -webkit-align-items: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important
    }
    .align-items-md-stretch {
        -webkit-box-align: stretch!important;
        -webkit-align-items: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important
    }
    .align-content-md-start {
        -webkit-align-content: flex-start!important;
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important
    }
    .align-content-md-end {
        -webkit-align-content: flex-end!important;
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important
    }
    .align-content-md-center {
        -webkit-align-content: center!important;
        -ms-flex-line-pack: center!important;
        align-content: center!important
    }
    .align-content-md-between {
        -webkit-align-content: space-between!important;
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important
    }
    .align-content-md-around {
        -webkit-align-content: space-around!important;
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important
    }
    .align-content-md-stretch {
        -webkit-align-content: stretch!important;
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important
    }
    .align-self-md-auto {
        -webkit-align-self: auto!important;
        -ms-flex-item-align: auto!important;
        -ms-grid-row-align: auto!important;
        align-self: auto!important
    }
    .align-self-md-start {
        -webkit-align-self: flex-start!important;
        -ms-flex-item-align: start!important;
        align-self: flex-start!important
    }
    .align-self-md-end {
        -webkit-align-self: flex-end!important;
        -ms-flex-item-align: end!important;
        align-self: flex-end!important
    }
    .align-self-md-center {
        -webkit-align-self: center!important;
        -ms-flex-item-align: center!important;
        -ms-grid-row-align: center!important;
        align-self: center!important
    }
    .align-self-md-baseline {
        -webkit-align-self: baseline!important;
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important
    }
    .align-self-md-stretch {
        -webkit-align-self: stretch!important;
        -ms-flex-item-align: stretch!important;
        -ms-grid-row-align: stretch!important;
        align-self: stretch!important
    }
}

@media (min-width:992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: row!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important
    }
    .flex-lg-column {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: column!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important
    }
    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: row-reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important
    }
    .flex-lg-column-reverse {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: column-reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important
    }
    .flex-lg-wrap {
        -webkit-flex-wrap: wrap!important;
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important
    }
    .flex-lg-nowrap {
        -webkit-flex-wrap: nowrap!important;
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important
    }
    .flex-lg-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse!important;
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important
    }
    .justify-content-lg-start {
        -webkit-box-pack: start!important;
        -webkit-justify-content: flex-start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important
    }
    .justify-content-lg-end {
        -webkit-box-pack: end!important;
        -webkit-justify-content: flex-end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important
    }
    .justify-content-lg-center {
        -webkit-box-pack: center!important;
        -webkit-justify-content: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important
    }
    .justify-content-lg-between {
        -webkit-box-pack: justify!important;
        -webkit-justify-content: space-between!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important
    }
    .justify-content-lg-around {
        -webkit-justify-content: space-around!important;
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important
    }
    .align-items-lg-start {
        -webkit-box-align: start!important;
        -webkit-align-items: flex-start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important
    }
    .align-items-lg-end {
        -webkit-box-align: end!important;
        -webkit-align-items: flex-end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important
    }
    .align-items-lg-center {
        -webkit-box-align: center!important;
        -webkit-align-items: center!important;
        -ms-flex-align: center!important;
        align-items: center!important
    }
    .align-items-lg-baseline {
        -webkit-box-align: baseline!important;
        -webkit-align-items: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important
    }
    .align-items-lg-stretch {
        -webkit-box-align: stretch!important;
        -webkit-align-items: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important
    }
    .align-content-lg-start {
        -webkit-align-content: flex-start!important;
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important
    }
    .align-content-lg-end {
        -webkit-align-content: flex-end!important;
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important
    }
    .align-content-lg-center {
        -webkit-align-content: center!important;
        -ms-flex-line-pack: center!important;
        align-content: center!important
    }
    .align-content-lg-between {
        -webkit-align-content: space-between!important;
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important
    }
    .align-content-lg-around {
        -webkit-align-content: space-around!important;
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important
    }
    .align-content-lg-stretch {
        -webkit-align-content: stretch!important;
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important
    }
    .align-self-lg-auto {
        -webkit-align-self: auto!important;
        -ms-flex-item-align: auto!important;
        -ms-grid-row-align: auto!important;
        align-self: auto!important
    }
    .align-self-lg-start {
        -webkit-align-self: flex-start!important;
        -ms-flex-item-align: start!important;
        align-self: flex-start!important
    }
    .align-self-lg-end {
        -webkit-align-self: flex-end!important;
        -ms-flex-item-align: end!important;
        align-self: flex-end!important
    }
    .align-self-lg-center {
        -webkit-align-self: center!important;
        -ms-flex-item-align: center!important;
        -ms-grid-row-align: center!important;
        align-self: center!important
    }
    .align-self-lg-baseline {
        -webkit-align-self: baseline!important;
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important
    }
    .align-self-lg-stretch {
        -webkit-align-self: stretch!important;
        -ms-flex-item-align: stretch!important;
        -ms-grid-row-align: stretch!important;
        align-self: stretch!important
    }
}

@media (min-width:1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: row!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important
    }
    .flex-xl-column {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -webkit-flex-direction: column!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important
    }
    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: row-reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important
    }
    .flex-xl-column-reverse {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -webkit-flex-direction: column-reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important
    }
    .flex-xl-wrap {
        -webkit-flex-wrap: wrap!important;
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important
    }
    .flex-xl-nowrap {
        -webkit-flex-wrap: nowrap!important;
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important
    }
    .flex-xl-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse!important;
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important
    }
    .justify-content-xl-start {
        -webkit-box-pack: start!important;
        -webkit-justify-content: flex-start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important
    }
    .justify-content-xl-end {
        -webkit-box-pack: end!important;
        -webkit-justify-content: flex-end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important
    }
    .justify-content-xl-center {
        -webkit-box-pack: center!important;
        -webkit-justify-content: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important
    }
    .justify-content-xl-between {
        -webkit-box-pack: justify!important;
        -webkit-justify-content: space-between!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important
    }
    .justify-content-xl-around {
        -webkit-justify-content: space-around!important;
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important
    }
    .align-items-xl-start {
        -webkit-box-align: start!important;
        -webkit-align-items: flex-start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important
    }
    .align-items-xl-end {
        -webkit-box-align: end!important;
        -webkit-align-items: flex-end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important
    }
    .align-items-xl-center {
        -webkit-box-align: center!important;
        -webkit-align-items: center!important;
        -ms-flex-align: center!important;
        align-items: center!important
    }
    .align-items-xl-baseline {
        -webkit-box-align: baseline!important;
        -webkit-align-items: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important
    }
    .align-items-xl-stretch {
        -webkit-box-align: stretch!important;
        -webkit-align-items: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important
    }
    .align-content-xl-start {
        -webkit-align-content: flex-start!important;
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important
    }
    .align-content-xl-end {
        -webkit-align-content: flex-end!important;
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important
    }
    .align-content-xl-center {
        -webkit-align-content: center!important;
        -ms-flex-line-pack: center!important;
        align-content: center!important
    }
    .align-content-xl-between {
        -webkit-align-content: space-between!important;
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important
    }
    .align-content-xl-around {
        -webkit-align-content: space-around!important;
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important
    }
    .align-content-xl-stretch {
        -webkit-align-content: stretch!important;
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important
    }
    .align-self-xl-auto {
        -webkit-align-self: auto!important;
        -ms-flex-item-align: auto!important;
        -ms-grid-row-align: auto!important;
        align-self: auto!important
    }
    .align-self-xl-start {
        -webkit-align-self: flex-start!important;
        -ms-flex-item-align: start!important;
        align-self: flex-start!important
    }
    .align-self-xl-end {
        -webkit-align-self: flex-end!important;
        -ms-flex-item-align: end!important;
        align-self: flex-end!important
    }
    .align-self-xl-center {
        -webkit-align-self: center!important;
        -ms-flex-item-align: center!important;
        -ms-grid-row-align: center!important;
        align-self: center!important
    }
    .align-self-xl-baseline {
        -webkit-align-self: baseline!important;
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important
    }
    .align-self-xl-stretch {
        -webkit-align-self: stretch!important;
        -ms-flex-item-align: stretch!important;
        -ms-grid-row-align: stretch!important;
        align-self: stretch!important
    }
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-200px)
    }
    100% {
        transform: translateY(0px)
    }
}

.header-fixed .container {
    position: static;
    max-width: 1920px;
    padding-right: 75px;
    padding-left: 75px;
    width: 100%;
}

.header-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    height: auto;
    float: none;
    box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.23);
    padding: 20px 0 12px;
    visibility: hidden;
}

.header-fix {
    animation: smoothScroll 0.6s forwards;
    visibility: visible;
}

.header-fixed .logo {
    line-height: 24px;
}

.header-fixed__head {
    color: #222222;
    font-family: Rubik;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #002C28;
}

.header-fixed__bottom {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
}

.header-fixed__top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.main-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

.hamburger {
    height: 24px;
    display: none;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    position: absolute;
    border-radius: 4px;
}

.hamburger-inner::after,
.hamburger-inner::before {
    content: "";
    display: block;
}

.hamburger-inner {
    width: 29px;
    height: 3px;
    background-color: #777;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.hamburger-inner::after,
.hamburger-inner::before {
    width: 29px;
    height: 3px;
    background-color: #777;
}

.main-list a {
    color: #505050;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.main-list li + li{
    margin-left: 18px;
}

.main-list a::before {
    content: '';
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background-color: #00C853;
    position: absolute;
    opacity: 0;
    transition: opacity .25s linear;
}

.main-list a:hover::before {
    opacity: 1;
    transition: opacity .25s linear;
}

.header-fixed .sub-nav {
    height: auto;
    padding: 0;
}

.header-fixed .sub-nav i {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.container {
    width: 96%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

header {
    width: 100%;
    float: left;
    height: 60px;
    position: relative;
    z-index: 2000
}

header .logo {
    font-family: Rubik, sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 24px;
    line-height: 60px;
    color: #00c853;
    float: left;
    text-transform: uppercase
}

header .slogan {
    font-family: Rubik, sans-serif;
    font-weight: 200;
    font-size: 1em;
    line-height: 20px;
    color: #00c853;
    float: left;
    clear: left;
    text-transform: uppercase
}

header .main-nav {
    width: 60%;
    margin: 0 20%;
    position: absolute;
    text-align: center;
    height: 20px;
    padding: 20px 0
}

header .main-nav li {
    display: inline-block;
    margin: 0 5px
}

header .main-nav a {
    line-height: 20px;
    font-size: 16px;
    color: #777;
    text-align: center
}

header .main-nav a:hover {
    color: #222
}

header .sub-nav {
    float: right;
    height: 20px;
    padding: 28px 0;
}

header .sub-nav li {
    display: inline-block;
    margin: 0 0 0 10px
}

header .sub-nav i {
    /*line-height: 20px;*/
    color: #ccc;
}

header .sub-nav i {
    font-size: 18px;
    transition: all .3s linear;
}


.f-page {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
}


.f-page__sidebar {
    width: 295px;
    flex-shrink: 0;
    margin-right: 25px;
    min-height: 800px;
}

.f-page__content {
    flex-grow: 1;
}

.f-tabs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    border-bottom: 4px solid #30a61d;
}

.animals-invert__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.animals-invert__item-img {
    flex-shrink: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.animals-invert__item-content {
    padding: 50px 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.animals-invert__item:nth-child(odd) .animals-invert__item-content, .animals-invert__item:nth-child(odd) .animals-invert__item-img {
    background-color: #EBEBEB
}

.animals-invert__item:nth-child(even) .animals-invert__item-content, .animals-invert__item:nth-child(even) .animals-invert__item-img {
    background-color: #fff;
}

.animals-invert__item:nth-child(even) {
    border: 2px solid #e7e7e7;
    border-radius: 10px;
}

.animals-invert__item .f-h2 {
    color: #202020;
}

.animals-invert__item .animals-invert__item-prehead{
    color: #202020;
    opacity: 0.7;
}

.animals-invert__item p {
    color: #202020;
}

.animals-invert__item-img img {
    width: 275px;
    /*height: 100%;*/

    display: block;
}

.animals-invert__item {
    margin-bottom: 25px;
}

.f-tab {
    color: #ffffff;
    font-family: Rubik;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #202020;
    text-align: center;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 12px 12px;
    flex-grow: 1;
    cursor: pointer;
}

.f-h2 {
    color: #ffffff;
    font-family: Rubik;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.animals-invert__item-prehead {
    opacity: 0.7;
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 700;
    display: block;
    
    margin-bottom: 15px;
}

.animals-invert__item-content p{
    /*color: #ffffff;*/
    font-family: "Open Sans";
    line-height: 1.5;
    font-size: 16px;
}

.f-tab + .f-tab {
    margin-left: 3px;
}

.f-accordion .drop {
    display: block;
    padding: 20px;
    background-color: #fff;
} 

.f-accordion a {
    display: block;
    background-color: #ebebeb;
    padding: 14px 20px;
    color: #202020;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 700;
    position: relative;
    
}

.f-accordion a.active::before {
    transform: rotate(225deg);
    top: 20px;
}

.f-form label {
    color: #272727;
    font-family: "Open Sans";
    font-size: 14px;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    
}

.f-form__input {
    display: none;
}

.f-form__input + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 2px solid #d8d8d8;
}

.f-form__input:checked + label::before {
    background-color: #30A61D;
    border-color: transparent;
}

.f-form__input:disabled + label {
    color: #868686;
}

.f-counter {
    display: none;
    
}

.f-page__content .animals {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
    float: none;
}

.f-page__content .item-animal--half {
    width: 100%;
    height: calc(50% - 30px);
}

.f-page__content .animals .row {
    width: 100%;
}

.f-page__content .item-animal {
    width: calc(33.333% - 30px);
    margin: 0;
    margin-bottom: 30px;
    margin: 0 15px 30px;
}

.f-page__content .item-animal--full {
    width: 100%;
}

.f-form__showmore {
    color: #30a61d;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    margin-top: 15px;
    display: block;
    cursor: pointer;
    
}

.f-form__showmore:hover {
    text-decoration: none;
    
}

.f-form__input:disabled + label::before {
    border-color: #d8d8d8;
}

.f-form__input:checked  + label {
    font-weight: 600;
}

.f-form__input:checked + label::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 12px;
    left: 7px;
    top: 3px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.f-form-row {
    margin-bottom: 15px;
}

.f-form-row:last-child {
    margin-bottom: 0;
    padding-bottom: 2px;
}

.f-accordion a::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 15px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #202020;
    border-right: 1px solid #202020;
    transform: rotate(45deg);
}

.f-accordion li {
    list-style-type: none;
}

.f-tab_content {
    border: 2px solid #e7e7e7;
    border-top: none;
}

.f-tab.active {
    background-color: #30A61D;
}

.f-filter__wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    padding: 12px 0 30px;
    justify-content: space-between;
}

.f-filter {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
}

.f-filter__label {
    color: #272727;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    margin-right: 18px;
}

.f-filter__item {
    border-radius: 23px;
    background-color: #ebebeb;
    color: #272727;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 10px 38px;
    padding-right: 58px;
    margin-bottom: 10px;
}

.f-filter__item-close {
    position: absolute;
    right: 20px;
    top: 12px;
    cursor: pointer;
    
}

.f-filter__clear, .active-filter__view_more {
    color: #30a61d;
    font-family: "Open Sans";
    font-size: 16px;
    margin-left: 19px;
    font-weight: 700;
    height: 26px;
}

.f-filter__choice {
    margin-right: 30px;
    display: inline-flex;
}

.f-filter__choice svg {
    cursor: pointer;
}

.item-animal-normal .caption {
    padding-top: 20px !important;
}

.f-filter__choice svg use {
   -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.f-filter__choice svg:hover use, .f-filter__choice .active use {
    fill: #30a61d !important;
}




.f-filter__choice svg + svg {
    margin-left: 20px;
}

.f-filter__item + .f-filter__item {
    margin-left: 10px;
}

.a-search {
	position: relative;
}

.a-search .fa-search {
	position: absolute;
	right: 8px;
	top: 7px;
}

.a-search input{
	height: 34px;
	padding: 6px 12px;
	font-family: 'Open Sans', sans-serif;
	color: #555;
	background-color: #fff;
	width: 100%;
	font-size: 14px;
	min-width: 260px;
	border-radius: 4px;
	outline: none;
	border: none;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.a-search input:focus + i {
	color: #333;
}

.a-search input:focus {
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
  border-color: #66afe9;
  outline: 0;
}

.clearfix::after {
    display: block;
    clear: both;
    content: ''
}

.page-animal {
    font-size: 18px
}

.page-animal img {
    max-width: 100%;
    border-radius: 6px;
}

.page-animal section {
    padding: 35px 0;
    border-bottom: 1px solid #e9e9e9
}

.page-animal * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

/*header {
    font-size: 62.5%
}*/

/*.ap-header {
    font-size: 62.5%
}*/

header .logo span {
    color: #00c853;
    font-family: Rubik, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    font-weight: 400;
    line-height: 1
}

header .main-nav {
    padding-top: 38px
}

header .main-nav li {
    padding-left: 30px;
    position: relative
}

header .main-nav li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img/mammals.png) no-repeat center;
    position: absolute;
    top: 0;
    left: 0
}

header .main-nav li:nth-child(2)::before {
    background: url(../img/reptiles.png) no-repeat center
}

header .main-nav li:nth-child(3)::before {
    background: url(../img/birds.png) no-repeat center
}
header .main-nav li:nth-child(4)::before {
    background: url(../img/amphibia-white.png) no-repeat center
}
header .main-nav li:nth-child(5)::before {
    background: url(../img/mollusk-white.png) no-repeat center
}
header .main-nav .catalog-li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img/mammals_white.png) no-repeat center;
    position: absolute;
    top: 0;
    left: 0
}

header .main-nav .catalog-li:nth-child(2)::before {
    background: url(../img/reptiles_white.png) no-repeat center
}

header .main-nav .catalog-li:nth-child(3)::before {
    background: url(../img/birds_white.png) no-repeat center
}
.page-animal .open-gallery{
    cursor: zoom-in;
}

.page-animal a {
    font-family: Rubik, sans-serif
}

.page-animal p {
    margin: 10px 0;
    line-height: 1.5
}

.center {
    text-align: center;
    margin-top: 50px
}

.tl-center {
    text-align: center
}

.no-gutter-r {
    padding-right: 0!important
}

.a-h1,
.a-h2,
.a-h3 {
    font-family: Rubik, sans-serif;
    color: #222
}

.a-h1 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 15px 0 15px
}

.a-h2 {
    font-weight: 500;
    font-size: 42px;
    margin-bottom: 40px
}

.a-h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px
}

.show-more {
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    text-transform: uppercase;
    color: #777;
    margin-left: 5px;
    white-space: nowrap
}

.show-more:hover {
    color: #000;
    text-decoration: none
}

section.s-char {
    /*padding-top: 100px*/
}

.s-char-block {
    margin-bottom: 25px
}

.s-char-img img {
    height: 100%
}

.s-char-heading {
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 25px
}

.s-char-heading__name {
    color: #777;
    font-family: Rubik, sans-serif;
    margin: 0!important;
    line-height: 1!important
}

.s-char-heading__name span::after {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #777;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px
}

.s-char-kinds {
    padding: 18px 0;
    border-bottom: 1px solid #e9e9e9
}

.s-char-kinds__attr {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #777
}

.s-char-kinds__name {
    display: block;
    font-size: 18px
}
.s-char-kinds__species {
    display: block;
    font-size: 18px;
    font-weight: 500;
}

.s-char-kinds__item {
    margin-bottom: 15px
}

.s-char-kinds .unactive {
    color: #222
}

.s-char-char__block {
    padding: 12px 0;
    border-bottom: 1px solid #e9e9e9
}

.s-char-char-custom {
    display: -webkit-flex;
    margin-top: 25px;
    padding: 0 15px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
}

.s-char-char-custom .s-char-char__wrap {
    position: relative;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 10px;
    flex-grow: 1;
}

.s-char-kinds-custom {
    border-bottom: none;
}

.s-char-char__wrap-wrap {
    flex-grow: 1;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.s-char-char-custom .s-char-char__wrap::before {
    content: '';
    position: absolute;
    height: 80%;
    width: 1px;
    right: 44px;
    background: #EAEAEA;
    top: 50%;
    transform: translateY(-50%);
    /*margin-bottom: 10px;*/
    /*padding-bottom: 10px;*/
    /*margin: 2px 2px;*/
}
.s-char-char__wrap::after{
    content: '';
    position: absolute;
    height: 6px;
    width: 10px;

    right: 40px;
    background: #FFFFFF;
    top: 100%;
    transform: translateY(-50%);
}

.s-char-char-custom .s-char-char__wrap-wrap:last-child .s-char-char__wrap:last-child::before {
    display: none;
}
.s-char-char__wrap:first-child::after{
    display: none;
}
.s-char-char-custom .s-char-char__wrap-wrap:last-child .s-char-char__wrap:last-child::after {
    display: none;
}

.s-char-char__name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 10px
}

.s-char-char__num {
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    color: #00c853;
    font-family: Rubik, sans-serif
}

.video .content {
    float: none;
}

.s-char-text {
    margin-bottom: 30px;
    margin-top: 35px;
}

.s-char-status-item {
    text-align: center;
    width: 103px;
    height: 103px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 20px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    vertical-align: middle;
}

.s-char-status-item:hover {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px)
}

.s-char-status-item p {
    font-family: Rubik, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    line-height: 1;
    padding-top: 13px
}

.s-char-status-item span {
    font-size: 14px;
    font-weight: 400;
    color: #fff
}

.s-gallery {
    position: relative;
    padding-bottom: 50px!important
}

.s-gallery-block {
    font-size: 0
}

.s-gallery-block__sm:first-child {
    margin-bottom: 20px
}

.s-gallery-item {
    font-size: 0;
    height: 100%;
}
.s-gallery-item--md img {
    height: 100%;
}
.s-gallery-item img {
    width: 100%;
}

.s-gallery-arrow {
    width: 62px;
    height: 62px;
    background-color: #b3b3b3;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    right: 0;
    cursor: pointer;
    -webkit-transition: all .3s linear;
    transition: all .3s linear
}

.s-gallery-arrow::before {
    content: '\2191';
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px
}

.s-gallery-arrow:hover {
    background-color: #8d8d8d
}

.s-distr-block {
    margin-bottom: 50px
}

.s-distr-block--row .row {
    margin-bottom: 15px
}

.s-distr-geography__slug {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #777
}

.s-distr-geography__link {
    font-size: 22px;
    margin-left: 2px
}

.s-distr-zone-item {
    text-align: center;
    width: 100%;
    max-width: 278px;
    height: 100%;
    min-height: 101px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-shadow: -1px 1px 0 rgba(0, 0, 0, .79);
    font-size: 24px;
    font-weight: 700;
    margin: auto;
    color: #fff;
    padding: 10px 5px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    position: relative;
}

.s-distr-margin {
    margin-bottom: 30px;
}

.s-distr-zone-item:hover {
    color: #fff
}

.s-distr-climate__link {
    width: 100%;
    max-width: 278px;
    height: 100%;
    min-height: 101px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: auto;
    text-align: center;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.s-distr-climate__link:hover {
    color: #fff
}

.s-habbit-group {
    margin-bottom: 27px
}

.s-habbit-group__slug {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #777
}

.s-habbit-group__black {
    color: #222
}

.s-habbit-group__black:hover {
    color: #222
}

.s-habbit-group a {
    margin-left: 2px;
    font-size: 22px
}

.s-habbit-content {
    margin-bottom: 30px
}

.s-diet-block p {
    margin-bottom: 40px
}
.s-diet-nutrition-margin {
    padding-bottom: 20px
}

.s-diet-item__slug {
    font-size: 16px;
    text-transform: uppercase;
    color: #777;
    margin-right: 20px;
    font-weight: 600
}

.s-diet-item__link {
    font-size: 22px;
    margin-right: 5px
}

.s-mating-descr .row {
    margin-bottom: 18px
}

.s-mating-slug__text {
    font-size: 16px;
    color: #777;
    text-transform: uppercase;
    font-weight: 600
}

.s-mating-char__text {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    font-size: 20px
}

.s-mating-char a {
    display: inline-block;
    font-size: 20px
}

.s-mating-text p:first-child {
    margin-top: 0
}

.s-population-link {
    margin-bottom: 15px
}

.s-population-img {
    margin-bottom: 40px
}

.s-population-slug {
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
    font-size: 16px
}

.s-population__link {
    font-size: 22px
}

.s-population-view {
    margin-top: 60px
}

.s-population-view__item {
    width: 50px;
    height: 50px;
    border: 2px solid #999a96;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    color: #999a96;
    display: inline-block
}

.s-population-view .active {
    background-color: #00c853;
    color: #fff;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    border: none
}

.s-domest-content{
    margin-bottom: 20px;
}

.s-domest-cat__status {
    text-transform: uppercase;
    font-size: 16px;
    color: #777;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    margin-right: 30px;
    margin-bottom: 12px;
    display: inline-block;
    vertical-align: baseline;
}

.s-domest-cat__link {
    font-size: 22px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: baseline;
}

.s-domest__img {
    text-align: center;
    font-size: 0;
}

.s-fact {
    padding-bottom: 30px!important
}

.s-fact-list li {
    font-size: 20px;
    color: #222;
    line-height: 1.3;
    margin-bottom: 45px;
    padding-left: 45px;
    position: relative
}

.s-fact-list li::before {
    content: '';
    width: 27px;
    height: 26px;
    display: inline-block;
    background: url(../img/Ibex_icon.png) no-repeat center;
    position: absolute;
    top: 0;
    left: 0
}

.s-ref-item {
    margin-bottom: 12px;
}

.s-related .a-h2 {
    text-align: center
}

.s-related-row {
    margin-bottom: 30px
}

.s-related-item {
    height: 316px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 252px;
    position: relative;
    display: block
}

.s-related-item__content {
    padding: 20px;
    background-color: rgba(0, 0, 0, .6);
    -webkit-border-bottom-left-radius: 8px;
    border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-top: auto;
    width: 100%;
    position: absolute;
    bottom: 0
}

.s-related-item__content span {
    font-size: 16px;
    color: #00f666;
    font-family: Rubik, sans-serif
}

.s-related-item__name {
    font-family: Rubik, sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 4px
}

.s-fascinating-block {
    position: relative
}

.s-fascinating .a-h2 {
    text-align: center
}

.s-fascinating-item {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.s-fascinating .s-related-item {
    display: inline-block;
    width: 256px
}

.owl-nav .owl-next,
.owl-nav .owl-prev {
    position: absolute;
    width: 52px;
    height: 52px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #b3b3b3;
    top: 42%
}

.owl-nav .owl-next::after,
.owl-nav .owl-prev::after {
    content: '';
    width: 16px;
    height: 16px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all .3s linear;
    transition: all .3s linear
}

.owl-nav .owl-next {
    right: -60px
}

.owl-nav .owl-next::after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg)
}

.owl-nav .owl-prev {
    left: -60px
}

.owl-nav .owl-prev::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.s-footer {
    border-top: 8px solid #e9e9e9;
    padding: 35px 0 30px;
    font-size: 62.5%;
    height: auto;
}

.s-footer-logo {
    font-weight: 600;
    font-family: Rubik, sans-serif;
    color: #00c853;
    text-transform: uppercase;
    line-height: 1;
    font-size: 3em
}

.s-footer-logo span {
    color: #00c853;
    font-family: Rubik, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    font-weight: 400;
    margin-top: 10px
}

.s-footer-form input {
    font-size: 16px;
    color: #868686;
    font-family: "Open Sans", sans-serif;
    background-color: #e9e9e9;
    padding: 20px;
    border: none;
    width: 100%;
    max-width: 318px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    height: 53px
}

.s-footer-form input:focus {
    outline: 0
}

.s-footer-form button {
    outline: 0;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background-color: #007aff;
    height: 53px;
    margin-left: -15px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 0 37px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear
}

.s-footer-form button:hover {
    background-color: #004999
}

.s-footer .copyright {
    text-align: center;
    font-weight: 600;
    color: #777;
    font-size: 16px;
    margin-top: 10px
    /*margin-top: 40px
    return this margin if email form enabled as in original design
     */
}
.main-head .logo {
    color: #fff;
}

.main-head .logo span {
    color: #fff;
}

.main-head .main-nav a {
    color: #fff;
}
@media only screen and (max-width:1200px) {
    .s-char-char-custom .s-char-char__wrap::before {
        right: 15px;
    }
    .s-char-char__wrap::after{
        right: 11px;
    }

}
@media only screen and (max-width:1100px) {
    .s-gallery-block__sm {
        margin-bottom: 14px
    }
    .owl-nav .owl-next {
        right: -50px
    }
    .owl-nav .owl-prev {
        left: -50px
    }
    .s-fascinating-block {
        max-width: 800px;
        margin: 0 auto
    }
    .s-footer-form input {
        max-width: 275px
    }
}

@media only screen and (max-width:992px) {

    .header-fixed .sub-nav {
        position: static;
        transform: none;
    }

    .main-head .logo {
        color: #00c853;
    }

    .main-head  .logo span {
        color: #00c853;
    }

    .main-content {
        /*background-color: #1C9654;*/
        padding-top: 150px;
    }

    .s-char-kinds-custom {
        border-bottom: 1px solid #e9e9e9;
    }

    .s-char-char-custom .s-char-char__wrap {
        width: 50%;
        border-bottom: none;
    }

    .s-char-char-custom .s-char-char__wrap::before {
        display: none;
    }
    .s-char-char__wrap::after {
        display: none;
    }

    .s-char-char__wrap-wrap {
        width: 100%;
        border-bottom: none;
    }

    .s-domest__img{
        margin-bottom: 30px;
    }

    .content {
        padding-top: 130px
    }
    .s-char-img {
        text-align: center
    }
    .s-char-img img {
        height: auto
    }
    .s-char-status {
        text-align: center
    }
    .a-h1 {
        font-size: 40px
    }
    .a-h2 {
        font-size: 32px
    }
    .a-h3 {
        font-size: 22px
    }
    .s-gallery {
        text-align: center
    }
    .s-gallery-block__sm {
        margin-bottom: 20px
    }
    .s-gallery-item--md {
        padding-bottom: 20px
    }
    .s-gallery-item--left {
        text-align: left
    }
    .s-gallery-item--right {
        text-align: center
    }
    .show-more {
        font-size: 14px
    }
    .s-distr-geography__link {
        font-size: 18px;
        line-height: 1.4
    }
    .s-distr-geography__slug {
        line-height: 1.4
    }
    .s-distr-zone-item {
        margin-bottom: 20px;
    }

    .s-habbit-img {
        margin-bottom: 30px;
        text-align: center
    }
    .s-habbit-group a {
        font-size: 18px
    }
    .s-diet-img {
        text-align: center;
        margin-top: 30px
    }
    .s-mating-text {
        margin-top: 20px
    }
    .s-population-view {
        margin-bottom: 40px
    }
    .s-related-item {
        margin-bottom: 30px
    }
    .ml-auto {
        margin-left: auto
    }
    .s-fascinating-block {
        max-width: 600px;
        margin: 0 auto
    }
    .s-footer {
        text-align: center
    }
    .s-footer-logo {
        display: inline-block;
        margin-bottom: 40px
    }
    .s-footer-form input {
        max-width: 320px
    }

    .page-animal {
        font-size: 16px
    }
    .main-nav {
        top: 140px
    }
    header {
        text-align: center
    }
    header .logo {
        text-align: center;
        float: none
    }
    header .main-nav {
        margin: 0 18%
    }
    header .sub-nav {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
    }

    section.s-char {
        /*padding-top: 230px;*/
    }
    /*.no-gutter-r{
        padding-right: 15px!important;
    }*/

}

@media only screen and (max-width:768px) {

    .header-fixed .logo {
        width: 50%;
        text-align: left;
        font-size: 20px;
    }

	.tp-tab-mask, .tp-tabs-inner-wrapper, .tp-tab {
		width: 100% !important;
		height: auto !important;
	}
	
	.hesperiden  {
		width: 100% !important;
		height: 100% !important;
		max-height: none !important;
		max-width: 100% !important;
	}

	.hesperiden .tp-tab-mask {
		max-height: none !important;
	}
	.hesperiden .tp-tab {
		position: relative !important;
		left: 0 !important;
		border-bottom: none !important;
		margin-bottom: 15px !important;
	}
	#rev_slider_1070_1_wrapper {
		height: auto !important;
	}

	.hesperiden .tp-tab-image {
		position: absolute !important;
		left: 10px !important;
		top: 10px !important;
	}

	.hesperiden .tp-tab-content {
		position: static !important;
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	.tp-tab {
		position: static !important;
		width: 100% !important;
	}

    .header-fixed__top {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .header-fixed .header-fixed__head {
        width: 50%;
    }

    .header-fixed .sub-nav {
        margin-top: 10px;
    }

    .header-fixed__head  {
        text-align: right;
    }
    
    /*section.s-char {
        padding-top: 220px
    }*/

    header .main-nav {
        padding-top: 25px;
    }

    header .sub-nav {
        padding-top: 22px;
    }

    .s-char-kinds__name {
        font-size: 15px
    }

    .s-char-kinds__species {
        font-size: 15px;
        font-weight: 500;
    }
    .s-char-char__num {
        font-size: 22px
    }
    .s-diet-item__link {
        font-size: 18px
    }
    .s-fact-list li {
        font-size: 16px
    }
    .s-related-item {
        margin-left: auto;
        margin-right: auto
    }
    .s-distr {
        padding-bottom: 15px!important
    }
    .s-distr-zone h3 {
        text-align: center
    }
    .s-distr-climate h3 {
        text-align: center
    }
    .owl-nav .owl-next {
        right: 0
    }
    .owl-nav .owl-prev {
        left: 0
    }
}

@media only screen and (max-width:568px) {
    .no-gutter-r {
        padding-right: 15px!important
    }

    .header-fixed__top {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .socials-list {
        width: 100%;
        margin-top: 6px;
    }

    .s-domest-cat__link {
        font-size: 20px;
    }

    .page-animal {
        font-size: 14px
    }
    .page-animal section {
        padding: 35px 0
    }

    .s-gallery {
        padding-bottom: 20px!important
    }
    .s-gallery-item--left {
        text-align: center
    }
    .s-gallery-item--right {
        text-align: center
    }
    section.s-char {
       /* padding-top: 200px*/
    }
    /*header .logo {
        font-size: 2.8em
    }*/
    header .sub-nav {
        padding: 15px 0
    }
     header .main-nav {
    	padding-top: 15px;
        width: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        margin: 0
    }
    .a-h1 {
        font-size: 30px
    }
    .a-h2 {
        font-size: 26px;
        margin-bottom: 25px
    }
    .a-h3 {
        font-size: 20px
    }
    .s-distr-geography__slug {
        margin-bottom: 10px;
        font-size: 14px
    }
    .s-distr-climate {
        text-align: center
    }
    .s-distr-zone .a-h3 {
        text-align: center
    }
    .s-habbit-group__slug {
        margin-bottom: 10px
    }
    .s-gallery-arrow {
        display: none
    }
    .s-gallery-item {
        margin-bottom: 20px
    }
    .s-gallery-block__sm {
        margin-bottom: 0
    }
    .s-mating-slug__text {
        font-size: 14px
    }
    .s-mating-char__text {
        font-size: 16px
    }
    .s-mating-char a {
        font-size: 16px
    }
    .s-population-slug {
        margin-bottom: 10px
    }
    .s-population__link {
        font-size: 18px
    }
    .s-population-view {
        text-align: center;
        margin-top: 40px
    }
    .s-population-view__item {
        margin-bottom: 10px;
        margin-right: 5px
    }
    .s-footer-form input {
        margin-bottom: 20px
    }
}

@media only screen and (max-width:1199px) {

    .hamburger {
        display: block;
    }

    .main-list {
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        top: 100%;
        background-color: #fff;
        z-index: 99999;
        box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.23);
        text-align: left;
        padding: 25px;
    }

    .main-list li {
        margin-bottom: 8px;
    }

    .main-list li + li {
        margin-left: 0;
    }

}

@media only screen and (max-width : 992px) {

    .f-page {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .f-page__sidebar {
        width: 100%;
    }

    .f-accordion .drop {
        display: none;
        
    }

    /*.f-filter--hidden {
        display: none;
        
    }*/

    .two-main-image {
        padding-right: 0px;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .two-main-image .item-animal {
        width: calc(50% - 23px);
    }

    .two-main-image .item-animal:nth-child(2) {
        margin-right: 0px;
    }

    .f-page__content .item-animal--full {
        max-height: 600px;
    }

    .item-animal:first-child .caption {
        padding-top: 20px;
    }

    .f-page__content .animals {
        margin: 0;
    }

    .f-filter__wrap {
        padding-top: 30px;
    }

    .f-page__content .paginator {
        padding-left: 15px;
    }

     .f-content {
        padding-top: 0;
    }

    .page-catalog .page-cover .overlay {
        padding-top: 250px !important;
    }

    .overlay .description p {
        font-size: 16px;
    }

    .group-container {
        width: 100%;
    }

    .f-page__sidebar {
        min-height: 100px;
        margin-bottom: 20px;
    }

    .item-animal .cover {
        background-size: 100%;
    }

    .f-page__content {
        width: 100%;
    }

    .group-btn, .sort-btn {
        font-size: 12px !important;
    }

    .group-label, .sort-label {
        width: 68px !important;
    }


}

.show-more-block {
    max-height: 88px;
    overflow: hidden;
}

@media only screen and (max-width : 767px) {

    .page-catalog .page-cover .overlay {
        padding-top: 120px !important;
    }

    .f-page__content .item-animal {
        width: calc(100% - 30px);
    }

    .f-page__content .paginator {
        padding-left: 0;
    }

    .f-filter__wrap {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .f-page__content .item-animal {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .page-catalog .page-cover .title h1 {
        font-size: 4.4em !important;
    }

    .page-catalog .page-cover .title {
        width: 100% !important;
        padding-top: 120px;
        margin-bottom: 40px;
    }

    .page-catalog .page-cover .description {
        width: 100% !important;
        float: none !important;
        
    }

    .f-filter {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    /*.f-page__content .animals .row {
        width: auto;
    }*/

    .f-filter__clear, .active-filter__view_more {
        margin-bottom: 30px;
    }

    .animals .row {
        margin: 0px !important;
    }

    .animals .col-lg-8, .animals .col-lg-4 {
        margin: 0px !important;
        padding: 0px !important;
    }

    .animals .caption {
        padding: 2px 10px !important;
        height: 50px !important;
    }

    .f-page__sidebar {
        min-height: 100px;
    }

    .show-more-block {
        max-height: 156px;
    }

    .animal-list {
        width: 100%;
    }

    .f-filter div {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 10px;
    }

    .f-filter__clear {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .page-catalog .page-cover .title {
        float: none !important;
        
    }

    /*.animals-invert__item {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }*/

    .animals-invert__item-img {
        background-color: transparent !important;
        /*margin-bottom: 15px;*/
        /*width: 100%;*/
        /*flex-shrink: 1;*/
    }

    .animals-invert__item-content {
        border-radius: 10px;
    }

    .animals-invert__item-img img {
        border-radius: 10px;
        width: 200px;
        margin: 0 auto;
       /* height: 100%;*/
    }

    .animals-invert__item-content {
        padding: 30px 15px;
    }

    .animals-invert__item:nth-child(even) {
        border: none;
    }

    .animals-invert__item:nth-child(even) .animals-invert__item-content {
        padding-top: 30px;
    }

}

@media only screen and (max-width : 568px) {

    .animals-invert__item {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .animals-invert__item-img {
        margin-bottom: 15px;
        width: 100%;
    }
    .animals-invert__item-img img {
        width: 100%;
    }
}

.page-catalog .logo {
    color: #fff !important;
}

.page-catalog .logo span {
    color: #fff !important;
}

.filter-label {
    display: block;
    line-height: 1.3;
}

.gj-checkbox-md span {
    border: 2px solid #d8d8d8 !important;
    width: 20px !important;
    height: 20px !important;
}


.gj-checkbox-md input[type=checkbox]:checked+span:after {
    background-color: #30A61D !important;
    left: 0px !important;
    top: -20px !important;
    border-radius: 2px;
    padding-top: 2px;
    padding-left: 2px;
}

.gj-checkbox-material-icons input[type=checkbox]:checked+span:after {
    font-size: 17px !important;
    width: 20px;
    height: 20px;
    font-weight: 500 !important;
}

.gj-list-md-active {
    background: white !important;
}

.gj-checkbox-material-icons input[type=checkbox]:indeterminate+span:after {
    width: 20px;
    height: 20px;
}

.gj-checkbox-md input[type=checkbox]:indeterminate+span:after {
    top: -17px !important;
}

ul.gj-list-md li [data-role=display] {
    font-size: 14px;
    font-family: "Open Sans";
}

.full-active-filters {
    display: flex;
    flex-wrap: wrap;
}

.active-filter__view_more {
    display: none;
}

.f-filter__label {
    padding-top: 12px;
    height: 44px;
}

.f-tab_item .f-form__input:disabled + label::before {
    border-color: #30A61D;
}

.f-form {
    max-height: 658px;
    overflow-x: auto;
}

.accordion-filter {
    max-height: 164px;
    overflow: hidden;
}

.gj-checkbox-md input[type=checkbox][disabled]:indeterminate+span:after {
    top: -20px !important;
    padding-top: 2px;
}
.block-with-ads {
    float: left;
    width: 100%;
    margin-bottom: 34px;
}

.list-ads-block {
    margin-bottom: 26px;
}

.ads-pagination {
    margin-top: 66px;
}

.animal-list {
    width: 100%;
}

.taxonomy-label {
    padding: 0px 3px 0px 3px;
    font-size: 13px;
    font-family: 'Roboto Regular', 'Roboto';
    border-radius: 2px;
    margin-bottom: 4px;
    display: inline-block;
}

.taxonomy-class, .taxonomy-infraclass {
    color: #FF0033;
    background-color: rgb(255,204,204);
}

.taxonomy-order,
.taxonomy-suborder,
.taxonomy-superorder,
.taxonomy-infraorder
{
    color: #660099;
    background-color: rgb(226,219,253);
}

.taxonomy-family, .taxonomy-superfamily, .taxonomy-subfamily {
    color: #0099FF;
    background-color: rgb(219,240,255);
}

.taxonomy-genus, .taxonomy-subgenus {
    color: #00CC66;
    background-color: rgb(202,255,228);
}

.taxonomy-clade {
    color: #3300CC;
    background-color: rgb(221,227,255);
}

.letter-filter {
    width: 100% !important;
    height: 374px;
}

.letter-link, .letter-link:hover {
    color: white;
    text-decoration: underline;
}

.letter-filter-caption {
    width: 92% !important;
}

.letter-header {
    position: absolute;
    left: 40px;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    top: 32px;
    font-size: 48px;
}

.letter-block {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 4px;
}

.category-letter-container {
    font-size: 3.2em;
    position: absolute;
    bottom: -104px;
    width: 210%;
}

.fz-4 {
    font-size: 4.8em !important;
}

.letter-size {
    font-size: 1.3em !important;
}

.responsive-image {
    width: 100%;
}

.error-text-block {
    position: absolute;
    top: 63%;
    right: 4%;
    width: 17%;
    height: 20%;
    text-align: center;
}

.error-text-header {
    font-size: 1.7vw;
    line-height: 120%;
}

.error-home-text {
    margin-top: 13%;
    text-align: center;
    font-size: 1.9vw;
}

.error-home-link {
    color: #00C853;
}

.mt-30 {
    margin-top: 30px;
    position: relative;
}

.error-image-child {
    position: absolute;
    top: 42%;
    right: 9%;
    width: 15%;
    transform: rotate(270deg);
}

.bug-image-child {
    position: absolute;
    top: 17%;
    right: 17%;
    width: 15%;
    transform: rotate(270deg);
}

.bug-text-block {
    position: absolute;
    top: 38%;
    right: 11%;
    width: 19%;
    height: 17%;
    text-align: center;
}

.lh-148 {
    line-height: 148% !important;
}

.top-bug-text {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 44px;
    background-color: white;
    line-height: 44px;
    text-align: center;
    font-size: 1.4vw;
    opacity: 0.8;
}

.op {
    opacity: 0.8;
}

.image-action {
    margin-top: 10px;
    font-size: 24px;
    cursor: pointer;
}

.photo-modal {
    position: absolute;
    height: 230px;
    width: 450px;
    background-color: white;
    color: black;
}

.photo-download {
    right: 45px;
    top: -160px;
    display: none;
    padding: 20px;
    height: 205px;
}

.photo-modal:after {
    content: '';
    position: absolute;
    left: 449px;
    bottom: 8px;
    border: 12px solid transparent;
    border-left: 14px solid white;
}

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

.share-tab-btn {
    display: inline-block;
    width: 40%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
}

.embeded-tab-btn {
    display: inline-block;
    width: 58%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
}

.share-tab-btn.active, .embeded-tab-btn.active {
    border-bottom: 4px solid #00c853;
}

.share-tab, .embeded-tab {
    display: none;
}

.share-tab.active, .embeded-tab.active {
    display: block;
}

.share-link {
    width: 100%;
    font-size: 18px !important;
    padding: 8px;
}

.share-link-block {
    width: 76%;
}

.pdt-10 {
    padding-top: 10px !important;
}

.inb {
    float: left;
    padding: 0px 10px 0px 10px;
    margin-bottom: 10px;
}

.share-info {
    font-size: 14px;
    text-align: left;
    margin-top: 6px;
}

.pt-48 {
    padding-top: 48px;
}

.share-tab {
    padding: 16px;
}

.embeded-block {
    width: 100%;
    height: 100px;
    font-size: 17px !important;
}

.size-photo-select {
    width: 100%;
    font-size: 18px;
}

.embeded-tab {
    padding: 16px;
}

.photo-share {
    right: 45px;
    top: -154px;
    display: none;
}

.show-modal {
    display: block;
}

.btn-download:focus {
    outline: none;
}

.select-triangle {
    border: 3px solid transparent;
    border-top: 6px solid white;
}

.download-btn {
    float: left;
    background: rgb(0, 200, 83);
    padding: 5px 12px 5px 12px;
    color: white;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
    height: 56px;
    min-width: 190px;
    text-align: center;
}

.select-download-btn {
    float: left;
    background: rgb(0, 200, 83);
    padding: 23px 12px 5px 12px;
    border-left: 1px solid rgb(0,148,31);
    color: white;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    height: 56px;
}

.fz-9 {
    font-size: 0.8em;
}

.fz-5 {
    font-size: 0.5em;
    margin-top: 8px;
}

.browser-view-photo {
    text-align: left;
    margin-top: 72px;
    font-size: 0.7em;
}

.select-sizes {
    min-width: 322px;
    border: 1px solid rgb(0,148,31);
    position: absolute;
    top: 76px;
    display: none;
    background: white;
}

.select-sizes.active {
    display: block;
}

.option {
    padding: 10px 25px;
    text-align: left;
    font-size: 0.7em;
}

.photo-size {
    font-size: 0.8em;
}

.embeded-select-file {
    width: 100%;
    font-size: 0.7em;
    margin-top: 10px;
}

.image-action-container {
    position: absolute;
    right: 0px;
    top: -82px;
}

.option:hover {
    background: rgba(0, 200, 83, 0.2);
}

.option.active {
    background: rgba(0, 200, 83, 0.1);
}

.download-btn:hover, .select-download-btn:hover {
    background: rgba(0, 200, 83, 0.8);
}

@media only screen and (max-width : 1100px) {
    .category-letter-container {
        width: 100%;
    }
}

@media only screen and (min-width : 620px) {
    .mt-30 {
        margin: 14vh 0vh 14vh 0vh;
    }

    .top-bug-text {
        height: 60px;
        line-height: 60px;
        font-size: 22px;
    }
}

@media only screen and (max-width : 750px) {
    .top-bug-text {
        height: 30px;
        line-height: 30px;
    }

}

@media only screen and (max-width : 450px) {
    .error-main-block {
        height: 45vh;
        padding-top: 5vh;
    }

    .mt-30 {
        margin: 0px;
    }

    .error-home-text {
        font-size: 1.8vw;
    }
}

@media only screen and (min-width : 1251px) {
    .error-text-header {
        font-size: 24px;
    }

    .error-home-text {
        font-size: 26px;
    }
}

.sort-label {
    width: 98px;
}

.sort-container {
    display: flex;
    flex-wrap: wrap;
    float: left;
    margin-right: 30px;
}

.sort-btn {
    float: left;
    background-color: #ebebeb;
    color: #272727;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 10px 14px;
    padding-right: 14px;
    margin-bottom: 10px;
    cursor: pointer;
}

.sort-buttons .sort-btn:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.sort-buttons .sort-btn:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.sort-buttons .active {
    background-color: #30A61D;
    color: white;
}

.load-more, .load-more-group, .list-load-more {
    border-radius: 23px;
    background-color: #30A61D;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 10px 38px;
    padding-right: 58px;
    padding-left: 58px;
    margin-bottom: 10px;
    color: white;
    cursor: pointer;
}

.load-more-group {
    margin-bottom: 16px;
    display: inline-block;
}

.load-more-container {
    text-align: center;
    display: none;
}

.load-more-group-container {
    text-align: center;
    margin-bottom: 34px;
    margin-top: 10px;
}

.group-label {
    width: 98px;
}

.group-container {
    display: flex;
    flex-wrap: wrap;
}

.group-btn {
    float: left;
    background-color: #ebebeb;
    color: #272727;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 10px 14px;
    padding-right: 14px;
    margin-bottom: 10px;
    cursor: pointer;
}

.group-buttons .group-btn:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.group-buttons .group-btn:nth-child(2) {
    border-right: 1px solid rgb(153,153,153);
    border-left: 1px solid rgb(153,153,153);
}

.group-buttons .group-btn:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.group-buttons .active {
    background-color: #30A61D;
    color: white;
}

.group-title {
    font-size: 19px;
    font-weight: 700;
    color: rgb(102,102,102);
    font-family: "Open Sans";
    padding: 0px 0px 36px 14px;
    cursor: pointer;
    position: relative;
}

.group-title:before {
    content: '';
    position: absolute;
    right: 20px;
    top: 15px;
    width: 12px;
    height: 12px;
    border-bottom: 1px solid #202020;
    border-right: 1px solid #202020;
    transform: rotate(45deg);
    top: 0px;
}

.group-animal-container.active .group-title:before {
    transform: rotate(225deg);
    top: 7px;
}

.clear {
    clear: both;
}

.group-animal-container  {
    overflow: hidden;
    transition: all .3s linear;
}

.group-container-accordeon {
    overflow: hidden;
}

.up-btn {
    background-color: rgb(0,200,83);
    width: 60px;
    height: 60px;
    border-radius: 5px;
    position: fixed;
    text-transform: uppercase;
    z-index: 10;
    right: 10px;
    bottom: 10px;
    visibility: hidden;
    filter: alpha(opacity=0);
    opacity: 0;
    transition: visibility 1s linear,opacity .5s ease-in-out;
    cursor: pointer;
}

@media only screen and (min-width : 992px) {
    .up-btn:hover {
        opacity: 1 !important;
    }
}


.up-btn:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    margin-left: -15px;
    border-width: 0 15px 15px;
    border-style: solid;
    border-color: transparent transparent #fff;
}

.create-list-container {
    position: absolute;
    top: 0;
    right: 140px;
}

.modal-list {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-bg {
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
}

.modal-form {
    background: white;
    position: absolute;
    float: left;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
}

.modal-btn {
    background-color: #30A61D;
    display: inline;
    padding: 10px 36px;
    font-size: 14px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.close {
    position: absolute;
    right: 14px;
    top: 10px;
    width: 20px;
    height: 20px;
    opacity: 0.3;
    cursor: pointer;
}
.close:hover {
    opacity: 1;
}
.close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: #333;
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}

.modal-input {
    height: 34px;
    padding: 6px 12px;
    font-family: 'Open Sans', sans-serif !important;
    color: #555;
    background-color: #fff !important;
    width: 100%;
    font-size: 14px !important;
    min-width: 100px;
    border-radius: 4px !important;
    outline: none !important;
    border: none !important;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    margin-top: 8px;
}

#create-custom-lists {
    display: none;
}

@media only screen and (min-width : 569px) and (max-width : 767px) {
    .animals-invert__item-content p {
        height: 76px;
        overflow: hidden;
    }

    .animals-invert__item-content {
        max-height: 200px;
    }
}


.collection-title {
    font-weight: 700;
    font-size: 80px;
    color:#3BC853;
    font-family: Rubik, sans-serif;
    display: inline-block;

}
.collection-selected{
    color: #222222;

}
.collection-not-selected{
    font-size: 72px;
    font-weight: 580;
}
.collection-second-tab{
    padding-left: 35px;
}
.collection-not-selected:hover{
    text-decoration: underline;
}
.collection-title a{
    color:#3BC853;
}
/*.collection-menu{
    display: inline-block;
}*/

.container-collection {
    padding-top: 160px;
    margin-bottom: 40px;
}

.collection-second-title {
    margin: 20px 0px 51px 0px;
    font-size: 20px;
    color: #777777;
    font-family: Rubik, sans-serif;
}

.lft-block {
    display: block;
    float: left;
    width: 50%;
    margin-right: 9%;
}

.rgt-block {
    display: block;
    float: left;
    width: 40%;
}

.collection-animal-title {
    color: #222222;
    font-weight: bold;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    font-family: Rubik, sans-serif;
}

.collection-grey-line {
    background-color: rgb(236,236,236);
    border: none;
    height: 1px;
}

.column-text {
    margin: 20px 0px 20px 0px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #777777;
    font-family: Rubik, sans-serif;
}

.column-text-container {
    position: relative;
    margin: 20px 0px 20px 0px;
}

.rght-column-text {
    position: absolute;
    right: 0px;
    top: -5px;
    font-size: 26px;
    font-weight: 500;
    color: #00C853;
    font-family: Rubik, sans-serif;
}

.collection-desc {
    font-family: Rubik, sans-serif;
    margin-top: 20px;
    font-size: 18px;
    line-height: 27px;
    max-height: 190px;
    overflow: hidden;
    transition: 1s;
}

.animal-link {
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    display: block;
    margin-top: 24px;
    position: relative;
    font-family: Rubik, sans-serif;
}

.link-chevron-block {
    height: 20px;
    width: 20px;
    color: #2F7CF4;
    font-weight: 500;
    background-color: rgba(47, 124, 244, 0.2);
    display: inline-block;
    border-radius: 10px;
    margin: 0px 0px 0px 10px;
    position: absolute;
    top: 0px;
}

.link-chevron-block::before {
    content: '';
    position: absolute;
    right: 8px;
    top: 6px;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #2F7CF4;
    border-right: 2px solid #2F7CF4;
    transform: rotate(305deg);
}

.collection-photo {
    width: 100%;
    border-radius: 10px;
}

.mob-collection-photo {
    display: none;
    margin-bottom: 20px;
}

.animal-collection-container {
    margin-bottom: 40px;
}

.collections-second-title {
    margin: 24px 0px 24px 0px;
    font-weight: 700;
    font-size: 64px;
    font-family: Rubik, sans-serif;
    color: #E3EAE6;
}

.collections-second-title-bold {
    font-weight: 900;
}

.collection-cover {
    background-position: center;
    height: 100%;
    border-radius: 22px;
    background-repeat: no-repeat;
}

.collection-item {
    height: 548px;
    width: 31%;
    margin-top: 20px;
    float: left;
    /*padding-right: 20px;*/
    margin-right: 27px;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.big-collection-item {
    width: calc(62% + 27px);
}

.collection-item-bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 268px;
    width: 100%;
    padding-right: 0px;
    background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, #000000 100%);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.collection-name-text {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.collection-name-block {
    position: absolute;
    bottom: 64px;
    padding: 0px 30px 0px 30px;
    font-family: Rubik, sans-serif;
}

.collection-count-text {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    font-family: Rubik, sans-serif;
}

.hidden {
    display: none;
}

.show-more-desc, .show-less-desc {
    cursor: pointer;
    color: #007aff;
}

.home-collection {
    margin: 0 2% 25px 0 !important;
    width: 32% !important;
}

.properties .home-collection:nth-child(3), .properties .home-collection:nth-child(6) {
    margin-right: 0px !important;
}

.properties .home-collection:nth-child(2):before, .properties .home-collection:nth-child(6):before {
    margin-top: 100% !important;
}

.home-collection-header {
    font-size: 1.6em;
    color: #444;
    font-weight: bold;
    margin-left: 8px;
    text-transform: uppercase;
}

.view-all-btn {
    border-radius: 12px;
    background-color: #00C853;
    color: #272727;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 14px 38px;
    padding-right: 58px;
    padding-left: 58px;
    margin-bottom: 10px;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 10px;
}

.view-all-btn:hover {
    color: white;
}

.list-header {
    margin-top: 50px;
    position: relative;
    margin-bottom: 12px;
}

.custom-list-searc {
    position: absolute;
    right: 0px;
    top: -6px;
}

.custom-lists {
    margin: 0 2% 25px 0 !important;
    width: 32% !important;
}

.page-home .properties .custom-lists:nth-child(4) {
    width: 66% !important;
}

.properties .custom-lists:nth-child(3), .properties .custom-lists:nth-child(5) {
    margin-right: 0px !important;
}

.properties .custom-lists:nth-child(2):before {
    margin-top: 100% !important;
}

.properties .custom-lists:nth-child(4):before {
    margin-top: 48.5% !important;
}

.list-pagination {
    margin-top: 38px;
    text-align: center;
}

.s-char-status-item-collection {
    width: 206px;
    background-position: center !important;
    background-size: cover !important;
}

.lists-page-container .block-with-ads {
    margin-bottom: 0px !important;
    margin-top: 22px !important;
}

.footer-email {
    position: absolute;
    right: 6px;
    top: 0px;
}

.animate-cover:hover .collection-cover {
    transform: scale(1);
}

.animate-cover .collection-cover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.page-cl-search {
    background-color: #CFF4DF !important;
    border: none !important;
    height: 38px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    line-height: 38px !important;
    font-family: Rubik, sans-serif !important;
    width: 340px !important;
    padding: 0px 16px !important;
}

.footer-email-mobile {
    margin-top: 7px;
    margin-bottom: 10px;
}

.show-more-animal-lists {
    border: 2px solid rgb(255,255,51);
    padding: 16px 70px;
    border-radius: 22px;
    text-transform: uppercase;
    color: rgb(51,51,51);
    font-weight: 500;
}

.show-more-animal-lists:hover {
    color: rgb(51,51,51);
}

.socials-list .at-resp-share-element .at-share-btn {
    transition: transform .2s ease-in-out !important;
}


@media only screen and (max-width : 992px) {

    .container-collection {
        padding-top: 240px;
    }

    .collection-title {
        font-weight: 800;
        font-size: 28px;
    }

    .collection-second-title {
        font-size: 14px;
    }

    .collection-animal-title {
        font-weight: 700;
        font-size: 18px;
    }

    .rght-column-text {
        font-size: 18px;
    }

    .mob-collection-photo {
        display: block;
    }

    .lft-block {
        width: 100%;
    }

    .rgt-block {
        display: none;
    }

    .collection-desc {
        font-size: 14px;
        line-height: 21px;
    }

    .collections-second-title {
        font-size: 24px;
    }

    .collection-name-text {
        font-size: 22px;
    }

    .collection-count-text {
        font-size: 14px;
    }

    .collection-item, .big-collection-item {
        width: 100%;
        padding-right: 0px;
    }

    .big-collection-item {
        margin: 12px 0px 0px 0px;
    }

    .collection-item-bottom {
        width: 100%;
    }
}

@media only screen and (max-width : 568px) {

    .page-home .properties .custom-lists:nth-child(4) {
        width: 100% !important;
    }

    .show-more-animal-lists {
        font-size: 3vw;
        display: inline-block;
        padding: 16px 24px;
    }

    .custom-list-searc {
        margin-top: 18px;
        position: relative;
    }

    .footer-email {
        display: none;
    }

    .category-letter-container {
        bottom: -144px;
    }

    .page-catalog .letter-page .overlay {
        padding: 80px 0 110px;
    }

}

@media only screen and (min-width : 568px) and (max-width : 950px) {

    .page-home .properties .property .caption .title {
        font-size: 1.6em;
    }

    .footer-email {
        display: none;
    }

    .item-animal .caption .name {
        font-size: 1.4em;
    }

}

@media only screen and (min-width : 950px) {

    .footer-email-mobile {
        display: none;
    }

}

@media only screen and (max-width : 1160px) and (min-width : 993px) {

    header .main-nav {
        width: 42%;
        margin-left: 29%;
    }

}

.gj-button-md,.gj-text-align-center{text-align:center}.gj-button-md,.gj-modal{overflow:hidden;outline:0}.gj-button-md,.gj-button-md-group{position:relative;vertical-align:middle}.gj-button,.gj-button-md,.gj-cursor-pointer{cursor:pointer}.gj-button{background-color:#f5f5f5;border:1px solid #ddd;color:#000;border-radius:3px;padding:6px 10px}.gj-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.gj-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.gj-margin-left-5{margin-left:5px}.gj-margin-left-10{margin-left:10px}.gj-width-full{width:100%}.gj-font-size-16{font-size:16px}.gj-hidden{display:none}.gj-button-md{background:0 0;border:none;border-radius:2px;color:rgba(0,0,0,.87);height:36px;margin:0;min-width:64px;padding:0 16px;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:500;text-transform:uppercase;letter-spacing:0;will-change:box-shadow;transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1);text-decoration:none;line-height:36px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.gj-button-md:hover{background-color:rgba(158,158,158,.2)}.gj-button-md:disabled{color:rgba(0,0,0,.26);background:0 0}.gj-button-md .gj-icon,.gj-button-md .material-icons{vertical-align:middle}.gj-button-md.gj-button-md-icon{width:24px;height:31px;min-width:24px;padding:0;display:table}ul.gj-list-bootstrap li [data-role=image],ul.gj-list-md li [data-role=checkbox],ul.gj-list-md li [data-role=image]{height:24px;width:24px}.gj-button-md.gj-button-md-icon .gj-icon,.gj-button-md.gj-button-md-icon .material-icons{display:table-cell;margin-right:0;width:24px;height:24px}.gj-button-md.active{background-color:rgba(158,158,158,.4)}.gj-button-md-group{display:inline-block}.gj-textbox-md{border:none;border-bottom:1px solid rgba(0,0,0,.42);display:block;font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:16px;padding:4px 0;margin:0;width:100%;background:0 0;text-align:left;color:rgba(0,0,0,.87)}.gj-textbox-md:active,.gj-textbox-md:focus{border-bottom:2px solid rgba(0,0,0,.42);outline:0}.gj-textbox-md::placeholder{color:#8e8e8e}.gj-textbox-md:-ms-input-placeholder{color:#8e8e8e}.gj-textbox-md::-ms-input-placeholder{color:#8e8e8e}.gj-md-spacer-24{min-width:24px;width:24px;display:inline-block}.gj-md-spacer-32{min-width:32px;width:32px;display:inline-block}.gj-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1203;display:none;-webkit-overflow-scrolling:touch;background-color:rgba(0,0,0,.54118);transition:.2s ease opacity;will-change:opacity}ul.gj-list li [data-role=wrapper]{display:table;width:100%}ul.gj-list li [data-role=checkbox],ul.gj-list li [data-role=image]{display:table-cell;vertical-align:middle;text-align:center}ul.gj-list li [data-role=display]{display:table-cell;vertical-align:middle;cursor:pointer}ul.gj-list li [data-role=display]:empty:before{content:"\200b"}ul.gj-list-bootstrap{padding-left:0;margin-bottom:0}ul.gj-list-bootstrap li{padding:0}ul.gj-list-bootstrap li [data-role=wrapper]{padding:0 10px}ul.gj-list-bootstrap li [data-role=checkbox]{width:24px;padding:3px}ul.gj-list-bootstrap li [data-role=display]{padding:8px 0 8px 4px}.list-group-item.active ul li,.list-group-item.active:focus ul li,.list-group-item.active:hover ul li{text-shadow:none;color:initial}ul.gj-list-md{padding:0;list-style:none;line-height:24px;letter-spacing:0;color:#616161}.gj-picker-md,ul.gj-list-md li{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.04em;line-height:1}ul.gj-list-md li{display:list-item;list-style-type:none;padding:0;min-height:unset;box-sizing:border-box;align-items:center;cursor:default;overflow:hidden;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}ul.gj-list-md li [data-role=display]{padding:8px 0 8px 5px;order:0;flex-grow:2;text-decoration:none;box-sizing:border-box;align-items:center;text-align:left;color:rgba(0,0,0,.87)}ul.gj-list-md li.disabled>[data-role=wrapper]>[data-role=display]{color:#9E9E9E}.gj-list-md-active{background:#e0e0e0;color:#3f51b5}.gj-picker{position:absolute;z-index:1203;background-color:#fff}.gj-picker .selected{color:#fff}.gj-picker-md{color:rgba(0,0,0,.87);border:1px solid #E0E0E0}.gj-modal .gj-picker-md{border:0}.gj-picker-md [role=header]{color:rgba(255,255,255,.54);display:flex;background:#2196f3;align-items:baseline;user-select:none;justify-content:center}.gj-picker-md [role=footer]{float:right;padding:10px}.gj-picker-md [role=footer] button.gj-button-md{color:#2196f3;font-weight:700;font-size:13px}.gj-picker-bootstrap{border:1px solid #E0E0E0}.gj-picker-bootstrap .selected{color:#888}.gj-picker-bootstrap [role=header]{background:#eee;color:#AAA}@font-face{font-family:gijgo-material;src:url(../fonts/gijgo-material.eot?235541);src:url(../fonts/gijgo-material.eot?235541#iefix) format('embedded-opentype'),url(../fonts/gijgo-material.ttf?235541) format('truetype'),url(../fonts/gijgo-material.woff?235541) format('woff'),url(../fonts/gijgo-material.svg?235541#gijgo-material) format('svg');font-weight:400;font-style:normal}.gj-icon{font-family:gijgo-material!important;font-size:24px;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;font-feature-settings:"liga";-webkit-font-variant-ligatures:discretionary-ligatures;font-variant-ligatures:discretionary-ligatures;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gj-icon.undo:before{content:"\e900"}.gj-icon.vertical-align-top:before{content:"\e901"}.gj-icon.vertical-align-center:before{content:"\e902"}.gj-icon.vertical-align-bottom:before{content:"\e903"}.gj-icon.arrow-dropup:before{content:"\e904"}.gj-icon.clock:before{content:"\e905"}.gj-icon.refresh:before{content:"\e906"}.gj-icon.last-page:before{content:"\e907"}.gj-icon.first-page:before{content:"\e908"}.gj-icon.cancel:before{content:"\e909"}.gj-icon.clear:before{content:"\e90a"}.gj-icon.check-circle:before{content:"\e90b"}.gj-icon.delete:before{content:"\e90c"}.gj-icon.arrow-upward:before{content:"\e90d"}.gj-icon.arrow-forward:before{content:"\e90e"}.gj-icon.arrow-downward:before{content:"\e90f"}.gj-icon.arrow-back:before{content:"\e910"}.gj-icon.list-numbered:before{content:"\e911"}.gj-icon.list-bulleted:before{content:"\e912"}.gj-icon.indent-increase:before{content:"\e913"}.gj-icon.indent-decrease:before{content:"\e914"}.gj-icon.redo:before{content:"\e915"}.gj-icon.align-right:before{content:"\e916"}.gj-icon.align-left:before{content:"\e917"}.gj-icon.align-justify:before{content:"\e918"}.gj-icon.align-center:before{content:"\e919"}.gj-icon.strikethrough:before{content:"\e91a"}.gj-icon.italic:before{content:"\e91b"}.gj-icon.underlined:before{content:"\e91c"}.gj-icon.bold:before{content:"\e91d"}.gj-icon.arrow-dropdown:before{content:"\e91e"}.gj-icon.done:before{content:"\e91f"}.gj-icon.pencil:before{content:"\e920"}.gj-icon.minus:before{content:"\e921"}.gj-icon.plus:before{content:"\e922"}.gj-icon.chevron-up:before{content:"\e923"}.gj-icon.chevron-right:before{content:"\e924"}.gj-icon.chevron-down:before{content:"\e925"}.gj-icon.chevron-left:before{content:"\e926"}.gj-icon.event:before{content:"\e927"}.gj-draggable{cursor:move}.gj-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none;z-index:1203}.gj-dialog-bootstrap [data-role=title],.gj-dialog-bootstrap4 [data-role=title]{display:inline}.gj-dialog-bootstrap,.gj-dialog-bootstrap4,.gj-dialog-md{z-index:1202;overflow:hidden}.gj-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.gj-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.gj-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.gj-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.gj-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.gj-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.gj-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.gj-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.gj-dialog-footer{position:absolute;bottom:0;width:100%;margin-top:0}.gj-dialog-scrollable [data-role=body]{overflow-x:hidden;overflow-y:scroll}.gj-dialog-bootstrap [data-role=close]{line-height:1.42857143}.gj-dialog-bootstrap4 [data-role=close]{line-height:1.5}.gj-dialog-md{background-color:#FFF;border:none;box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);box-sizing:border-box;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-background-clip:padding-box;background-clip:padding-box;outline:0}.gj-dialog-md-header{padding:24px 24px 0;font-family:Roboto,Helvetica,Arial,sans-serif}.gj-dialog-md-title{margin:0;font-weight:400;display:inline;line-height:28px;font-size:20px}.gj-dialog-md-close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0;float:right;line-height:28px;font-size:28px}.gj-dialog-md-body{padding:20px 24px 24px;color:rgba(0,0,0,.54);font-family:Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:20px}.gj-dialog-md-footer{padding:8px 8px 8px 24px;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;box-sizing:border-box}.gj-dialog-md-footer>:first-child{margin-right:0}.gj-dialog-md-footer>*{margin-right:8px;height:36px}DIV.gj-grid-wrapper{margin:auto;position:relative;clear:both;z-index:1}TABLE.gj-grid{margin:auto;border-collapse:collapse;width:100%;table-layout:fixed}TABLE.gj-grid THEAD TH [data-role=selectAll]{margin:auto}table.gj-grid-bootstrap thead th [data-role=sorticon],table.gj-grid-md thead th [data-role=sorticon]{margin-left:5px}TABLE.gj-grid THEAD TH [data-role=title],TABLE.gj-grid THEAD TH [data-role=sorticon]{display:inline-block}TABLE.gj-grid THEAD TH{overflow:hidden;text-overflow:ellipsis}TABLE.gj-grid.autogrow-header-row THEAD TH{overflow:auto;text-overflow:initial;white-space:pre-wrap;-ms-word-break:break-word;word-break:break-word}TABLE.gj-grid>tbody>tr>td{overflow:hidden;position:relative}table.gj-grid tbody div[data-role=display]{vertical-align:middle;text-indent:0;white-space:pre-wrap;-ms-word-break:break-word;word-break:break-word}table.gj-grid.fixed-body-rows tbody div[data-role=display]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-ms-word-break:initial;word-break:initial}table.gj-grid tfoot DIV[data-role=display]{vertical-align:middle;text-indent:0;display:flex}TABLE.gj-grid .fa{padding:2px}TABLE.gj-grid>tbody>tr>td>div{padding:2px;overflow:hidden}DIV.gj-grid-wrapper DIV.gj-grid-loading-cover{background:#BBB;opacity:.5;position:absolute;vertical-align:middle}DIV.gj-grid-wrapper DIV.gj-grid-loading-text{position:absolute;font-weight:700}table.gj-grid-bootstrap thead th{background-color:#f5f5f5;vertical-align:middle}table.gj-grid-bootstrap thead th [data-role=sorticon] i.gj-icon,table.gj-grid-bootstrap thead th [data-role=sorticon] i.material-icons{position:absolute;font-size:20px;top:15px}table.gj-grid-bootstrap tbody tr td div[data-role=display]{padding:0}.gj-grid-bootstrap-4 .gj-checkbox-bootstrap{display:inline-block;padding-top:2px}.gj-grid-bootstrap-4 tbody tr.active{background-color:rgba(0,0,0,.075)}.gj-grid-md{position:relative;border:1px solid #e0e0e0;border-collapse:collapse;white-space:nowrap;font-size:13px;font-family:Roboto,Helvetica,Arial,sans-serif;background-color:#fff}.gj-grid-md td:first-of-type,.gj-grid-md th:first-of-type{padding-left:24px}.gj-grid-md td,.gj-grid-md th{padding:12px 18px;position:relative;box-sizing:border-box}.gj-grid-md th{vertical-align:bottom;font-weight:700;line-height:31px;letter-spacing:0;height:56px;font-size:12px;color:rgba(0,0,0,.54);text-align:right}.gj-grid-md td{height:48px;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0;text-align:left;color:rgba(0,0,0,.87)}.gj-grid-bootstrap tbody tr.gj-grid-top-border td,.gj-grid-md tbody tr.gj-grid-top-border td{border-top:2px solid #777}.gj-grid-bootstrap tbody tr.gj-grid-bottom-border td,.gj-grid-md tbody tr.gj-grid-bottom-border td{border-bottom:2px solid #777}.gj-grid-md tbody tr{position:relative;height:48px;transition-duration:.28s;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-property:background-color}.gj-grid-md tbody tr:hover{background-color:#EEE}.gj-grid-md tbody tr.gj-grid-md-select{background-color:#F5F5F5}table.gj-grid-md thead th [data-role=sorticon] i.gj-icon,table.gj-grid-md thead th [data-role=sorticon] i.material-icons{position:absolute;font-size:16px;top:19px}table.gj-grid-md thead th.gj-grid-select-all{padding-bottom:3px}@media only all{td.display-1120,td.display-320,td.display-480,td.display-640,td.display-800,td.display-960,th.display-1120,th.display-320,th.display-480,th.display-640,th.display-800,th.display-960{display:none}}@media screen and (min-width:20em){TABLE.gj-grid-bootstrap td.display-320,TABLE.gj-grid-bootstrap th.display-320{display:table-cell}}@media screen and (min-width:30em){TABLE.gj-grid-bootstrap td.display-480,TABLE.gj-grid-bootstrap th.display-480{display:table-cell}}@media screen and (min-width:40em){TABLE.gj-grid-bootstrap td.display-640,TABLE.gj-grid-bootstrap th.display-640{display:table-cell}}@media screen and (min-width:50em){TABLE.gj-grid-bootstrap td.display-800,TABLE.gj-grid-bootstrap th.display-800{display:table-cell}}@media screen and (min-width:60em){TABLE.gj-grid-bootstrap td.display-960,TABLE.gj-grid-bootstrap th.display-960{display:table-cell}}@media screen and (min-width:70em){TABLE.gj-grid-bootstrap td.display-1120,TABLE.gj-grid-bootstrap th.display-1120{display:table-cell}}.gj-grid-md tfoot tr th{padding-right:14px}.gj-grid-md tfoot tr[data-role=pager] .gj-grid-mdl-pager-label{padding-left:5px;padding-right:5px}.gj-grid-md tfoot tr[data-role=pager] .gj-dropdown-md{margin-left:12px}.gj-grid-md tfoot tr[data-role=pager] .gj-dropdown-md [role=presenter]{font-size:12px;font-weight:700;color:rgba(0,0,0,.54)}.gj-grid-md tfoot tr[data-role=pager] .gj-dropdown-md [role=presenter] [role=display]{text-align:right}.gj-grid-md tfoot tr[data-role=pager] .gj-grid-md-limit-select{margin-left:10px;font-size:12px;font-weight:700;color:rgba(0,0,0,.54)}.gj-grid-bootstrap tfoot tr[data-role=pager] th{line-height:30px;background-color:#f5f5f5}.gj-grid-bootstrap tfoot tr[data-role=pager] th>div>button,.gj-grid-bootstrap tfoot tr[data-role=pager] th>div>div{margin-right:5px}.gj-grid-bootstrap-4 tfoot tr[data-role=pager] th>div button{height:34px}.gj-grid-bootstrap-4 tfoot tr[data-role=pager] th div .gj-dropdown-bootstrap-4 .gj-dropdown-expander-mi .gj-icon{top:5px}.gj-grid-bootstrap-3 tfoot tr[data-role=pager] th>div>input{margin-right:5px;width:40px;text-align:right;display:inline-block;font-weight:700}.gj-grid-bootstrap-4 tfoot tr[data-role=pager] th>div>div.input-group{width:40px}.gj-grid-bootstrap-4 tfoot tr[data-role=pager] th>div>div.input-group input{text-align:right;font-weight:700;height:34px;padding-top:2px;padding-bottom:6px}.gj-grid-bootstrap tfoot tr[data-role=pager] th>div>select{display:inline-block;margin-right:5px;width:60px}.gj-grid-bootstrap tfoot tr[data-role=pager] th .gj-dropdown-bootstrap .gj-list-bootstrap [data-role=display]{line-height:14px}.gj-grid-bootstrap tfoot tr[data-role=pager] th .gj-dropdown-bootstrap [role=presenter] [role=display]{font-weight:700}.gj-grid-bootstrap tfoot tr[data-role=pager] th .gj-dropdown-bootstrap-3 [role=presenter]{padding:2px 8px}.gj-grid-bootstrap tfoot tr[data-role=pager] th .gj-dropdown-bootstrap-4 [role=presenter]{padding:1px 8px}.gj-grid thead tr th div.gj-grid-column-resizer-wrapper{position:relative;width:100%;height:0;top:0;left:0;padding:0}span.gj-grid-column-resizer{position:absolute;right:0;width:10px;top:-100px;height:300px;z-index:1203;cursor:e-resize}.gj-grid-resize-cursor{cursor:e-resize}.gj-grid-md tbody tr td.gj-grid-left-border,.gj-grid-md thead tr th.gj-grid-left-border{border-left:3px solid #777}.gj-grid-md tbody tr td.gj-grid-right-border,.gj-grid-md thead tr th.gj-grid-right-border{border-right:3px solid #777}.gj-grid-bootstrap tbody tr td.gj-grid-left-border,.gj-grid-bootstrap thead tr th.gj-grid-left-border{border-left:5px solid #ddd}.gj-grid-bootstrap tbody tr td.gj-grid-right-border,.gj-grid-bootstrap thead tr th.gj-grid-right-border{border-right:5px solid #ddd}.gj-dirty{position:absolute;top:0;left:0;border-style:solid;border-width:3px;border-color:red transparent transparent red;padding:0;overflow:hidden;vertical-align:top}.gj-grid-md tbody tr td.gj-grid-management-column{padding:3px}.gj-grid-md tbody tr td[data-mode=edit]{padding:0 18px}.gj-grid-bootstrap tbody tr td[data-mode=edit],.gj-grid-bootstrap tbody tr td[data-mode=edit] [data-role=edit],.gj-grid-md tbody .gj-dropdown-md [role=presenter] [role=display]{padding:0}.gj-grid-bootstrap-3 tbody tr td.gj-grid-management-column{padding:3px}.gj-grid-bootstrap-3 tbody tr td[data-mode=edit]{height:38px}.gj-grid-bootstrap-3 tbody tr td[data-mode=edit] [data-role=edit] input[type=text]{height:37px;padding:8px}.gj-grid-bootstrap-3 tbody tr td[data-mode=edit] .gj-dropdown-bootstrap [role=presenter]{border:0;border-radius:0;height:37px;padding-left:8px}.gj-grid-bootstrap-3 tbody tr td[data-mode=edit] .gj-datepicker-bootstrap{height:37px}.gj-grid-bootstrap-3 tbody tr td[data-mode=edit] .gj-datepicker-bootstrap [role=input]{height:37px;border:0;border-radius:0}.gj-grid-bootstrap-3 tbody tr td[data-mode=edit] .gj-datepicker-bootstrap [role=right-icon]{border:0;border-radius:0}.gj-grid-bootstrap-3 tbody tr td[data-mode=edit] .gj-checkbox-bootstrap{display:inline-block;padding-top:10px;height:32px}.gj-grid-bootstrap-4 tbody tr td.gj-grid-management-column{padding:6px}.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] [data-role=edit] input[type=text]{height:48px;padding-left:12px}.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] .gj-dropdown-bootstrap [role=presenter]{border:0;border-radius:0;height:48px;padding-left:12px;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif}.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] .gj-dropdown-bootstrap-4 [role=expander].gj-dropdown-expander-mi .gj-icon,.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] .gj-dropdown-bootstrap-4 [role=expander].gj-dropdown-expander-mi .material-icons{top:13px}.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] .gj-datepicker-bootstrap{height:48px}.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] .gj-datepicker-bootstrap [role=input]{height:48px;border:0;border-radius:0}.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] .gj-datepicker-bootstrap [role=right-icon]{background-color:#fff}.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] .gj-datepicker-bootstrap [role=right-icon] button{border:0;border-radius:0;width:43px;position:relative}.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] .gj-datepicker-bootstrap [role=right-icon] .gj-icon,.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] .gj-datepicker-bootstrap [role=right-icon] .material-icons{top:13px;left:10px;font-size:24px}.gj-grid-bootstrap-4 tbody tr td[data-mode=edit] .gj-checkbox-bootstrap{display:inline-block;padding-top:15px;height:42px}.gj-grid-md thead tr[data-role=filter] th{border-top:1px solid #e0e0e0}div.gj-grid-wrapper div.gj-grid-bootstrap-toolbar{background-color:#f5f5f5;padding:8px;font-weight:700;border:1px solid #ddd}div.gj-grid-wrapper div.gj-grid-bootstrap-4-toolbar{background-color:#f5f5f5;padding:12px;font-weight:700;border:1px solid #ddd}div.gj-grid-wrapper div.gj-grid-md-toolbar{font-weight:700;font-size:24px;font-family:Helvetica,Arial,sans-serif;background-color:#fff;border-top:1px solid #e0e0e0;border-left:1px solid #e0e0e0;border-right:1px solid #e0e0e0;border-bottom:0;border-collapse:collapse;padding:0 18px;line-height:56px}.gj-checkbox-bootstrap,.gj-checkbox-md{min-width:0;font-weight:400;text-align:center;position:relative}table.gj-grid-scrollable tbody{overflow-y:auto;overflow-x:hidden;display:block}table.gj-grid-md.gj-grid-scrollable{border-bottom:0}table.gj-grid-md.gj-grid-scrollable tbody{border-right:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}table.gj-grid-md.gj-grid-scrollable tfoot{border-bottom:1px solid #e0e0e0}table.gj-grid-bootstrap.gj-grid-scrollable{border-bottom:0}table.gj-grid-bootstrap.gj-grid-scrollable tbody{border-right:1px solid #ddd;border-bottom:1px solid #ddd}table.gj-grid-bootstrap.gj-grid-scrollable tbody tr[data-role=row]:first-child td{border-top:0}table.gj-grid-bootstrap.gj-grid-scrollable tbody tr[data-role=row] td:first-child{border-left:0}table.gj-grid-bootstrap.gj-grid-scrollable tbody tr[data-role=row] td:last-child{border-right:0}table.gj-grid-bootstrap.gj-grid-scrollable tfoot{border-bottom:1px solid #ddd}ul.gj-list li [data-role=spacer]{display:table-cell}ul.gj-list li [data-role=expander]{display:table-cell;vertical-align:middle;text-align:center;cursor:pointer}[data-type=tree] ul li [data-role=expander].gj-tree-font-awesome-expander,[data-type=tree] ul li [data-role=expander].gj-tree-glyphicons-expander,[data-type=tree] ul li [data-role=expander].gj-tree-material-icons-expander{width:24px}[data-type=tree] ul li [data-role=expander].gj-tree-glyphicons-expander .glyphicon{top:4px;height:24px}.gj-tree-bootstrap-3 ul.gj-list-bootstrap li{border:0;border-radius:0;color:#333}.gj-tree-bootstrap-3 ul.gj-list-bootstrap li.active{color:#fff}.gj-tree-bootstrap-3 ul.gj-list-bootstrap li.disabled{color:#777;background-color:#eee}.gj-tree-bootstrap-4 ul.gj-list-bootstrap li{border:0;border-radius:0;color:#212529}.gj-tree-bootstrap-4 ul.gj-list-bootstrap li.active{color:#fff}.gj-tree-bootstrap-4 ul.gj-list-bootstrap li.disabled{color:#868e96}.gj-tree-bootstrap-4 ul.gj-list-bootstrap li ul.gj-list-bootstrap{width:100%}.gj-tree-bootstrap-border ul.gj-list-bootstrap li{border:1px solid #ddd}.gj-tree-bootstrap-border ul.gj-list-bootstrap li ul.gj-list-bootstrap li{border-left:0;border-right:0}.gj-tree-bootstrap-border ul.gj-list-bootstrap li:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.gj-tree-bootstrap-border ul.gj-list-bootstrap li:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.gj-tree-bootstrap-border ul.gj-list-bootstrap li ul.gj-list-bootstrap li:first-child{border-top-left-radius:0;border-top-right-radius:0}.gj-tree-bootstrap-border ul.gj-list-bootstrap li ul.gj-list-bootstrap li:last-child{border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}ul.gj-list-bootstrap li [data-role=expander].gj-tree-material-icons-expander{padding-top:8px;padding-bottom:4px}.gj-tree-drag-el,.gj-tree-drag-el li{padding:0;margin:0}ul.gj-list-bootstrap li [data-role=expander].gj-tree-material-icons-expander .gj-icon{width:24px;height:24px}ul.gj-list-md li.disabled>[data-role=wrapper]>[data-role=expander]{color:#9E9E9E}.gj-tree-md-border ul.gj-list-md li{border:1px solid #616161;margin-bottom:-1px}.gj-tree-md-border ul.gj-list-md li ul.gj-list-md li{border-left:0;border-right:0}.gj-tree-md-border ul.gj-list-md li ul.gj-list-md li:last-child{border-bottom:0}.gj-tree-drop-above{border-top:1px solid #000}.gj-tree-bootstrap-3 ul.gj-list-bootstrap li [data-role=wrapper].drop-above,.gj-tree-bootstrap-4 ul.gj-list-bootstrap li [data-role=wrapper].drop-above{border-top:2px solid #000}.gj-tree-drop-below{border-bottom:1px solid #000}.gj-tree-bootstrap-3 ul.gj-list-bootstrap li [data-role=wrapper].drop-below,.gj-tree-bootstrap-4 ul.gj-list-bootstrap li [data-role=wrapper].drop-below{border-bottom:2px solid #000}.gj-tree-drag-el{z-index:1203}.gj-tree-drag-el [data-role=wrapper]{cursor:move;display:table}.gj-tree-drag-el [data-role=indicator]{width:14px;padding:0 3px;display:table-cell;vertical-align:middle;text-align:center}.gj-tree-bootstrap-drag-el li.list-group-item{border:0;background:unset}.gj-tree-bootstrap-drag-el [data-role=indicator],.gj-tree-md-drag-el [data-role=indicator]{width:24px;height:24px;padding:0}.gj-checkbox-bootstrap{font-size:0;margin:0;width:18px;height:18px;display:inline}.gj-checkbox-bootstrap input[type=checkbox]{display:none;margin-bottom:-12px}.gj-checkbox-bootstrap span{background:#fff;display:block;content:" ";width:18px;height:18px;line-height:11px;font-size:11px;padding:2px;color:#555;border:1px solid #CCC;border-radius:3px;transition:box-shadow .2s linear,border-color .2s linear;cursor:pointer;margin:auto}.gj-checkbox-bootstrap input[type=checkbox]:focus+span:before{outline:0;box-shadow:0 0 0 0 #66afe9,0 0 6px rgba(102,175,233,.6);border-color:#66afe9}.gj-datepicker-bootstrap :active,.gj-datepicker-bootstrap :focus,.gj-timepicker-bootstrap :active,.gj-timepicker-bootstrap :focus{box-shadow:none}.gj-checkbox-bootstrap input[type=checkbox][disabled]+span{opacity:.6;cursor:not-allowed}.gj-checkbox-bootstrap.gj-checkbox-bootstrap-4 span{line-height:16px;padding:0}.gj-checkbox-bootstrap-4.gj-checkbox-material-icons input[type=checkbox]:checked+span:after,.gj-checkbox-bootstrap-4.gj-checkbox-material-icons input[type=checkbox]:indeterminate+span:after{font-size:16px}.gj-checkbox-md{font-size:0;margin:0;width:16px;height:16px}.gj-checkbox-md input[type=checkbox]{display:none;margin-bottom:-12px}.gj-checkbox-md span{display:inline-block;box-sizing:border-box;width:16px;height:16px;margin:0;cursor:pointer;overflow:hidden;border:2px solid #616161;border-radius:2px;z-index:2}.gj-checkbox-md input[type=checkbox]:checked+span{border:2px solid #536DFE}.gj-checkbox-md input[type=checkbox]:checked+span:after{color:#FFF;background-color:#536DFE;position:absolute;left:1px;top:-15px}.gj-checkbox-md input[type=checkbox]:indeterminate+span{border:2px solid #616161}.gj-checkbox-md input[type=checkbox]:indeterminate+span:after{color:#616161;position:absolute;left:1px;top:-15px}.gj-checkbox-md input[type=checkbox][disabled]+span{border:2px solid #9E9E9E}.gj-editor-md,.gj-editor-md [role=body]{border:1px solid rgba(158,158,158,.2)}.gj-checkbox-md input[type=checkbox][disabled]+span:after{background-color:#9E9E9E}.gj-checkbox-md input[type=checkbox][disabled]:indeterminate+span:after{color:#FFF}.gj-checkbox-material-icons input[type=checkbox]:checked+span:after{content:"\e91f";font-size:14px;font-weight:700;white-space:pre}.gj-checkbox-material-icons input[type=checkbox]:indeterminate+span:after{content:"\e921";font-size:14px;font-weight:700;white-space:pre}.gj-checkbox-glyphicons input[type=checkbox]:checked+span:after{display:inline-block;font-family:'Glyphicons Halflings';content:"\e013 "}.gj-checkbox-glyphicons input[type=checkbox]:indeterminate+span:after{display:inline-block;font-family:'Glyphicons Halflings';content:"\2212 ";padding-right:1px}.gj-checkbox-fontawesome .fa{font-size:14px}.gj-checkbox-bootstrap.gj-checkbox-fontawesome .fa{line-height:18px}.gj-checkbox-fontawesome input[type=checkbox]:checked+span:before{content:"\f00c "}.gj-checkbox-fontawesome input[type=checkbox]:indeterminate+span:before{content:"\f068 "}.gj-editor [role=body]{overflow:auto;outline:transparent solid 0;box-sizing:border-box}.gj-editor-md{padding:7px;font-family:Roboto,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:0}.gj-editor-md [role=toolbar]{margin-bottom:7px}.gj-editor-md [role=toolbar] .gj-button-md{min-width:54px;margin-right:5px}.gj-editor-md [role=toolbar] .gj-button-md .gj-icon{width:24px;height:24px}.gj-editor-bootstrap,.gj-editor-bootstrap [role=body]{border:1px solid #eceeef}.gj-editor-md p{margin:0;padding:0}.gj-editor-md blockquote{font-size:14px}.gj-editor-bootstrap{padding:7px}.gj-editor-bootstrap [role=toolbar]{margin-bottom:7px}.gj-editor-bootstrap [role=toolbar] .btn-group{margin-right:10px}.gj-editor-bootstrap [role=toolbar] button{height:36px}.gj-editor-bootstrap p{margin:0;padding:0}.gj-editor-bootstrap blockquote{font-size:14px}.gj-datepicker-md,.gj-dropdown-md [role=presenter]{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.04em}.gj-dropdown{position:relative;border-collapse:separate}.gj-dropdown [role=presenter]{display:table;cursor:pointer;outline:0;position:relative}.gj-dropdown [role=presenter] [role=display]{display:table-cell;text-align:left;width:100%}.gj-dropdown [role=presenter] [role=expander]{display:table-cell;vertical-align:middle;text-align:center;width:24px;height:24px}.gj-dropdown-md [role=presenter]{line-height:1;color:rgba(0,0,0,.87);padding:0;border:0;border-bottom:1px solid rgba(0,0,0,.42);background:0 0}.gj-dropdown-md [role=presenter]:active,.gj-dropdown-md [role=presenter]:focus{border-bottom:2px solid rgba(0,0,0,.42)}.gj-dropdown-md [role=presenter] [role=display]{padding:4px 0;line-height:18px}.gj-dropdown-md [role=presenter] [role=display] .placeholder{color:#8e8e8e}.gj-dropdown-list-md{position:absolute;top:0;left:0;background-color:#f5f5f5;color:#000;margin:0;z-index:1203}.gj-dropdown-list-md li.active,.gj-dropdown-list-md li:hover{background-color:#eee}.gj-dropdown-bootstrap [role=presenter] [role=display]{padding-right:5px}.gj-dropdown-bootstrap [role=presenter] [role=expander]{padding-left:5px}.gj-dropdown-bootstrap [role=presenter] [role=expander].gj-dropdown-expander-mi{width:24px}.gj-dropdown-bootstrap-3 [role=presenter] [role=display]{line-height:20px}.gj-dropdown-bootstrap-3 [role=presenter] [role=display] .placeholder{color:#9999b3}.gj-dropdown-bootstrap-3 [role=presenter] [role=expander]{width:20px;height:20px}.gj-dropdown-bootstrap-3 [role=presenter] [role=expander].gj-dropdown-expander-mi .gj-icon,.gj-dropdown-bootstrap-3 [role=presenter] [role=expander].gj-dropdown-expander-mi .material-icons{top:5px;right:10px;position:absolute}.gj-dropdown-bootstrap-4 [role=presenter]{border:1px solid #ced4da}.gj-dropdown-bootstrap-4 [role=presenter] [role=display]{line-height:24px}.gj-dropdown-bootstrap-4 [role=presenter] [role=expander].gj-dropdown-expander-mi .gj-icon,.gj-dropdown-bootstrap-4 [role=presenter] [role=expander].gj-dropdown-expander-mi .material-icons{top:7px;right:10px;position:absolute}.gj-dropdown-list-bootstrap{position:absolute;top:32px;left:0;margin:0;z-index:1203}.gj-datepicker [role=input]::-ms-clear{display:none}.gj-datepicker [role=right-icon]{cursor:pointer}.gj-picker div[role=navigator]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.gj-picker div[role=navigator] div{cursor:pointer;position:relative;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.gj-datepicker-md{line-height:1;color:rgba(0,0,0,.87);position:relative}.gj-datepicker-md [role=right-icon]{position:absolute;right:0;top:0;font-size:24px}.gj-datepicker-md.small .gj-textbox-md{font-size:14px}.gj-datepicker-md.small .gj-icon{font-size:22px}.gj-datepicker-md.large .gj-textbox-md{font-size:18px}.gj-datepicker-md.large .gj-icon{font-size:28px}.gj-picker-md.datepicker [role=header]{padding:20px;display:block}.gj-picker-md.datepicker [role=header] [role=year]{font-size:17px;padding-bottom:5px;cursor:pointer}.gj-picker-md.datepicker [role=header] [role=date]{font-size:36px;cursor:pointer}.gj-picker-md div[role=navigator]{height:42px;line-height:42px}.gj-picker div[role=navigator] div[role=period]{width:100%;text-align:center;font-weight:700;font-size:15px}.gj-picker-md div[role=navigator] div:first-child,.gj-picker-md div[role=navigator] div:last-child{max-width:42px}.gj-picker-md div[role=navigator] div i.gj-icon,.gj-picker-md div[role=navigator] div i.material-icons{position:absolute;top:8px}.gj-picker-md div[role=navigator] div:first-child i.gj-icon,.gj-picker-md div[role=navigator] div:first-child i.material-icons{left:10px}.gj-picker-md div[role=navigator] div:last-child i.gj-icon,.gj-picker-md div[role=navigator] div:last-child i.material-icons{right:11px}.gj-picker-md table thead{color:#9E9E9E}.gj-picker-md table tr td div,.gj-picker-md table tr th div{display:block;width:40px;height:40px;line-height:40px;font-size:13px;text-align:center;vertical-align:middle}[type=year].gj-picker-md table tr td div,[type=decade].gj-picker-md table tr td div,[type=century].gj-picker-md table tr td div{width:73px;height:73px;line-height:73px;cursor:pointer}.gj-picker-md table tr td.gj-cursor-pointer div:hover{background:#EEE;border-radius:50%;color:rgba(0,0,0,.87)}.gj-picker-md table tr td.disabled div,.gj-picker-md table tr td.other-month div{color:#BDBDBD}.gj-picker-md table tr td.focused div{background:#E0E0E0;border-radius:50%}.gj-picker-md table tr td.today div{color:#1976D2}.gj-picker-md table tr td.selected.gj-cursor-pointer div{color:#FFF;background:#1976D2;border-radius:50%}.gj-picker-md table tr td.calendar-week div{font-weight:700}.gj-picker-bootstrap{border:1px solid rgba(0,0,0,.15);border-radius:4px;padding:4px}.gj-modal .gj-picker-bootstrap{padding:0}.gj-picker-bootstrap.datepicker [role=header]{padding:10px 20px;display:block}.gj-picker-bootstrap.datepicker [role=header] [role=year]{font-size:15px;cursor:pointer}.gj-picker-bootstrap [role=header] [role=date]{font-size:24px;cursor:pointer}.gj-modal .gj-picker-bootstrap.datepicker [role=body]{padding:15px}.gj-picker-bootstrap div[role=navigator]{height:30px;line-height:30px;text-align:center}.gj-picker-bootstrap div[role=navigator] div:first-child,.gj-picker-bootstrap div[role=navigator] div:last-child{max-width:30px}.gj-picker-bootstrap table tr td div,.gj-picker-bootstrap table tr th div{display:block;width:30px;height:30px;line-height:30px;text-align:center;vertical-align:middle}[type=year].gj-picker-bootstrap table tr td div,[type=decade].gj-picker-bootstrap table tr td div,[type=century].gj-picker-bootstrap table tr td div{width:53px;height:53px;line-height:53px;cursor:pointer}.gj-picker-bootstrap table tr th div i,.gj-picker-bootstrap table tr th div span{line-height:30px}.gj-picker-bootstrap div[role=navigator] .gj-icon,.gj-picker-bootstrap div[role=navigator] .material-icons{margin:3px}.gj-picker-bootstrap table tr td.focused div,.gj-picker-bootstrap table tr td.gj-cursor-pointer div:hover{background:#EEE;border-radius:4px;color:#212529}.gj-picker-bootstrap table tr td.today div{color:#204d74;font-weight:700}.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div{color:#fff;background-color:#204d74;border-color:#122b40;border-radius:4px}.gj-picker-bootstrap table tr td.disabled div,.gj-picker-bootstrap table tr td.other-month div{color:#777}.gj-datepicker-bootstrap span[role=right-icon].input-group-addon{border-left:0;position:relative;border-radius:0 4px 4px 0}.gj-datepicker-bootstrap span[role=right-icon].input-group-addon .gj-icon,.gj-datepicker-bootstrap span[role=right-icon].input-group-addon .material-icons{position:absolute;top:7px;left:7px}.gj-datepicker-bootstrap [role=right-icon] button{width:38px;position:relative;border:1px solid #ced4da}.gj-datepicker-bootstrap [role=right-icon] button:hover{color:#6c757d;background-color:transparent}.gj-datepicker-bootstrap.input-group-sm [role=right-icon] button{width:30px}.gj-datepicker-bootstrap.input-group-lg [role=right-icon] button{width:48px}.gj-datepicker-bootstrap [role=right-icon] button .gj-icon,.gj-datepicker-bootstrap [role=right-icon] button .material-icons{position:absolute;font-size:21px;top:9px;left:9px}.gj-datepicker-bootstrap.input-group-sm [role=right-icon] button .gj-icon,.gj-datepicker-bootstrap.input-group-sm [role=right-icon] button .material-icons{top:6px;left:6px;font-size:19px}.gj-datepicker-bootstrap.input-group-lg [role=right-icon] button .gj-icon,.gj-datepicker-bootstrap.input-group-lg [role=right-icon] button .material-icons{font-size:27px;top:10px;left:10px}.gj-timepicker [role=input]::-ms-clear{display:none}.gj-timepicker [role=right-icon]{cursor:pointer}.gj-picker.timepicker [role=header]{font-size:58px;padding:20px 0;line-height:58px;display:flex;align-items:baseline;user-select:none;justify-content:center}.gj-picker.timepicker [role=header] div{cursor:pointer;width:66px;text-align:right}.gj-picker [role=header] [role=mode]{position:relative;width:0}.gj-picker [role=header] [role=mode] span{position:absolute;left:7px;line-height:18px;font-size:18px}.gj-picker [role=header] [role=mode] span[role=am]{top:7px}.gj-picker [role=header] [role=mode] span[role=pm]{bottom:7px}.gj-picker [role=body] [role=dial]{width:256px;color:rgba(0,0,0,.87);height:256px;position:relative;background:#eee;border-radius:50%;margin:10px}.gj-picker-md .arrow-begin,.gj-picker-md [role=body] [role=arrow]{background-color:#2196f3}.gj-picker [role=body] [role=hour]{top:calc(50% - 16px);left:calc(50% - 16px);width:32px;height:32px;cursor:pointer;position:absolute;font-size:14px;text-align:center;line-height:32px;user-select:none;pointer-events:none}.gj-colorpicker-md,.gj-timepicker-md{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;letter-spacing:.04em;line-height:1}.gj-picker [role=body] [role=hour].selected{color:rgba(255,255,255,1)}.gj-picker [role=body] [role=arrow]{top:calc(50% - 1px);left:50%;height:2px;position:absolute;pointer-events:none;transform-origin:left center;transition:all 250ms cubic-bezier(.4,0,.2,1);width:calc(50% - 52px)}.gj-picker .arrow-begin{top:-3px;left:-4px;width:8px;height:8px;position:absolute;border-radius:50%}.gj-picker .arrow-end{top:-15px;right:-16px;width:0;height:0;position:absolute;box-sizing:content-box;border-width:16px;border-radius:50%}.gj-timepicker-md{font-size:16px;color:rgba(0,0,0,.87);position:relative}.gj-timepicker-md.small .gj-textbox-md{font-size:14px}.gj-timepicker-md.small .gj-icon{font-size:22px}.gj-timepicker-md.large .gj-textbox-md{font-size:18px}.gj-timepicker-md.large .gj-icon{font-size:28px}.gj-timepicker-md [role=right-icon]{cursor:pointer;position:absolute;right:0;top:0;font-size:24px}.gj-picker-md .arrow-end{border:16px solid #2196f3}.gj-picker-bootstrap .arrow-begin,.gj-picker-bootstrap [role=body] [role=arrow]{background-color:#888}.gj-picker-bootstrap .arrow-end{border:16px solid #888}.gj-timepicker-bootstrap .input-group-addon{border-left:0;position:relative;width:38px;border-radius:0 4px 4px 0}.gj-timepicker-bootstrap.input-group-sm .input-group-addon{width:30px}.gj-timepicker-bootstrap.input-group-lg .input-group-addon{width:46px}.gj-timepicker-bootstrap .input-group-addon .gj-icon,.gj-timepicker-bootstrap .input-group-addon .material-icons{position:absolute;font-size:21px;top:6px;left:8px}.gj-timepicker-bootstrap.input-group-sm .input-group-addon .gj-icon,.gj-timepicker-bootstrap.input-group-sm .input-group-addon .material-icons{font-size:19px;top:5px;left:5px}.gj-timepicker-bootstrap.input-group-lg .input-group-addon .gj-icon,.gj-timepicker-bootstrap.input-group-lg .input-group-addon .material-icons{font-size:27px;top:10px;left:10px}.gj-timepicker-bootstrap [role=right-icon] button{width:38px;position:relative}.gj-timepicker-bootstrap.input-group-sm [role=right-icon] button{width:30px}.gj-timepicker-bootstrap.input-group-lg [role=right-icon] button{width:48px}.gj-timepicker-bootstrap [role=right-icon] button .gj-icon,.gj-timepicker-bootstrap [role=right-icon] button .material-icons{position:absolute;font-size:21px;top:7px;left:9px}.gj-timepicker-bootstrap.input-group-sm [role=right-icon] button .gj-icon,.gj-timepicker-bootstrap.input-group-sm [role=right-icon] button .material-icons{top:4px;left:6px;font-size:19px}.gj-timepicker-bootstrap.input-group-lg [role=right-icon] button .gj-icon,.gj-timepicker-bootstrap.input-group-lg [role=right-icon] button .material-icons{font-size:27px;top:8px;left:10px}.gj-picker.datetimepicker [role=header] [role=date]{padding-bottom:5px;text-align:center;cursor:pointer}.gj-picker [role=switch]{align-items:baseline;user-select:none;position:relative}.gj-picker [role=switch] [role=calendarMode]{position:absolute;bottom:2px;left:0;cursor:pointer}.gj-picker [role=switch] [role=time]{width:100%;text-align:center}.gj-picker [role=switch] [role=time] div{display:inline;cursor:pointer}.gj-picker [role=switch] [role=clockMode]{position:absolute;right:0;bottom:3px;cursor:pointer}.gj-picker-md.datetimepicker [role=header]{font-size:36px;padding:10px 20px;display:block}.gj-picker-md [role=switch]{color:rgba(255,255,255,.54);background:#2196f3;font-size:32px}.gj-picker-bootstrap.datetimepicker [role=header]{font-size:36px;padding:10px 20px;display:block}.gj-picker-bootstrap.datetimepicker [role=header] [role=time]{font-size:22px}.gj-slider{position:relative;padding:8px 6px}.gj-slider [role=track]{width:100%}.gj-slider [role=progress]{position:absolute;z-index:1203}.gj-slider [role=handle]{position:absolute}.gj-slider-md [role=track]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;background-color:#e9ecef;height:2px;background-color:rgba(0,0,0,.26)}.gj-slider-md [role=progress]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;height:2px;background-color:#536DFE;top:8px;left:6px}.gj-slider-md [role=handle]{top:3px;left:0;width:12px;height:12px;background-color:#536DFE;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);filter:none;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);border:0 solid transparent;border-radius:50%;cursor:pointer;z-index:1204}.gj-slider-bootstrap [role=track]{border-radius:4px;height:10px}.gj-slider-bootstrap [role=progress]{height:10px;border-radius:4px;top:8px;left:6px;transition:none}.gj-slider-bootstrap [role=handle]{top:2px;left:0;width:20px;height:20px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);filter:none;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);border:0 solid transparent;border-radius:50%;cursor:pointer;z-index:1204}.gj-slider-bootstrap-3 [role=handle]{background-color:#337ab7;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);background-repeat:repeat-x}.gj-slider-bootstrap-4 [role=handle]{background-color:#007bff;background-image:-webkit-linear-gradient(top,#007bff 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#007bff 0,#2e6da4 100%);background-image:linear-gradient(to bottom,#007bff 0,#2e6da4 100%);background-repeat:repeat-x}.gj-colorpicker [role=right-icon]{cursor:pointer}.gj-colorpicker-md{font-size:16px;color:rgba(0,0,0,.87);position:relative}.gj-colorpicker-md [role=right-icon]{position:absolute;right:0;top:0;font-size:24px}
.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-size: 12px;
    cursor: pointer;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #C4C4C4;
    border-radius: 4px;
    margin-right: 14px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
/*.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
}*/

/* стили для активного чекбокса (при нажатии на него) */
/*.custom-checkbox:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}*/

/* стили для чекбокса, находящегося в фокусе */
/*.custom-checkbox:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}*/

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
/*.custom-checkbox:focus:not(:checked)+label::before {
    border-color: #80bdff;
}*/

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox:checked+label::before {
    border-color: #02C853;
    background-color: #02C853;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled+label::before {
    background-color: #e9ecef;
}

.checkbox {
    margin-bottom: 10px;
}
.custom-select {
    position: relative;
}

.custom-select .custom-select-header {
    height: 38px;
    background-color: #CFF4DF;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.custom-select .custom-select-header-label {
    font-size: 14px;
    line-height: 38px;
    margin-left: 14px;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    color: #505050;
    user-select: none;
}

.custom-select .custom-select-header .select-toggle {
    width: 24px;
    height: 24px;
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    top: 7px;
    right: 10px;
    border-radius: 20px;
}

.custom-select .custom-select-header .select-toggle:after {
    content: '';
    position: absolute;
    right: 8px;
    top: 7px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #02C853;
    border-right: 1px solid #02C853;
    transform: rotate(45deg);
}

.custom-select .custom-select-body {
    position: absolute;
    top: 46px;
    background-color: white;
    overflow-y: auto;
    max-height: 240px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    padding: 16px;
    display: none;
}

.custom-select .custom-select-body::-webkit-scrollbar-track {
    background-color: transparent;
}

.custom-select.active .custom-select-body {
    display: block;
    z-index: 2;
}

.custom-select.active .custom-select-header .select-toggle {
    transform: rotate(180deg);
}

.custom-select.active .custom-select-header {
    border: 2px solid #02C853;
}

.custom-select.active .custom-select-header-label {
    line-height: 34px;
}

.custom-select.active .custom-select-header .select-toggle {
    top: 5px;
}

.custom-select-body .checkbox:last-child {
    margin-bottom: 0px;
}
@font-face {
    font-family: "Montserrat";
    src: url("../../../build/fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "Montserrat bold";
    src: url("../../../build/fonts/Montserrat/Montserrat-Black.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat medium";
    src: url("../../../build/fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat semibold";
    src: url("../../../build/fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat b";
    src: url("../../../build/fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
}

.container-new-head {
    background-color: rgb(25,59,58);
    width: 100%;
    max-width: 1920px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px 75px 30px 75px;
    position: relative;
}

.new-head {
    height: auto !important;
}

.new-head {
    z-index: 2;
}

.mobile-full-menu-block, .mobile-search-block {
    width: 100%;
    position: fixed;
    z-index: 9999;
    right: -100%;
    transition: all 1s;
}

.mobile-full-menu-block {
    display: none;
}

.mobile-search-block {
    right: 0;
    display: none;
}

.mobile-menu-logo-block {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 30px;
}

.mobile-menu-social-buttons {
    position: absolute;
    bottom: 80px;
    text-align: center;
    width: 100%;
}

/*.mobile-menu-social-buttons span:nth-child(2), .mobile-menu-social-buttons span:nth-child(3) {
    margin-left: 14px;
}*/

.mobile-menu-logo {
    font-family: Rubik, sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 3px;
    color: #00c853;
    text-transform: uppercase;
}

.mobile-menu-links-block {
    position: absolute;
    width: 100%;
    top: 110px;
    text-align: center;
}

.close-mobile-menu, .close-search-block {
    position: absolute;
    right: 12px;
    top: 16px;
    width: 33px;
    height: 24px;
    cursor: pointer;
}

.close-mobile-menu:before, .close-mobile-menu:after, .close-search-block:before, .close-search-block:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: white;
}
.close-mobile-menu:before, .close-search-block:before {
    transform: rotate(45deg);
}
.close-mobile-menu:after, .close-search-block:after {
    transform: rotate(-45deg);
}

.mobile-menu-links-block .header-link {
    position: relative;
}

.mobile-menu-links-block div:nth-child(2), .mobile-menu-links-block div:nth-child(3) {
    margin-top: 30px;
}

.new-logo {
    font-family: Rubik, sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 3px;
    color: #00c853;
    text-transform: uppercase;
    position: absolute;
    left: 75px;
}

.new-search-container {
    float: right;
    height: 20px;
    margin-top: -6px;
    position: relative;
}

.new-search-input input {
    height: 36px;
    border-radius: 60px;
    min-width: 199px;
    width: 199px;
    background-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.6);
}

.new-search-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.new-search-input .fa-search:hover {
    background-color: #02c853;
    color: white;
}

.new-search-input .fa-search {
    height: 36px;
    width: 50px;
    padding: 9px 18px;
    background-color: white;
    right: 0px;
    border-radius: 60px;
    top: 0px;
    transition: all .3s linear;
}

.header-link {
    position: absolute;
    top: 11px;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-family: Rubik, sans-serif;
}

.header-link-1 {
    right: 508px;
}

.header-link-2 {
    right: 392px;
}

.header-link-3 {
    right: 254px;
    width: 80px;
}

.new-main-container {
    width: 100%;
    max-width: 1920px;
    margin-right: auto;
    margin-left: auto;
}

.slider-btn.slider-btn-next{
    background-image:url(../../../img/next.svg);
}

.slider-btn.slider-btn-prev{
    background-image:url(../../../img/prev.svg)
}

.slider-container {
    position:relative;
}

.slider-text-block {
    position: absolute;
    top: 130px;
    left: 75px;
}

.slider-title {
    color: white;
    font-size: 8vw;
    font-weight: 900;
    font-family: Montserrat bold, sans-serif;
}

.slider-description {
    color: white;
    font-family: Montserrat, sans-serif;
    font-size: 3.6vw;
    margin-top: 14px;
}

.slider-statistic {
    margin-top: 65px;
}

.slider-statistic-item {
    display: inline-block;
    color: white;
    font-size: 2.3em;
    font-family: Montserrat, sans-serif;
    position: relative;
}

.slider-statistic-green-item {
    color: #00c853;
    font-weight: 700;
    font-family: Rubik, sans-serif;
}

.slider-statistic .slider-statistic-item:nth-child(2),
.slider-statistic .slider-statistic-item:nth-child(3),
.slider-statistic .slider-statistic-item:nth-child(4),
.slider-statistic .slider-statistic-item:nth-child(5)
{
    margin-left: 60px;
}

.slider-social-buttons-container {
    position: absolute;
    top: 87px;
    right: -76px;
    width: 220px;
}

.slider-social-button {
    width: 27px;
    height: 27px;
}

/*.slider-social-buttons-container span:nth-child(2), .slider-social-buttons-container span:nth-child(3) {
    margin-left: 24px;
}*/

.slider-buttons {
    position: absolute;
    top: 87px;
    width: 126px;
    text-align: center;
}

.slider-buttons .slider-btn-prev {
    left: 0px !important;
}

.slider-buttons .slider-btn-next {
    right: 0px !important;
}

.current-slide-number {
    font-weight: 500;
}

.category-link {
    color: white;
}

.count-slides {
    font-size: 16px;
}

.new-header-search input:focus {
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(0, 200, 83 / 60%);
    border-color: #00c853;
    outline: 0;
}

.mobile-search-input {
    width: 100%;
    border-radius: 60px !important;
    background-color: rgba(255, 255 ,255, 0.4) !important;
    border: none !important;
    padding: 8px 16px !important;
    color: rgba(255, 255, 255, .6) !important;
    font-family: Rubik, sans-serif !important;
    letter-spacing: 1px !important;
    font-size: 12px !important;
}

.mobile-search-input::placeholder {
    color: rgba(255, 255, 255, .6) !important;
    font-family: Rubik, sans-serif !important;
    letter-spacing: 1px !important;
}

.mobile-search-input-block {
    position: absolute;
    top: 80px;
    width: 90%;
    left: 5%;
}

.clear-mobile-search-input {
    position: absolute;
    right: 4px;
    top: 10px;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.clear-mobile-search-input:before, .clear-mobile-search-input:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 10px;
    width: 1px;
    background-color: rgba(255, 255, 255, .6);
}
.clear-mobile-search-input:before {
    transform: rotate(45deg);
}
.clear-mobile-search-input:after {
    transform: rotate(-45deg);
}

.mobile-search-items-block {
    margin-top: 20px;
}

.mobile-search-animal-name {
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Montserrat b';
}

.mobile-search-animal-scientific-name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-top: 4px;
    margin-bottom: 20px;
}

.antarctica-map {
    width: 70%;
    margin-left: 15%;
}

.antarctica-map svg path {
  fill: rgb(39,221,246) !important;
}

.new-footer {
    background-color: rgb(0,57,54);
    position: relative;
    height: 180px !important;
    margin-top: 30px;
}

.new-footer-container {
    position: absolute;
    top: 2vw;
    left: 0;
    width: 100%;
}

.footer-socials-buttons {
    position: absolute;
    width: 104px;
    top: 50px;
    left: 75px;
}

.footer-socials-buttons .footer-social-button:nth-child(2) {
    margin: 0px 10px;
}

.footer-link {
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-family: Rubik, sans-serif;
}

.footer-link-block .footer-link:nth-child(2) {
    margin: 0px 30px;
}

.footer-link-block {
    position: absolute;
    top: 4px;
    right: 75px;
}

.new-footer-email {
    font-family: 'Rubik';
    color: #02c853;
    position: absolute;
    top: 56px;
    font-size: 15px;
    font-weight: 400;
    right: 75px;
}

.footer-copyright {
    color: white;
    font-family: 'Rubik';
    font-size: 13px;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 20px;
}

.new-up-btn {
    background-color: #cff4df;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: fixed;
    z-index: 10;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    transition: all 0.3s linear;
    visibility: hidden;
    cursor: pointer;
    transform: rotate(
            -90deg
    );
}

.new-up-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: inline-block;
    margin-left: 4%;
    width: 30px;
}

.new-up-btn:hover {
    background-color: #02c853;
}

.new-up-btn:hover svg path {
    stroke: white;
}

.antarctica-tooltip {
    background: #111;
    background: rgba(0,0,0,.8);
    color: #eee;
    font: normal 12px 'Lucida Grande',Arial,Helvetica,sans-serif;
    padding: .4em 1em;
    text-align: center;
    text-shadow: 0 1px 0 #000;
    white-space: nowrap;
    -moz-border-radius: .4em;
    -ms-border-radius: .4em;
    -webkit-border-radius: .4em;
    border-radius: .4em;
    pointer-events: none;
    position: absolute;
    display: none;
}

@media only screen and (max-width : 900px) and (min-width : 601px) {

    .slider-statistic .slider-statistic-item:nth-child(2), .slider-statistic .slider-statistic-item:nth-child(3) {
        margin-left: 38px;
    }

    .slider-statistic-item {
        font-size: 1.8em;
    }

    .slider-text-block {
        top: 38px;
    }

    .slider-statistic {
        margin-top: 40px;
    }

    .slider-buttons, .slider-social-buttons-container {
        top: 60px;
    }

    /*.slider-social-buttons-container span:nth-child(2), .slider-social-buttons-container span:nth-child(3) {
        margin-left: 8px;
    }*/

}

.mobile-header {
    display: none;
    position: absolute;
    right: 75px;
}

.mobile-header-search {
    font-size: 16px;
    color: white;
    position: absolute;
    top: -2px;
    right: 50px;
}

.mobile-menu-icon {
    width: 20px;
    height: 2px;
    background-color: white;
    display: inline-block;
    margin-left: 30px;
}

.mobile-menu-icon-first {
    width: 20px;
    height: 2px;
    background-color: white;
    content: '';
    top: 0px;
    position: absolute;
}

.mobile-menu-icon-second {
    width: 20px;
    height: 2px;
    background-color: white;
    top: 6px;
    position: absolute;
}

.mobile-menu-icon-third {
    width: 20px;
    height: 2px;
    background-color: white;
    top: 12px;
    position: absolute;
}

.day-animal-block {
    padding: 60px 75px 60px 75px;
}

.main-collections {
    padding: 80px 75px 0px 75px;
}

.main-alphabet {
    padding: 40px 75px 0px 75px;
}

.main-explore {
    padding: 10% 75px 0px 75px;
}

.day-animal-img {
    border-radius: 34px;
    width: 100%;
}

.day-animal-block div {
    display: inline-block;
}

.day-animal-block div:nth-child(1) {
    width: 44%;
    position: relative;
}

.day-animal-block .facts-block {
    width: 53.5%;
    margin-left: 2%;
}

.day-animal-header {
    font-size: 7vw;
    font-family: Montserrat bold, sans-serif;
    color: #E3EAE6;
    font-weight: 900;
    position: absolute;
    top: -28px;
    left: 0px;
}

.day-animal-title-block {
    position: absolute;
    bottom: 48px;
    left: 29px;
}

.day-animal-title-block span:nth-child(1) {
    color: white;
    font-size: 2.6vw;
    font-family: Montserrat medium, sans-serif;
    font-weight: 500;
}

.day-animal-title-block .animal-name {
    color: white;
    font-size: 2.5vw;
    font-family: Montserrat semibold, sans-serif;
    text-transform: uppercase;
    margin-top: 10px;
    display: block;
    font-weight: 600;
}

.animal-facts-container {
    position: absolute !important;
    bottom: 44px;
    color: white;
    padding: 0 2% 0 2%;
    text-align: left;
}

.animal-facts-title {
    font-size: 2.8vw;
    font-family: Montserrat b, sans-serif;
    font-weight: 700;
    color: white;
}

.simple-slider-second {
    width: 100% !important;
}

.simple-slider-second .slider-pagination {
    bottom: 20px;
    left: 0;
}

.simple-slider-second .slider-pagination .pagination-bullet.is-active {
    background-color: #00c853;
}

.simple-slider-second .slider-pagination .pagination-bullet {
    width: 24px;
    height: 3px;
    position: relative;
}

.simple-slider-second .slider-pagination .pagination-bullet:before {
    content: '';
    top: -9px;
    left: 0px;
    width: 100%;
    height: 20px;
    position: absolute;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background: linear-gradient(
            180deg
            , rgba(196, 196, 196, 0) 0%, #000000 100%);
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
}

.fact-text {
    display: block !important;
    margin-top: 20px;
    font-size: 1.5vw;
    font-family: Montserrat, sans-serif;
    line-height: 150%;
}

.animal-fact-link {
    color: #00c853;
    font-size: 1.2em;
    font-weight: 600;
    font-family: Montserrat semibold, sans serif;
}

.day-animal-container {
    overflow: hidden;
    border-radius: 34px;
    width: 100%;
}

.day-animal-container .day-animal-img {
    transform: scale(1.1);
    transition: all .3s linear;
}

.day-animal-container:hover .day-animal-img {
    transform: scale(1);
}

.day-animal-container:hover .hover-overlay {
    opacity: 0.5;
}

.main-collections-header {
    font-size: 7vw;
    font-family: Montserrat b, sans-serif;
    color: #E3EAE6;
    width: 100% !important;
}

.main-collections-header .header-bold,  .main-alphabet-header .header-bold, .habitat-header .header-bold{
    font-family: Montserrat bold, sans-serif !important;
}

.collection-group-block {
    width: 27%;
    display: inline-block;
    position: relative;
}

.center-collection-group-block {
    width: 42%;
}

.main-collection-container {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
}

.main-collection-container .collection-group-block:nth-child(1),
.main-collection-container .collection-group-block:nth-child(2) {
    margin-right: 2%;
}

.collection-animal-container {
    overflow: hidden;
    border-radius: 28px;
    width: 100%;
    position: relative;
}

.collection-animal-container .collection-animal-img {
    width: 100%;
    transform: scale(1.1);
    transition: all .3s linear;
}

.collection-animal-container:hover .collection-animal-img {
    transform: scale(1);
}

.collection-title-block {
    position: absolute;
    bottom: 22px;
    left: 29px;
}

.collection-title-block span:nth-child(1) {
    color: white;
    font-size: 1.4vw;
    font-family: Rubik, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.count-collection-animals {
    font-family: Montserrat medium, sans-serif;
    font-size: 1.2em;
    color: white;
    margin-top: 10px;
    display: block;
}

.collection-animal-container .bg-gradient {
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
}

.collection-animal-container .hover-overlay {
    border-radius: 28px;
    height: 100%;
}

.collection-animal-container:hover .hover-overlay {
    opacity: 0.5;
}

.bottom-collection-container {
    position: absolute;
    bottom: 0;
}

.yellow-circle-collection {
    background-color: #ffe81a;
    width: 33vw;
    height: 33vw;
    position: absolute;
    z-index: -1;
    border-radius: 100%;
    top: -40%;
    left: 46%;
}

.see-all-collection-link {
    display: inline-block;
    border: 2px solid #ffe81a;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-family: Montserrat semibold, open sans-serif;
    color: black;
    margin-top: 30px;
    transition: all .3s linear;
}

.see-all-cl {
    margin-top: 14px;
    font-size: 1.2vw;
    padding: 1.2vw 2.2vw;
    border-radius: 3vw;
}

.see-all-collection-link-block {
    width: 100%;
    text-align: center;
}

.see-all-collection-link:hover {
    color: black;
    background-color: #ffe81a;
}

.main-alphabet-header {
    font-size: 6vw;
    font-family: Montserrat b, sans-serif;
    color: #E3EAE6;
    width: 100% !important;
    text-align: right;
}

.alphabet-left-block, .alphabet-right-block {
    display: inline-block;
    margin-top: 6%;
}

.alphabet-left-block {
    width: 14%;
    position: relative;
    margin-right: 6%;
}

.alphabet-right-block {
    margin-left: 24%;
    text-align: right;
    margin-right: -20px;
    margin-top: 14px;
}

.alphabet-left-image {
    position: absolute;
    top: -13vw;
    left: -75px;
}

.alphabet-left-circle {
    width: 500px;
    height: 500px;
    position: absolute;
    background-color: #ffe81a;
    border-radius: 100%;
    top: 17%;
    left: -47%;
    max-width: 38vw;
    max-height: 38vw;
    z-index: -1;
}

.alphabet-item {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
    margin-right: 20px;
    margin-bottom: 20px;
    color: #02c853;
    font-family: Rubik, sans serif;
    font-weight: bold;
    width: 6vw;
    height: 6vw;
    font-size: 4vw;
    line-height: 6vw;
    border-radius: 1.5vw;
    transition: all .3s linear;
}

.alphabet-item:hover {
    background-color: #02c853;
    color: white;
}

.alphabet-left-image img {
    max-width: 22vw;
}

.explore-header {
    font-family: Montserrat bold, sans serif;
    font-size: 9vw;
    color: #E3EAE6;
}

.explore-header-container {
    position: relative;
    margin-bottom: 4%;
}

.explore-filter-container {
    position: absolute;
    right: 0px;
    bottom: 20%;
}

.extinct-filter-container {
    display: inline-block;
}

.explore-filter, .mobile-explore-header, .habitat-filter, .extinct-filter {
    display: inline-block;
    font-family: Rubik, sans serif;
    font-weight: 500;
    font-size: 1.3vw;
    text-transform: uppercase;
    cursor: pointer;
    color: #505050;
}

.extinct-filter-container .extinct-filter:nth-child(1), .extinct-filter-container .extinct-filter:nth-child(2) {
    margin-right: 20px;
}

.habitat-filter {
    margin-right: 1vw;
}

.explore-filter-container .explore-filter:nth-child(1), .explore-filter-container .explore-filter:nth-child(2) {
    margin-right: 20px;
}

.explore-filter-underline, .habitat-filter-underline, .extinct-filter-underline, .hover-underline {
    height: 3px;
    width: 90%;
    background-color: #02c853;
    margin-top: 0.3vw;
    margin-left: 5%;
    display: none;
}

.explore-filter:not(.active):hover .hover-underline, .extinct-filter:not(.active):hover .hover-underline, .habitat-filter:not(.active):hover .hover-underline {
    opacity: 1;
}

.explore-filter:not(.active) .hover-underline, .extinct-filter:not(.active) .hover-underline, .habitat-filter:not(.active) .hover-underline {
    display: block;
}

.hover-underline {
    opacity: 0;
    transition: all .3s linear;
    background-color: #cff4df;
}

.explore-filter.active .explore-filter-underline, .habitat-filter.active .habitat-filter-underline, .extinct-filter.active .extinct-filter-underline {
    display: block;
}

.habitat-filter-block {
    margin-top: 40px;
}

.explore-slider .slider-slide {
    padding: 0px 1vw 0px 1vw;
}

.explore-slider .slider-btn {
    background-color: #cff4df;
    height: 2vw !important;
    width: 2vw !important;
    border-radius: 100%;
    background-image: unset !important;
}

.explore-slider .slider-btn-prev {
    left: 0px !important;
}

.explore-slider .slider-btn-next {
    right: 0px !important;
}


.explore-slider .slider-btn-prev img {
    width: 0.5vw;
    transform: rotate(
            180deg
    );
    margin-left: 33%;
    margin-top: 23%;
}

.explore-slider .slider-btn-next img {
    width: 0.5vw;
    margin-left: 42%;
    margin-top: 23%;
}

.explore-slider .slider-btn-prev svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(
            180deg
    );
    display: inline-block;
    margin-left: -4%;
    width: 0.5vw;
}

.explore-slider .slider-btn-next svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: inline-block;
    margin-left: 4%;
    width: 0.5vw;
}

.explore-slider .slider-btn-next:hover svg path, .explore-slider .slider-btn-prev:hover svg path {
    stroke: white;
}

.explore-slider .slider-btn-next:hover, .explore-slider .slider-btn-prev:hover {
    background-color: #02c853;
}

.hide-block {
    opacity: 0;
    height: 0px;
}

.habitat-header {
    font-size: 5.6vw;
    font-family: Montserrat b, sans-serif;
    color: #E3EAE6;
    width: 100% !important;
}

.habitat-circle {
    width: 26vw;
    height: 26vw;
    top: 20%;
    left: 74%;
}

.lifestyle-block {
    display: flex;
    justify-content: center;
}

.lifestyle-block-item, .conservation-block-item {
    width: 24%;
    margin-right: 1%;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 10%);
    font-size: 1vw;
    padding: 1.2vw 2vw 1.2vw 2vw;
    border-radius: 1vw;
    font-family: Montserrat semibold, sans serif;
    color: #505050;
    position: relative;
    margin-bottom: 1.1vw;
}

.conservation-block-item {
    width: 32%;
    margin-right: 1.3%;
    padding: 2vw 2vw 2vw 6vw;
    overflow: hidden;
}

.conservation-short {
    position: absolute;
    left: 2.4vw;
}

.lifestyle-block-item:hover, .conservation-block-item:hover {
    color: #505050;
}

.lifestyle-indicator {
    height: 0.5vw;
    width: 0.5vw;
    border-radius: 100%;
    position: absolute;
    left: 0.8vw;
    top: 1.4vw;
}

.conservation-indicator {
    width: 0.5vw;
    height: 5vw;
    position: absolute;
    left: 0;
    top: 0;
}

.hidden {
    display: none !important;
}

.lifestyle-count, .conservation-count {
    position: absolute;
    right: 2vw;
    top: 1vw;
    font-size: 1.2vw;
    color: #E3EAE6;
    font-family: Montserrat b, sans serif;
}

.conservation-count {
    top: 1.8vw;
}

.geography-block .main-geography-block {
    width: 32%;
    margin-right: 1.33333% !important;
    margin-bottom: 1.3vw;
}

.geography-block .main-geography-block:nth-child(3n+3) {
    margin-right: 0px !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.main-tabs-block .main-collection-container {
    margin-top: 4vw;
}

.animal-kingdom-header {
    font-size: 6.3vw;
}

.animal-kingdom-container {
    margin-top: 30px;
}

.animal-kingdom-block {
    display: block;
    width: 30%;
    position: relative;
    float: left;
}

.center-animal-kingdom-block {
    width: 30%;
    margin: 0 3% 0 3%;
}

.animal-kingdom-item img {
    width: 100%;
    border-radius: 100%;
}

.animal-kingdom-item-hover img {
    transform: scale(1.1);
    transition: all .3s linear;
}
.animal-kingdom-item-hover:hover img {
    transform: scale(1);
}

.animal-kingdom-item-hover:hover .hover-overlay {
    opacity: 0.5;
}

.animal-kingdom-item-hover .hover-overlay {
    height: 100%;
    border-radius: 100%;
}

.animal-kingdom-item {
    border-radius: 100%;
}

.center-animal-kingdom-block .animal-kingdom-item:nth-child(1) {
    border: 1vw solid #ffe81a;
    position: relative;
}

.center-animal-kingdom-block .kingdom-header {
    position: absolute;
    color: white;
    font-size: 2.5vw;
    font-family: 'Montserrat b';
    text-transform: uppercase;
    line-height: 3vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.3vw;
}

.first-block-animal-kingdom .animal-kingdom-item, .third-block-animal-kingdom .animal-kingdom-item {
    width: 70%;
   /* transform: scale(1.1);*/
    overflow: hidden;
}

/*.first-block-animal-kingdom .animal-kingdom-item img, .kingdom-reptilies img {
    transform: scale(1.1);
    transition: all .3s linear;
}

.first-block-animal-kingdom .animal-kingdom-item:hover img, .kingdom-reptilies:hover img {
    transform: scale(1);
}*/

.op-hide {
    opacity: 0;
}

.animal-kingdom-name {
    font-size: 1.2vw;
    font-family: Rubik, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.animal-kingdom-count {
    font-family: Montserrat medium, sans-serif;
    font-size: 0.9vw;
    color: white;
    margin-top: 0.4vw;
    display: block;
}

.animal-kingdom-item-title {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.kingdom-mammals {
    position: absolute;
    right: 0;
    z-index: 2;
}

.kingdom-fish {
    position: absolute;
    left: 0;
    z-index: 2;
}

.kingdom-birds {
    position: absolute;
    right: -5vw;
    top: 1.9vw;
    z-index: 2;
}

.kingdom-reptilies {
    position: relative;
    display: block;
    overflow: hidden;
    width: 70%;
    margin-left: 15%;
    margin-top: 1.9vw;
}

.kingdom-amphibians {
    position: absolute;
    left: -5vw;
    top: 1.9vw;
    z-index: 2;
}

/*.kingdom-fish img, .kingdom-amphibians img, .gray-img {
    filter: grayscale(100%);
}*/

.mobile-kingdom-item {
    position: relative;
    display: block;
    overflow: hidden;
    width: 80%;
    margin-left: 10%;
    margin-top: 20px;
}

.main-extinct {
    padding-top: 3%;
}

.extinct-slider-header {
    font-size: 5.4vw;
    margin-bottom: 6%;
}

.mb-36 {
    margin-bottom: 4%;
}

.extinct-tabs {
    text-align: right;
    margin-bottom: 4%;
}

.mobile-menu-trigger {
    display: inline-block;
    width: 20px;
    margin-left: 30px;
    height: 14px;
    cursor: pointer;
}

.hover-overlay {
    background-color: #ffe819;
    width: 100%;
    height: 85.9%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    mix-blend-mode: overlay;
    border-radius: 34px;
    transition: all .3s linear;
}

.svg-slider-social-button path {
    transition: all .3s linear;
}

.svg-slider-social-button:hover path {
    fill: #ffe81a;
}

.endangered-input {
    position: absolute;
    margin-top: -8px;
}

.see-all-collection-link-block.hide-block {
    display: none;
}

.mobile-right-image {
    position: absolute;
    bottom: -54px;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

.mobile-right-circle {
    background-color: #ffe81a;
    width: 250px;
    height: 250px;
    position: absolute;
    z-index: -1;
    top: 24px;
    border-radius: 100%;
}

.not_found_population {
    width: 100%;
    text-align: center;
    font-size: 2vw;
    color: red;
}

.header-fixed .new-search-input input {
    background-color: #E3EAE6;
    color: #9C9C9C;
    border: 1px solid #E3EAE6;
}

.header-fixed .new-search-input .fa-search {
    background-color: #505050;
    color: white;
    transition: background .3s linear !important;
}

.header-fixed .new-header-search input:focus {
    border-color: #00c853 !important;
}

.header-fixed .new-search-input .fa-search:hover {
    background-color: #02c853 !important;
}

.header-fixed .new-search-input input::placeholder {
    color: #9C9C9C;
}

.new-fixed-mobile-header {
    display: none;
    background-color: white;
}

.new-fixed-mobile-header .mobile-menu-icon-first,
.new-fixed-mobile-header .mobile-menu-icon-second,
.new-fixed-mobile-header .mobile-menu-icon-third{
    background-color: #505050;
}

.new-fixed-mobile-header .mobile-header-search {
    color: #505050;
}

.overflow-block {
    overflow: hidden;
}

.new-fixed-mobile-header .mob-social-buttons {
    position: absolute;
    width: 100%;
    top: 46px;
}

.new-fixed-mobile-header .mob-social-buttons .at-resp-share-element .at-share-btn {
    transition: transform .2s ease-in-out !important;
}

.slider-social-buttons-container .at-resp-share-element .at-share-btn,
.slider-social-mobile-buttons-container .at-resp-share-element .at-share-btn,
.mobile-menu-social-buttons .at-resp-share-element .at-share-btn{
    background-color: white !important;
    margin-left: 12px;
}

.slider-social-buttons-container .at-resp-share-element .at-share-btn path,
.footer-socials-buttons .at-resp-share-element .at-share-btn path,
.slider-social-mobile-buttons-container .at-resp-share-element .at-share-btn path,
.mobile-menu-social-buttons .at-resp-share-element .at-share-btn path{
    fill: rgb(0,57,54);
}

.slider-social-buttons-container .at4-share-count-container,
.footer-socials-buttons .at4-share-count-container,
.slider-social-mobile-buttons-container .at4-share-count-container,
.mobile-menu-social-buttons .at4-share-count-container{
    color: rgb(0,57,54) !important;
}

.footer-socials-buttons .at-resp-share-element .at-share-btn {
    background-color: white !important;
}

.footer-socials-buttons a:nth-child(2) {
    margin-left: 8px;
    margin-right: 8px;
}

.footer-socials-buttons {
    width: 150px;
}

.at-resp-share-element .at-share-btn:hover {
    transform: translateY(0px) !important;
    background-color: #ffe81a !important;
}

.footer-socials-buttons a:nth-child(1) {
    margin-right: 0px !important;
}


.addthis_inline_share_toolbox_ji74 svg {
    width: 24px !important;
    height: 24px !important;
    margin: -3px !important;
}

.addthis_inline_share_toolbox_ji74 span.at-icon-wrapper {
    height: 18px !important;
    width: 18px !important;
}

.addthis_inline_share_toolbox_ji74 .at4-share-count-container {
    font-size: 11px !important;
}

.addthis_inline_share_toolbox_ji74 .at-resp-share-element .at-share-btn:focus {
    transform: translateY(0px) !important;
}

.mobile-explore-header {
    display: block;
}

.main-header-search {
    background-color: white;
    border-radius: 1vw;
}

.main-header-search .search-main-title {
    color: #505050;
    padding-bottom: 0px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    max-width: 600px;
    white-space: pre-wrap;
}

.main-header-search .search-second-title {
    color: #505050;
    opacity: 0.8;
    font-size: 12px;
    padding-top: 0px;
    padding-bottom: 6px;
}

.main-header-search .ui-state-active {
    background-color: transparent;
    color: #00c853 !important;
}

.header-search-footer {
    font-size: 14px;
    color: #505050;
    opacity: 0.8;
    font-weight: 300;
}

.header-search-footer:hover {
    color: #00c853;
}

.main-header-search .ui-state-active svg path {
    fill: #00c853;
}

.search-btn {
    cursor: pointer;
}

.container-advanced-search {
    padding-top: 100px;
    margin-bottom: 40px;
}

.collection-item-top {
    position: absolute;
    background: linear-gradient(
            180deg, rgba(1, 1, 1, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    transform: rotate(
            180deg);
    top: 0;
    height: 70px;
    left: 0;
    width: 100%;
}

.search-type {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 14px;
    font-family: 'Montserrat medium';
    color: white;
}

.search-name-block {
    bottom: 20px;
}

.container-advanced-search .collection-name-text {
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    font-size: 26px;
}

.container-advanced-search .collection-count-text {
    font-size: 14px;
    font-weight: normal;
    font-family: 'Montserrat';
}

.search-result-info {
    color: #9C9C9C;
    font-family: 'Montserrat medium';
    font-size: 12px;
}

.search-form-container {
    width: 300px;
}

.search-form-container input {
    width: 300px;
    background-color: rgba(66, 66, 66, 0.1);
    color: #002C28;
    font-size: 14px;
}

.search-form-container .fa-search {
    background-color: #02c853;
    color: white !important;
}

.search-form-container input::placeholder {
    color: #002C28;
}

.mobile-header-search-footer {
    color: white;
    opacity: 1;
    font-weight: 500;
    position: absolute;
    right: 0;
}

.mobile-header-search-footer svg path {
    fill: white;
}

.moderation-buttons-block {
    position: absolute;
    bottom: -2px;
    width: 100%;
}

.moderation-buttons-block .moderation-button, .moderation-buttons-block-link .moderation-button  {
    width: 30px;
    padding: 6px;
    display: inline-block;
}

.moderation-buttons-block-link {
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.moderation-buttons-block-white .cls-1 {
    stroke: white;
}

.moderation-buttons-block-white {
    bottom: -6px;
}


@media only screen and (max-width : 950px) {
    .new-search-container {
        display: none;
    }

    .new-fixed-header {
        display: none;
    }

    .new-fixed-mobile-header {
        display: block;
        padding-bottom: 66px !important;
        padding-left: 0px !important;
    }

    .header-fixed {
        padding: 0 !important;
    }

    .mobile-header {
        display: block;
    }

    .mobile-full-menu-block {
        display: block;
    }

    .container-new-head {
        padding: 12px 25px 36px 25px;
    }

    .mobile-header {
        right: 25px;
        top: 16px;
    }

    .collection-animal-container .bg-gradient {
        border-bottom-left-radius: 14px;
        border-bottom-right-radius: 14px;
    }

    .collection-animal-container {
        border-radius: 14px;
    }

    .new-footer-container .new-logo {
        text-align: center;
        width: 100%;
        left: 0px;
    }

    .footer-link-block {
        width: 100%;
        text-align: center;
        right: 0;
        top: 50px;
    }

    .footer-socials-buttons {
        width: 100%;
        text-align: center;
        right: 0;
        top: 116px;
        left: 0;
    }

    .new-footer {
        height: 200px !important;
    }

    .new-footer-email {
        top: 84px;
        right: 0;
        width: 100%;
        text-align: center;
    }
}

@media only screen and (min-width : 601px) {
    .desktop-hidden {
        display: none;
    }

    .new-footer {
        margin-top: 200px;
    }
}

@media only screen and (min-width : 1920px) {
    .day-animal-header {
        font-size: 140px;
    }

    .slider-title {
        font-size: 144px;
    }

    .day-animal-title-block span:nth-child(1) {
        font-size: 46px;
    }

    .day-animal-title-block .animal-name {
        font-size: 46px;
    }

    .animal-facts-title {
        font-size: 50px;
    }
}

@media only screen and (max-width : 600px) {
    .container-new-head {
        background-color: rgb(25,60,57);
    }

    .new-logo {
        left: 16px;
    }

    .mobile-header {
        right: 16px;
        top: 16px;
    }

    .mobile-hidden {
        display: none;
    }

    .slider-title {
        font-size: 18vw;
        line-height: 21vw;
    }

    .slider-text-block {
        left: 16px;
        top: 70px;
    }

    .slider-description {
        font-size: 6.6vw;
        line-height: 32px;
    }

    .slider-social-mobile-buttons-container {
        margin-top: 140px
    }

    /*.slider-social-mobile-buttons-container span:nth-child(2), .slider-social-mobile-buttons-container span:nth-child(3) {
        margin-left: 20px;
    }*/

    .day-animal-block div:nth-child(1) {
        width: 100%;
    }

    .day-animal-block .facts-block {
        width: 100%;
        margin-left: 0px;
        margin-top: 40px;
    }

    .day-animal-header {
        font-size: 80px;
    }

    .day-animal-block {
        padding: 60px 16px 60px 16px;
    }

    .day-animal-title-block span:nth-child(1) {
        font-size: 23px;
    }

    .day-animal-title-block .animal-name {
        font-size: 22px;
    }

    .animal-facts-title {
        font-size: 19px;
    }

    .fact-text {
        font-size: 14px;
    }

    .simple-slider-second .slider-pagination {
        bottom: -20px;
        left: 0px;
    }

    .simple-slider-second .slider-pagination .pagination-bullet {
        background-color: rgb(202,201,201);
    }

    .simple-slider-second {
        overflow: unset !important;
    }

    .mobile-slider-block {
        overflow: hidden;
    }

    .bg-gradient {
        height: 60%;
    }

    .animal-facts-container {
        left: 0px;
    }

    .main-collections {
        padding: 0px 16px 0px 16px;
    }

    .main-alphabet {
        padding: 40px 16px 0px 16px;
    }

    .main-collections-header {
        text-align: center;
    }

    .main-collection-container {
        margin-top: 30px;
    }

    .collection-title-block span:nth-child(1) {
        font-size: 9.4vw;
    }

    .collection-animal-container {
        margin-bottom: 16px;
    }

    .see-all-collection-link {
        margin-top: 18px;
    }

    .main-alphabet-header {
        text-align: center;
    }

    .alphabet-item {
        margin-right: 4vw;
        margin-bottom: 4vw;
        width: 14vw;
        height: 14vw;
        font-size: 7vw;
        line-height: 14vw;
        border-radius: 3.5vw;
    }

    .main-alphabet-header {
        font-size: 7vw;
    }

    .mobile-alphabet-buttons {
        margin-top: 24px;
    }

    .mobile-alphabet-line {
        display: flex;
        justify-content: center;
    }

    .mobile-alphabet-line .alphabet-item:nth-child(5) {
        margin-right: 0;
    }

    .elem-hidden {
        opacity: 0;
    }

    .explore-header {
        text-align: center;
        font-size: 16vw;
        margin-bottom: 30px;
    }

    .main-explore {
        padding: 10% 16px 0px 16px;
    }

    .explore-slider .slider-slide {
        padding: 0px 8px 0px 8px;
    }

    .mobile-explore-header {
        margin-bottom: 20px;
    }

    .explore-slider {
        margin-bottom: 20px;
    }

    .explore-slider .slider-btn {
        height: 8vw !important;
        width: 8vw !important;
    }

    .mobile-explore-header {
        font-size: 5vw;
        margin-left: 8px;
    }

    .explore-slider .slider-btn-next img {
        width: 2.3vw;
    }

    .explore-slider .slider-btn-prev img {
        width: 2.3vw;
        margin-left: 30%;
    }

    .habitat-header {
        font-size: 8.2vw;
        text-align: center;
    }

    .habitat-title-block {
        top: 38%;
        left: 0%;
        width: 100%;
        text-align: center;
    }

    .habitat-title-block span:nth-child(1) {
        font-size: 7.4vw;
    }

    .count-habitat-animals {
        font-size: 1.5em;
    }

    .main-accordeon-container {
        max-height: 0px;
        transition: 1s;
        overflow: hidden;
    }

    .lifestyle-block-item {
        width: 100%;
        margin-right: 0px;
        display: block;
        border-radius: 68px;
        font-size: 15px;
        padding: 10px 26px;
        margin-bottom: 10px;
    }

    .conservation-block-item {
        width: 100%;
        margin-right: 0px;
        display: block;
        font-size: 15px;
        padding: 16px 52px;
        margin-bottom: 10px;
        border-radius: 14px;
    }

    .lifestyle-indicator {
        height: 8px;
        width: 8px;
        left: 10px;
        top: 14px;
    }

    .lifestyle-count {
        right: 26px;
        top: 9px;
        font-size: 15px;
    }

    .conservation-indicator {
        width: 8px;
        height: 50px;
    }

    .conservation-short {
        left: 18px;
    }

    .conservation-count {
        font-size: 15px;
        top: 14px;
        right: 16px;
    }

    .mobile-main-geography-block {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 1.3vw;
    }

    .mobile-geography-container .collection-title-block {
        top: 40%;
        left: 0%;
        width: 100%;
        text-align: center;
    }

    .mobile-geography-container .collection-title-block span:nth-child(1) {
        font-size: 4.4vw;
    }

    .animal-kingdom-header {
        font-size: 9.2vw;
        margin-top: 40px;
    }

    .mobile-animal-kingdom-header {
        font-family: Rubik, sans-serif;
        font-weight: 700;
        font-size: 7vw;
        letter-spacing: 3px;
        color: #00c853;
        text-transform: uppercase;
        margin-top: 20px;
        text-align: center;
    }

    .animal-kingdom-item-title {
        bottom: 26px;
    }

    .animal-kingdom-name {
        font-size: 6.2vw;
    }

    .animal-kingdom-count {
        font-size: 3.2vw;
        margin-top: 2vw;
    }

    .extinct-slider-header {
        margin-bottom: 40px;
    }

    .extinct-see-more {
        margin-bottom: 30px;
        margin-top: -20px;
    }

    .explore-slider .slider-btn-next:hover, .explore-slider .slider-btn-prev:hover {
        background-color: #cff4df;
    }

    .fact-text {
        width: 100%;
    }

    .animal-facts-container {
        width: 100% !important;
        padding: 0 2% 0 2%;
        text-align: justify;
    }

    .new-fixed-mobile-header {
        background-color: white !important;
        padding-left: 0px !important;
        padding-bottom: 66px !important;
    }
}



@media only screen and (max-width : 700px) {
    .main-search-location {
        height: 34px !important;
        border-radius: 12px !important;
        font-size: 13px !important;
        line-height: 34px !important;
        width: 240px !important;
    }
}

@media only screen and (min-width : 601px) and (max-width : 1440px) {
    .new-logo {
        left: 25px;
    }

    /*.container-new-head {
        padding: 20px 25px 30px 25px;
    }*/

    .slider-text-block {
        left: 25px;
    }

    .day-animal-block {
        padding: 60px 25px 60px 25px;
    }

    .main-collections {
        padding: 80px 25px 0px 25px;
    }

    .main-alphabet {
        padding: 40px 25px 0px 25px;
    }

    .main-explore {
        padding: 10% 25px 0px 25px;
    }
}

@media only screen and (min-width : 950px) and (max-width : 1440px) {
    .footer-socials-buttons {
        left: 25px;
    }

    .footer-link-block {
        right: 25px;
    }

    .new-footer-email {
        right: 25px;
    }

    .container-new-head {
        padding: 20px 25px 30px 75px;
    }

    .header-fixed .container {
        padding-right: 20px;
        padding-left: 20px;
    }

}

@media only screen and (min-width : 681px) and (max-width : 770px) {
    .parallax2 {
        height: 62vw;
    }

    .simple-slider-first {
        padding-top: 5vw;
    }
}

@media only screen and (min-width : 601px) and (max-width : 680px) {
    .parallax2 {
        height: 67vw;
    }

    .simple-slider-first {
        padding-top: 10vw;
    }
}

@media only screen and (min-width : 901px) and (max-width : 1100px) {
    .parallax2 {
        height: 60vw;
    }

    .slider-text-block {
        top: 5vw;
    }

    .simple-slider-first {
        padding-top: 3vw;
    }
}

@media only screen and (min-width : 1101px) and (max-width : 1250px) {
    .parallax2 {
        height: 57vw;
    }

    .slider-text-block {
        top: 7vw;
    }
}

@media only screen and (min-width : 1200px) {
    .endangered-input {
        width: 32% !important;
        height: 44px !important;
    }


}

/*.block-animals .animals-invert__item-img {
    position: relative;
    width: 275px;
}

.block-animals .animals-invert__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}*/

.filter-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0,199,83);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9
}

.filter-loader img {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.filter-loader-text {
    color: white;
    font-size: 18px;
    letter-spacing: 2.6px;
    font-family: Montserrat medium;
    margin-top: 100px;
}

.taxonomy-checkbox-block {
    position: relative;
    margin-top: 10px;
    min-height: 24px;
}

.filter-label-taxonomy {
    margin-left: 24px;
    cursor: pointer;
}

.hidden-taxonomy {
    display: none;
}

.filter-label-taxonomy {
    font-size: 14px;
    font-family: "Open Sans";
    color: rgba(0,0,0,.87);
}

.taxonomy-checkbox-container {
    position: relative;
}

.expand-taxonomy {
    position: absolute;
    top: -2px;
    left: -30px;
    cursor: pointer;
    display: inline-block;
    height: 18px;
    width: 20px;
    padding-left: 8px;
    font-family: gijgo-material!important;
    font-size: 24px;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}

.expand-taxonomy.expand:before {
    content: "\e925";
}

.expand-taxonomy:before {
    content: "\e924";
}

.taxonomy-childrens {
    height: 0px;
    overflow: hidden;
    display: inline-block;
}

.taxonomy-childrens.expand-childrens {
    height: auto;
}

@media only screen and (min-width : 1034px) and (max-width : 1160px) {
    header .main-nav {
        padding-top: 20px;
    }

    .main-nav .catalog-li:nth-child(5) {
        margin-top: 12px;
    }
}

@media only screen and (min-width : 993px) and (max-width : 1033px) {
    header .main-nav {
        padding-top: 20px;
    }

    .main-nav .catalog-li:nth-child(5), .main-nav .catalog-li:nth-child(4) {
        margin-top: 12px;
    }
}

@media only screen and (min-width : 712px) and (max-width : 1132px) {
    .slider-statistic .slider-statistic-item:nth-child(5) {
        margin-left: 0px;
        margin-top: 0.6em;
        display: block;
    }

}

@media only screen and (max-width : 711px) {
    .slider-statistic .slider-statistic-item:nth-child(5) {
        margin-left: -76px;
        margin-top: 0.6em;
    }

    .slider-statistic .slider-statistic-item:nth-child(4) {
        margin-left: 0px;
        margin-top: 0.6em;
        width: 252px;
    }

}

@media only screen and (min-width : 729px) and (max-width : 904px) {
    .main-nav .catalog-li:nth-child(5) {
        margin-top: 12px;
    }
}

@media only screen and (max-width : 728px) {
    .main-nav .catalog-li:nth-child(5), .main-nav .catalog-li:nth-child(4) {
        margin-top: 12px;
    }
}

/*# sourceMappingURL=all.css.map */
