

/* Start:/scripts/external/photoswipe/photoswipe.css?14665454154093*/
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/* End */


/* Start:/scripts/external/photoswipe/default-skin/default-skin.css?146654541511609*/
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus,
  .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/scripts/external/photoswipe/default-skin/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/scripts/external/photoswipe/default-skin/default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(/scripts/external/photoswipe/default-skin/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

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

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

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/* End */


/* Start:/local/templates/mango_ru/css/font.awesome/css/font-awesome.min.css?146835935829063*/
/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('/local/templates/mango_ru/css/font.awesome/css/../fonts/fontawesome-webfont.eot?v=4.6.3');src:url('/local/templates/mango_ru/css/font.awesome/css/../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('/local/templates/mango_ru/css/font.awesome/css/../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('/local/templates/mango_ru/css/font.awesome/css/../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('/local/templates/mango_ru/css/font.awesome/css/../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('/local/templates/mango_ru/css/font.awesome/css/../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.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:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.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:#fff}.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-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"}.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}

/* End */


/* Start:/static_files_new/css/plugins/slick.min.css?14647308871714*/
.slick-list,.slick-slider{position:relative;display:block}.slick-slider{box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;left:0;top:0;display:block}.slick-track:after,.slick-track:before{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;outline:none;display:none}[dir=rtl] .slick-slide{float:right}.slick-initialized .slick-slide,.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.slick-dots{position:absolute;left:0;right:0;bottom:40px;font-size:0;text-align:center}.slick-dots li{display:inline-block;width:12px;height:12px;border:2px solid #fff;border-radius:12px;margin:0 3px;cursor:pointer}.slick-dots li:hover:not(.slick-active){opacity:.7}.slick-dots .slick-active{background-color:#fff}.slick-dots button{background-color:transparent;padding:0}.slider-arrow{position:absolute;top:50%;margin-top:-18.5px;cursor:pointer}.slider-arrow--prev{left:0}.slider-arrow--next{right:0}.slider-arrow .icon{fill:#fff}
/* End */


/* Start:/static_files_new/css/plugins/jquery.webui-popover.min.css?14781237306374*/
.webui-popover-rtl{direction:rtl;text-align:right}.webui-popover{position:absolute;top:0;left:0;z-index:9999;display:none;min-width:50px;min-height:32px;text-align:left;white-space:normal;background-color:#fff;background-clip:padding-box;box-shadow:0 3px 6px 0 rgba(0,0,0,.46)}.webui-popover.top,.webui-popover.top-left,.webui-popover.top-right{margin-top:-10px}.webui-popover.right,.webui-popover.right-bottom,.webui-popover.right-top{margin-left:10px}.webui-popover.bottom,.webui-popover.bottom-left,.webui-popover.bottom-right{margin-top:10px}.webui-popover.left,.webui-popover.left-bottom,.webui-popover.left-top{margin-left:-10px}.webui-popover.pop{-webkit-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);transition:transform .15s cubic-bezier(.3,0,0,1.5);transition:transform .15s cubic-bezier(.3,0,0,1.5),-webkit-transform .15s cubic-bezier(.3,0,0,1.5);opacity:0;filter:alpha(opacity=0)}.webui-popover.pop-out{transition-property:"opacity,transform";transition:.15s linear;opacity:0;filter:alpha(opacity=0)}.webui-popover.fade,.webui-popover.fade-out{transition:opacity .15s linear;opacity:0;filter:alpha(opacity=0)}.webui-popover.out{opacity:0;filter:alpha(opacity=0)}.webui-popover.in{-webkit-transform:none;-ms-transform:none;transform:none;opacity:1;filter:alpha(opacity=100)}.webui-popover .webui-popover-content{padding:15px;overflow:auto;display:block}@media (min-width:640px){padding:30px}.webui-popover-inner .close{font-family:arial;margin:8px 10px 0 0;float:right;font-size:16px;font-weight:700;line-height:16px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20);text-decoration:none}.webui-popover-inner .close:focus,.webui-popover-inner .close:hover{opacity:.5;filter:alpha(opacity=50)}.webui-popover-inner .close:after{content:"\00D7";width:.8em;height:.8em;padding:4px;position:relative}.webui-popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:700;line-height:18px;background-color:#fff;border-bottom:1px solid #f2f2f2;border-radius:5px 5px 0 0}.webui-popover-content{padding:9px 14px;overflow:auto;display:none}.webui-popover-inverse{background-color:#333;color:#eee}.webui-popover-inverse .webui-popover-title{background:#333;border-bottom:1px solid #3b3b3b;color:#eee}.webui-no-padding .webui-popover-content{padding:0}.webui-no-padding .list-group-item{border-right:none;border-left:none}.webui-no-padding .list-group-item:first-child{border-top:0}.webui-no-padding .list-group-item:last-child{border-bottom:0}.webui-popover>.webui-arrow,.webui-popover>.webui-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.webui-popover>.webui-arrow{border-width:11px}.webui-popover>.webui-arrow:after{border-width:10px;content:""}.webui-popover.top-left>.webui-arrow,.webui-popover.top-right>.webui-arrow,.webui-popover.top>.webui-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.webui-popover.top-left>.webui-arrow:after,.webui-popover.top-right>.webui-arrow:after,.webui-popover.top>.webui-arrow:after{content:" ";bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0}.webui-popover.right-bottom>.webui-arrow,.webui-popover.right-top>.webui-arrow,.webui-popover.right>.webui-arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.webui-popover.right-bottom>.webui-arrow:after,.webui-popover.right-top>.webui-arrow:after,.webui-popover.right>.webui-arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.webui-popover.bottom-left>.webui-arrow,.webui-popover.bottom-right>.webui-arrow,.webui-popover.bottom>.webui-arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);border-top-width:0}.webui-popover.bottom-left>.webui-arrow:after,.webui-popover.bottom-right>.webui-arrow:after,.webui-popover.bottom>.webui-arrow:after{content:" ";top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0}.webui-popover.left-bottom>.webui-arrow,.webui-popover.left-top>.webui-arrow,.webui-popover.left>.webui-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.webui-popover.left-bottom>.webui-arrow:after,.webui-popover.left-top>.webui-arrow:after,.webui-popover.left>.webui-arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.webui-popover-inverse.top-left>.webui-arrow,.webui-popover-inverse.top-left>.webui-arrow:after,.webui-popover-inverse.top-right>.webui-arrow,.webui-popover-inverse.top-right>.webui-arrow:after,.webui-popover-inverse.top>.webui-arrow,.webui-popover-inverse.top>.webui-arrow:after{border-top-color:#333}.webui-popover-inverse.right-bottom>.webui-arrow,.webui-popover-inverse.right-bottom>.webui-arrow:after,.webui-popover-inverse.right-top>.webui-arrow,.webui-popover-inverse.right-top>.webui-arrow:after,.webui-popover-inverse.right>.webui-arrow,.webui-popover-inverse.right>.webui-arrow:after{border-right-color:#333}.webui-popover-inverse.bottom-left>.webui-arrow,.webui-popover-inverse.bottom-left>.webui-arrow:after,.webui-popover-inverse.bottom-right>.webui-arrow,.webui-popover-inverse.bottom-right>.webui-arrow:after,.webui-popover-inverse.bottom>.webui-arrow,.webui-popover-inverse.bottom>.webui-arrow:after{border-bottom-color:#333}.webui-popover-inverse.left-bottom>.webui-arrow,.webui-popover-inverse.left-bottom>.webui-arrow:after,.webui-popover-inverse.left-top>.webui-arrow,.webui-popover-inverse.left-top>.webui-arrow:after,.webui-popover-inverse.left>.webui-arrow,.webui-popover-inverse.left>.webui-arrow:after{border-left-color:#333}.webui-popover i.icon-refresh:before{content:""}.webui-popover i.icon-refresh{display:block;width:30px;height:30px;font-size:20px;top:50%;left:50%;position:absolute;margin-left:-15px;margin-right:-15px;background:url(/static_files_new/css/plugins/../img/loading.gif) no-repeat}@-webkit-keyframes rotate{to{-webkit-transform:rotate(360deg)}}@keyframes rotate{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.webui-popover-backdrop{background-color:rgba(0,0,0,.65);width:100%;height:100%;position:fixed;top:0;left:0;z-index:9998}.webui-popover .dropdown-menu{display:block;position:relative;top:0;border:none;box-shadow:none;float:none}
/* End */


/* Start:/static_files_new/css/base/base-style.css?1501238476200983*/
@charset "UTF-8";
/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block; }

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none; }

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/*==============#TYPOGRAPHY================*/
/* Circe */
@font-face {
  font-family: 'Circe';
  src: local("Circe"), local("Circe Regular"), url("/static_files_new/css/base/../../fonts/circe/circeregular.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/circe/circeregular.woff") format("woff"), url("/static_files_new/css/base/../../fonts/circe/circeregular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: 'Circe';
  src: local("CirceBold"), local("Circe Bold"), url("/static_files_new/css/base/../../fonts/circe/circebold.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/circe/circebold.woff") format("woff"), url("/static_files_new/css/base/../../fonts/circe/circebold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }
@font-face {
  font-family: 'Circe';
  src: local("CirceExtraBold"), local("Circe Bold"), url("/static_files_new/css/base/../../fonts/circe/circeextrabold.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/circe/circeextrabold.woff") format("woff"), url("/static_files_new/css/base/../../fonts/circe/circeextrabold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: 'Circe';
  src: local("CirceLight"), local("Circe Light"), url("/static_files_new/css/base/../../fonts/circe/circelight.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/circe/circelight.woff") format("woff"), url("/static_files_new/css/base/../../fonts/circe/circelight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Circe';
  src: local("CirceExtraLight"), local("Circe Extra Light"), url("/static_files_new/css/base/../../fonts/circe/circeextralight.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/circe/circeextralight.woff") format("woff"), url("/static_files_new/css/base/../../fonts/circe/circeextralight.ttf") format("truetype");
  font-weight: 100;
  font-style: normal; }
/* PT Sans */
@font-face {
  font-family: 'PT Sans';
  src: local("PT Sans"), local("PTSans-Regular"), url("/static_files_new/css/base/../../fonts/ptsans/ptsans.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/ptsans/ptsans.woff") format("woff"), url("/static_files_new/css/base/../../fonts/ptsans/ptsans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: 'PT Sans';
  src: local("PT Sans Italic"), local("PTSans-Italic"), url("/static_files_new/css/base/../../fonts/ptsans/ptsansitalic.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/ptsans/ptsansitalic.woff") format("woff"), url("/static_files_new/css/base/../../fonts/ptsans/ptsansitalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }
@font-face {
  font-family: 'PT Sans';
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("/static_files_new/css/base/../../fonts/ptsans/ptsansbold.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/ptsans/ptsansbold.woff") format("woff"), url("/static_files_new/css/base/../../fonts/ptsans/ptsansbold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }
@font-face {
  font-family: 'PT Sans';
  src: local("PT Sans Bold Italic"), local("PTSans-BoldItalic"), url("/static_files_new/css/base/../../fonts/ptsans/ptsansbolditalic.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/ptsans/ptsansbolditalic.woff") format("woff"), url("/static_files_new/css/base/../../fonts/ptsans/ptsansbolditalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic; }
/* Muller */
@font-face {
  font-family: 'Muller';
  src: local("Muller Regular"), local("Muller-Regular"), url("/static_files_new/css/base/../../fonts/muller/MullerRegular.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/muller/MullerRegular.woff") format("woff"), url("/static_files_new/css/base/../../fonts/muller/MullerRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Muller';
  src: local("MullerBold"), local("MullerBold"), url("/static_files_new/css/base/../../fonts/muller/MullerBold.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/muller/MullerBold.woff") format("woff"), url("/static_files_new/css/base/../../fonts/muller/MullerBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }
@font-face {
  font-family: 'Muller';
  src: local("Muller Extra Bold"), local("Muller-ExtraBold"), url("/static_files_new/css/base/../../fonts/muller/MullerExtraBold.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/muller/MullerExtraBold.woff") format("woff"), url("/static_files_new/css/base/../../fonts/muller/MullerExtraBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: 'Muller';
  src: local("MullerLight"), local("MullerLight"), url("/static_files_new/css/base/../../fonts/muller/MullerLight.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/muller/MullerLight.woff") format("woff"), url("/static_files_new/css/base/../../fonts/muller/MullerLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Muller';
  src: local("Muller Ultra Light"), local("Muller-UltraLight"), url("/static_files_new/css/base/../../fonts/muller/MullerUltraLight.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/muller/MullerUltraLight.woff") format("woff"), url("/static_files_new/css/base/../../fonts/muller/MullerUltraLight.ttf") format("truetype");
  font-weight: 100;
  font-style: normal; }
/* HelveticaNeue */
@font-face {
  font-family: 'HelveticaNeueCyrThin';
  src: local("Helvetica Neue Thin"), local("Helvetica-Neue-Cyr-Thin"), url("/static_files_new/css/base/../../fonts/helveticaneue/HelveticaNeueCyrThin.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/helveticaneue/HelveticaNeueCyrThin.woff") format("woff"), url("/static_files_new/css/base/../../fonts/helveticaneue/HelveticaNeueCyrThin.ttf") format("truetype"); }
@font-face {
  font-family: 'HelveticaNeueCyrBold';
  src: local("Helvetica Neue Bold"), local("Helvetica-Neue-Cyr-Bold"), url("/static_files_new/css/base/../../fonts/helveticaneue/HelveticaNeueCyrBold.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/helveticaneue/HelveticaNeueCyrBold.woff") format("woff"), url("/static_files_new/css/base/../../fonts/helveticaneue/HelveticaNeueCyrBold.ttf") format("truetype"); }
/* Open Sans */
@font-face {
  font-family: 'Open Sans';
  src: local("Open Sans Light"), local("OpenSans-Light"), url("/static_files_new/css/base/../../fonts/opensans/opensanslight.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/opensans/opensanslight.woff") format("woff"), url("/static_files_new/css/base/../../fonts/opensans/opensanslight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Open Sans';
  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url("/static_files_new/css/base/../../fonts/opensans/opensanslightitalic.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/opensans/opensanslightitalic.woff") format("woff"), url("/static_files_new/css/base/../../fonts/opensans/opensanslightitalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic; }
@font-face {
  font-family: 'Open Sans';
  src: local("Open Sans"), local("OpenSans"), url("/static_files_new/css/base/../../fonts/opensans/opensans.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/opensans/opensans.woff") format("woff"), url("/static_files_new/css/base/../../fonts/opensans/opensans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: 'Open Sans';
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url("/static_files_new/css/base/../../fonts/opensans/opensansitalic.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/opensans/opensansitalic.woff") format("woff"), url("/static_files_new/css/base/../../fonts/opensans/opensansitalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }
@font-face {
  font-family: 'Open Sans';
  src: local("Open Sans Semibold"), local("OpenSans-Semibold"), url("/static_files_new/css/base/../../fonts/opensans/opensanssemibold.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/opensans/opensanssemibold.woff") format("woff"), url("/static_files_new/css/base/../../fonts/opensans/opensanssemibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: 'Open Sans';
  src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic"), url("/static_files_new/css/base/../../fonts/opensans/opensanssemibolditalic.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/opensans/opensanssemibolditalic.woff") format("woff"), url("/static_files_new/css/base/../../fonts/opensans/opensanssemibolditalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic; }
@font-face {
  font-family: 'Open Sans';
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("/static_files_new/css/base/../../fonts/opensans/opensansbold.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/opensans/opensansbold.woff") format("woff"), url("/static_files_new/css/base/../../fonts/opensans/opensansbold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }
@font-face {
  font-family: 'Open Sans';
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url("/static_files_new/css/base/../../fonts/opensans/opensansbolditalic.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/opensans/opensansbolditalic.woff") format("woff"), url("/static_files_new/css/base/../../fonts/opensans/opensansbolditalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic; }
@font-face {
  font-family: 'Open Sans';
  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url("/static_files_new/css/base/../../fonts/opensans/opensansextrabold.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/opensans/opensansextrabold.woff") format("woff"), url("/static_files_new/css/base/../../fonts/opensans/opensansextrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal; }
@font-face {
  font-family: 'Open Sans';
  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url("/static_files_new/css/base/../../fonts/opensans/opensansextrabolditalic.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/opensans/opensansextrabolditalic.woff") format("woff"), url("/static_files_new/css/base/../../fonts/opensans/opensansextrabolditalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic; }
@font-face {
  font-family: 'Gunny Rewritten';
  src: local("Gunny Rewritten"), local("GunnyRewritten"), url("/static_files_new/css/base/../../fonts/gunnyrewritten/gunnyrewritten.woff2") format("woff2"), url("/static_files_new/css/base/../../fonts/gunnyrewritten/gunnyrewritten.woff") format("woff"), url("/static_files_new/css/base/../../fonts/gunnyrewritten/gunnyrewritten.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

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

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

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

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

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

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html,
body {
  height: 100%; }

html {
  min-width: 320px;
  -webkit-overflow-scrolling: touch;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -ms-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  min-width: 320px; }
  html.bg-line {
    background: url("/static_files_new/css/base/../../img/bg.png") repeat center top; }
  html.open-mobile-nav {
    overflow: hidden; }
    html.open-mobile-nav body {
      overflow: hidden; }
  html.min-width-640 {
    min-width: 640px; }
  html.not_responsive {
    min-width: 1024px; }
    html.not_responsive div.mg-maincontainer {
      min-width: auto; }

body {
  font: 16px/1.5625 "PT Sans", Arial, Helvetica, sans-serif;
  color: #333; }

::selection {
  background: #f4f7f9; }

::-moz-selection {
  background: #f4f7f9; }

input[type="checkbox"],
input[type="radio"] {
  outline: none; }

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  background-color: #fff;
  outline: none;
  border: 1px solid #d2dade;
  padding: 3.5px 10px;
  transition: border-color 0.18s; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus,
  select:focus,
  textarea:focus {
    border-color: #9fd54a; }
    input[type="text"]:focus::-webkit-input-placeholder,
    input[type="email"]:focus::-webkit-input-placeholder,
    input[type="password"]:focus::-webkit-input-placeholder,
    select:focus::-webkit-input-placeholder,
    textarea:focus::-webkit-input-placeholder {
      visibility: hidden; }
    input[type="text"]:focus:-moz-placeholder,
    input[type="email"]:focus:-moz-placeholder,
    input[type="password"]:focus:-moz-placeholder,
    select:focus:-moz-placeholder,
    textarea:focus:-moz-placeholder {
      visibility: hidden; }
    input[type="text"]:focus::-moz-placeholder,
    input[type="email"]:focus::-moz-placeholder,
    input[type="password"]:focus::-moz-placeholder,
    select:focus::-moz-placeholder,
    textarea:focus::-moz-placeholder {
      visibility: hidden; }
    input[type="text"]:focus:-ms-input-placeholder,
    input[type="email"]:focus:-ms-input-placeholder,
    input[type="password"]:focus:-ms-input-placeholder,
    select:focus:-ms-input-placeholder,
    textarea:focus:-ms-input-placeholder {
      visibility: hidden; }
    input[type="text"]:focus::-ms-input-placeholder,
    input[type="email"]:focus::-ms-input-placeholder,
    input[type="password"]:focus::-ms-input-placeholder,
    select:focus::-ms-input-placeholder,
    textarea:focus::-ms-input-placeholder {
      visibility: hidden; }

input {
  border-radius: 0;
  box-shadow: none; }
  input[type="text"], input[type="email"], input[type="date"], input[type="number"], input[type="password"] {
    width: 100%;
    max-width: 635px; }
    input[type="text"][disabled], input[type="email"][disabled], input[type="date"][disabled], input[type="number"][disabled], input[type="password"][disabled] {
      background-color: #f4f7f9; }
  input::-webkit-input-placeholder {
    color: #777; }
  input:-moz-placeholder {
    color: #777; }
  input::-moz-placeholder {
    color: #777; }
  input:-ms-input-placeholder {
    color: #777; }
  input::-ms-input-placeholder {
    color: #777; }
  input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: #333 !important; }

input,
button {
  outline: none;
  border: 0;
  padding: 0;
  background: transparent; }

select {
  height: 26px;
  border-radius: 0;
  -webkit-appearance: none;
  background-image: url("/static_files_new/css/base/../../img/design/arr-b-dark.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
  padding: 1px 30px 1px 10px;
  line-height: 26px;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  -ms-appearance: none;
  appearance: none !important; }

select::-ms-expand {
  display: none; }

input.error {
  border-color: #DE1818; }

input.valid {
  border-color: #1EA216;
  background: #fff url("/static_files_new/css/base/../img/design/v.png") no-repeat right center; }

span.error {
  color: #DE1818;
  font-size: 11px; }

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

h1, h2, h3, h4 {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin: 0;
  line-height: 1.3; }

h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 33px;
  padding-top: 8px; }
  @media (min-width: 640px) {
    h1 {
      font-size: 60px;
      line-height: 0.9333; } }

.h2-big {
  font-size: 48px;
  line-height: 1.3333; }

h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3888;
  padding-top: 3.0701%;
  margin-bottom: 3.5087%; }
  @media (min-width: 1024px) {
    h2 {
      font-size: 48px;
      line-height: 1.0416; } }

h3 {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.0417; }

h4 {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.0417; }

p {
  margin: 25px 0; }

img {
  width: auto;
  max-width: 100%;
  outline: none;
  vertical-align: middle; }

small {
  font-size: 13px;
  line-height: 1.5384;
  display: inline-block; }

figure {
  margin: 0; }

dt {
  float: left; }

dd {
  margin-left: 70px; }

ul {
  list-style: none;
  margin: 0;
  padding: 0; }

a {
  color: #0086CF;
  text-decoration: none;
  outline: none; }
  a:hover {
    color: #0D9ADF; }
  a[href^="tel:"] {
    white-space: nowrap; }
    a[href^="tel:"]:hover {
      color: #879ca7; }

table {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
  border-collapse: collapse; }

td, th {
  padding: 0; }

th {
  text-align: left; }

.parallax {
  background-image: url("/static_files_new/css/base/../../img/design/bg-ct.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -40px; }

.table {
  margin-bottom: 52px; }
  .table thead th {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.0417;
    padding-top: 52px;
    padding-bottom: 22px;
    border-bottom: 5px solid #d2dade; }
    .table thead th.fs-base {
      font-size: 16px; }
  .table tbody th {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.0417;
    padding-top: 52px;
    padding-bottom: 22px;
    border-bottom: 5px solid #d2dade; }
  .table tbody td {
    padding: 12px 0; }
  .table.cell-h-padding tbody td,
  .table.cell-h-padding thead th {
    padding-left: 20px;
    padding-right: 20px; }
  .table.center-not-first thead th {
    text-align: center; }
  .table.center-not-first td:not(:first-child), .table.center-not-first th:not(:first-child) {
    text-align: center; }
  .table.border-h tr {
    border-bottom: 1px solid #d2dade; }
  .table.border-v td:not(:first-child) {
    border-left: 1px solid #d2dade; }
  .table .border-child {
    border-left: 1px solid #d2dade; }

.table-responsive {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; }
  .table-responsive::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 14px;
    height: 14px; }
  .table-responsive::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 3px solid #fff;
    background-color: rgba(0, 0, 0, 0.3); }

sup, sub {
  font-size: 12px;
  line-height: 1.1666;
  display: inline-block;
  margin-bottom: 12px;
  vertical-align: middle; }

embed,
iframe,
object,
video {
  max-width: 100%;
  width: 100%; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.embed-responsive-21by9 {
  padding-bottom: 42.85714%; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.embed-responsive-1by1 {
  padding-bottom: 100%; }

/* Универсальные управляющие классы
===================================*/
.bg-palegrey {
  background-color: #eceff1; }

.bg-blue {
  background-color: #30b1f6; }

.bg-white {
  background-color: #fff; }

.bg-dark {
  background-color: #2b3a43; }

.bg-orange {
  background-color: #fe8803; }

.text-black {
  color: #333; }

.text-gray {
  color: #949494; }

.text-warmgrey {
  color: #777; }

.text-white {
  color: #fff; }

.text-orange {
  color: #ff6400; }

.text-yellow {
  color: #ffba00; }

.text-green {
  color: #91c73d; }

.text-silver {
  color: #d2dade; }
  .text-silver.num {
    font-size: 60px;
    line-height: 1.0666;
    font-family: "Circe",Arial,Helvetica,sans-serif;
    font-weight: 700; }

.bold {
  font-weight: 700; }

.bt {
  border-top: 1px solid #d2dade; }

.bb {
  border-bottom: 1px solid #d2dade; }

.padding-v {
  padding-top: 38px; }

.dashed {
  border-bottom: 1px dashed; }

.form-bottom-cont {
  padding: 53px 0 75px; }
  .form-bottom-cont h2 {
    margin-bottom: 15px; }
  .form-bottom-cont p {
    margin-top: 0; }
  .form-bottom-cont .row, .form-bottom-cont .row-inline {
    margin-bottom: 25px; }
  .form-bottom-cont form {
    padding-top: 23px; }
  .form-bottom-cont label {
    display: block;
    color: #777;
    padding-top: 12px; }
  .form-bottom-cont input[type="text"],
  .form-bottom-cont input[type="email"],
  .form-bottom-cont input[type="password"],
  .form-bottom-cont select,
  .form-bottom-cont textarea {
    height: 50px; }

.checkbox {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  cursor: pointer; }
  .checkbox:before {
    content: '';
    position: absolute;
    background: url(/static_files_new/css/base/../../img/design/checkbox.svg) no-repeat;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 15px;
    height: 15px; }
  .checkbox.active:before {
    background: url(/static_files_new/css/base/../../img/design/checkbox-checked.svg) no-repeat; }

.radio input[type="radio"] {
  visibility: hidden;
  position: absolute; }

.radio input[type="radio"] + span {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  border: 1px solid #a0b1b9;
  border-radius: 18px;
  position: relative;
  margin-right: 12px; }

.radio input[type="radio"]:checked + span:before {
  content: '';
  background-color: #6a8089;
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  margin: auto;
  border-radius: 100%; }

.file-upload .file-upload_add {
  margin-top: 0; }
.file-upload_add {
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 25px; }
  .file-upload_add .button {
    display: inline-block;
    width: 114px;
    border: 1px solid #d2dade;
    border-radius: 3px;
    padding: 5px 0;
    color: #879ca7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    text-align: center;
    cursor: pointer; }
    .file-upload_add .button:hover {
      color: #333; }
  .file-upload_add input[type=file] {
    position: absolute;
    top: 0;
    visibility: hidden; }
.file-upload_format {
  color: #777;
  font-size: 14px;
  vertical-align: middle;
  margin-left: 10px; }
.file-upload_list {
  font-size: 0; }
.file-upload_item {
  display: inline-block;
  font-size: 14px;
  margin-right: 6px;
  margin-bottom: 14px; }
  .file-upload_item a {
    display: inline-block;
    vertical-align: middle;
    line-height: 12px;
    padding: 3px; }
  .file-upload_item .icon {
    width: 11px;
    height: 11px;
    fill: #bac6cc; }

.video-play {
  position: relative; }
  .video-play .icon--play {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    opacity: 1;
    transition: opacity 0.1s; }
  .video-play:hover .icon--play {
    opacity: 0.8; }

.hide {
  display: none !important; }

.show {
  display: block; }

.hidden {
  visibility: hidden; }

.visible {
  visibility: visible; }

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

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

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

.f-left {
  float: left; }

.f-right {
  float: right; }

.inline {
  display: inline-block;
  vertical-align: top;
  zoom: 1; }

h3 > .label-special {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 3px;
  padding-top: 5px;
  margin-left: 15px;
  vertical-align: middle;
  white-space: nowrap; }

.label-special {
  background: #ffba00;
  color: #fff;
  padding: 3px 7px;
  position: relative;
  left: -7px; }

.label-default,
.label-primary,
.label-success,
.label-info,
.label-warning,
.label-danger {
  color: #f4f7f9; }

.font-decor {
  font-family: "Gunny Rewritten", Arial, Helvetica, sans-serif;
  color: #ff6400;
  font-size: 32px;
  line-height: 1.3; }

.link-back {
  background: url(/static_files_new/css/base/../../img/design/arr-l-dark.png) no-repeat left center;
  padding-left: 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #777;
  padding-bottom: 2px; }

.order-unit {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #d2dade;
  border-radius: 3px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1.7857;
  padding: 2px 11px;
  min-height: 30px;
  white-space: nowrap; }
  .order-unit > span {
    white-space: nowrap; }
    .order-unit > span span {
      color: #777; }
  .order-unit_del {
    display: inline-block;
    line-height: 12px;
    margin-right: -6px;
    vertical-align: middle;
    padding: 3px 5px;
    margin-bottom: 2px; }
    .order-unit_del .icon {
      width: 11px;
      height: 11px; }
    .order-unit_del:hover .icon {
      fill: #777; }
  .order-unit--mobile {
    float: left;
    padding: 7px 11px 11px;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative; }
    .order-unit--mobile > span {
      display: inline-block;
      vertical-align: middle; }
    .order-unit--mobile .order-unit_del {
      float: right;
      margin-top: 2px;
      margin-right: -10px;
      padding: 8px 10px; }
    .order-unit--mobile .cart_remove {
      position: relative;
      top: 3px; }
    @media (max-width: 396px) {
      .order-unit--mobile {
        width: 100%; } }
    @media (min-width: 397px) {
      .order-unit--mobile {
        margin-left: 4px;
        margin-right: 4px; } }

.top-panel-error {
  display: none;
  background-color: #818a91;
  font-size: 15px;
  line-height: 1.3333;
  color: #f4f7f9;
  padding: 13px 30px 13px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  transition: top 0.4s;
  margin-top: -1px; }
  .top-panel-error.fixed {
    position: fixed;
    top: 0; }
  .top-panel-error .close-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 13px; }
  .top-panel-error .icon {
    fill: #fff; }
  .top-panel-error.animated {
    animation-duration: .2s; }

.label-default {
  background-color: #818a91; }

.label-primary {
  background-color: #0275d8; }

.label-success {
  background-color: #85b935; }

.label-info {
  background-color: #40c8f4; }

.label-warning {
  background-color: #e87722; }

.label-danger {
  background-color: #e26c60; }

.stiker {
  display: inline-block;
  font-family: "PT Sans", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  border-radius: 3px;
  padding: 4.5px 7px; }
  .stiker--discount {
    background-color: #9040cb; }
  .stiker--hit {
    background-color: #ecaf02; }
  .stiker--speedial {
    background-color: #14ba4e; }
  .stiker--recommend {
    background-color: #bdb600; }
  .stiker--premium {
    background-color: #2db2ce; }
  .stiker--stock {
    background-color: #eb1d8a; }
  .stiker--stock20 {
    background-color: #eb1d8a; }
  .stiker--sale {
    background-color: #5a89bd; }
  .stiker--new {
    background-color: #69b616; }
  .stiker--balance {
    background-color: #2d58ce; }

.strike {
  text-decoration: line-through; }

.footnote {
  font-size: 14px;
  line-height: 1.7857;
  color: #7b848a; }

.social-link {
  font-size: 0; }
  @media (min-width: 640px) {
    .social-link a {
      width: 35px;
      content: "sm";
      height: 35px; }
    .social-link .icon {
      width: 35px;
      height: 35px; } }
  .social-link a {
    display: inline-block;
    margin-left: 10px;
    border-radius: 30px; }
    .social-link a:first-child {
      margin-left: 0; }
  @media (min-width: 1024px) {
    .social-link a {
      width: 30px;
      height: 30px; }
    .social-link .icon {
      width: 30px;
      height: 30px; } }
  @media (min-width: 1366px) {
    .social-link a {
      width: 35px;
      height: 35px; }
    .social-link .icon {
      width: 35px;
      height: 35px; } }

.product-sticky-panel {
  position: fixed;
  z-index: 100;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 49px;
  border-bottom: 1px solid #d2dade;
  padding: 9px 0;
  transform: translateY(-100%);
  transition: transform 0.2s ease-in-out; }
  .product-sticky-panel .icon {
    vertical-align: middle; }
  .product-sticky-panel .btn,
  .product-sticky-panel .callback {
    float: right;
    margin-left: 15px; }
    @media (min-width: 768px) {
      .product-sticky-panel .btn,
      .product-sticky-panel .callback {
        margin-left: 25px; } }
  .product-sticky-panel .company-phone {
    float: right; }
    @media (max-width: 767px) {
      .product-sticky-panel .company-phone {
        font-size: 20px;
        margin-top: 3px; } }
    @media (min-width: 768px) {
      .product-sticky-panel .company-phone {
        font-size: 24px; } }
  .product-sticky-panel .callback {
    margin-top: 5px; }
    @media (max-width: 430px) {
      .product-sticky-panel .callback {
        margin-top: 10px;
        clear: both; } }
  .product-sticky-panel.show {
    transform: translateY(0); }

.pricing-num {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1.0416;
  text-align: center;
  white-space: nowrap;
  overflow: hidden; }
  .pricing-num span {
    display: inline-block;
    vertical-align: middle; }
  .pricing-num_big {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #d2dade;
    position: relative;
    top: 10px; }
    @media (min-width: 640px) {
      .pricing-num_big {
        font-size: 95px;
        line-height: 1.5157; } }
    @media (min-width: 768px) {
      .pricing-num_big {
        font-size: 120px;
        line-height: 1.2; } }
    @media (min-width: 1024px) {
      .pricing-num_big {
        font-size: 144px;
        line-height: 1; } }

.support-box {
  background-color: #dd5fc0;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.6666;
  text-transform: uppercase;
  color: #fff;
  padding: 25px 15px;
  text-align: center; }
  .support-box_phone {
    white-space: nowrap;
    color: #fff;
    font-weight: 700; }
  .support-box--bgimg {
    background: url(/static_files_new/css/base/../../img/design/support-bg-24.png) no-repeat;
    background-size: cover; }
  .support-box .icon {
    display: block;
    width: 87px;
    height: 80px;
    margin: 0 auto 38px; }
    @media (min-width: 640px) {
      .support-box .icon {
        display: inline-block;
        vertical-align: middle;
        font-size: 30px; } }
    @media (min-width: 1024px) {
      .support-box .icon {
        width: 64px;
        height: 64px;
        margin-right: 10px;
        margin-bottom: 0; } }
  .support-box span {
    display: block;
    margin-bottom: 26px; }
    @media (min-width: 640px) {
      .support-box span {
        margin-bottom: 0; } }
    @media (min-width: 1024px) {
      .support-box span {
        display: inline; } }
  @media (min-width: 640px) {
    .support-box {
      font-size: 30px; } }
  @media (min-width: 1024px) {
    .support-box {
      padding: 18px 15px; } }

.step {
  margin-bottom: 3.7719%; }

.step-demo {
  overflow: hidden;
  float: left; }
  .step-demo--column {
    margin-bottom: 52px; }
  .step-demo_text {
    padding-left: 50px; }
    @media (min-width: 1024px) {
      .step-demo_text {
        padding-left: 0;
        padding-top: 23px; } }
  .step-demo:before {
    content: '';
    display: block;
    margin: auto;
    width: 30px;
    height: 30px;
    border: 6px solid #eceff1;
    border-radius: 30px;
    box-sizing: border-box;
    transition: transform 0.4s ease-in-out; }
  .step-demo:after {
    display: block;
    border-bottom: 2px dashed #bfbfbf;
    margin-left: 45px;
    padding-top: 14px; }
  .step-demo--1:before {
    border-left-color: #ffba00; }
  .step-demo--2:before {
    border-top-color: #ffba00;
    border-left-color: #ffba00;
    transform: rotateZ(-45deg); }
  .step-demo--3:before {
    border-top-color: #ffba00;
    border-left-color: #ffba00;
    border-bottom-color: #ffba00; }
  .step-demo--4:before {
    border-color: #ffba00; }
  @media (min-width: 1024px) {
    .step-demo {
      float: none; }
      .step-demo:before {
        float: left; }
      .step-demo:not(.step-demo--last):after {
        content: ''; } }

.bg-full-img {
  background: url(http://placehold.it/1440x600/eceff1/?text=full+img) no-repeat center center/cover;
  height: 600px; }

.bg-blue {
  background-color: #30b1f6; }

.bg-lightan {
  background-color: #fcf4c5; }

.full-img {
  max-height: 600px;
  overflow: hidden;
  margin: 50px 0 0; }
  .full-img img {
    width: 100%; }

.advice-box {
  background-color: #f4f7f9;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5650;
  padding: 46px 0 54px; }

ul:not([class]) {
  list-style: disc;
  margin-left: 20px; }
  ul:not([class]) > li {
    position: relative; }
    ul:not([class]) > li > ul {
      list-style: circle;
      margin-left: 20px; }
      ul:not([class]) > li > ul li {
        padding-left: 0; }
        ul:not([class]) > li > ul li:before {
          content: none; }

.main_inner {
  padding-top: 38px;
  position: relative; }
  @media (min-width: 1024px) {
    .main_inner {
      margin-top: 45px; } }
.main .sidebar {
  padding-top: 30px; }

ul.list-disc {
  list-style: none;
  margin-left: 0; }
  ul.list-disc li {
    position: relative;
    padding-left: 20px; }
    ul.list-disc li:before {
      content: '\25cb';
      position: absolute;
      left: 0;
      font-size: 16px;
      top: 0; }
  ul.list-disc .list-margin-v {
    margin: 20px 0; }

ul.list-line {
  list-style: none;
  margin-left: 0; }
  ul.list-line > li {
    position: relative;
    padding-left: 20px; }
    ul.list-line > li:before {
      content: '\2013';
      position: absolute;
      left: 0;
      font-size: inherit;
      top: auto; }
  ul.list-line .list-margin-v {
    margin: 20px 0; }

ul.list-check,
ul.list-check-yellow,
ul.list-check-green {
  list-style: none;
  margin-left: 0; }
  ul.list-check > li,
  ul.list-check-yellow > li,
  ul.list-check-green > li {
    position: relative;
    padding-left: 25px; }

ul.list-check > li {
  background: url(/static_files_new/css/base/../../img/design/ok.png) no-repeat left 3px; }

ul.list-check-yellow > li {
  background: url(/static_files_new/css/base/../../img/design/ok-yellow.png) no-repeat left 3px; }

ul.list-check-green > li {
  background: url(/static_files_new/css/base/../../img/design/ok-green.png) no-repeat left 3px; }

.page-404 span {
  display: block;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 140px;
  font-weight: 700;
  line-height: 1.1111;
  color: #f4f7f9;
  cursor: default; }
  .page-404 span::selection {
    background: transparent; }
  .page-404 span::-moz-selection {
    background: transparent; }
  @media (min-width: 640px) {
    .page-404 span {
      font-size: 280px; } }
  @media (min-width: 1024px) {
    .page-404 span {
      font-size: 450px; } }
@media (min-width: 768px) {
  .page-404 {
    padding-top: 25px; } }

.other-services {
  padding-top: 55px;
  padding-bottom: 100px; }
  .other-services_links {
    padding-top: 26px; }
    .other-services_links li {
      display: inline-block;
      margin-right: 16px;
      padding-left: 0; }
      .other-services_links li:before {
        content: none; }
    .other-services_links a {
      font-size: 14px; }

.amount {
  width: 125px;
  overflow: hidden;
  border: 1px solid #d2dade;
  background-color: #fff; }
  .amount_min, .amount_max, .amount_input[type=text] {
    float: left;
    text-align: center; }
  .amount_min, .amount_max {
    width: 36.5px;
    height: 32px;
    line-height: 32px;
    color: #879ca7;
    font-size: 28px; }
    .amount_min:hover, .amount_max:hover {
      background-color: #f4f7f9; }
  .amount_input[type=text] {
    width: 50px;
    min-height: 32px;
    border-top: 0;
    border-bottom: 0;
    padding: 0 5px;
    color: #333; }

.counter-init {
  counter-reset: heading; }

.counter-init_item:before {
  counter-increment: heading;
  content: counter(heading); }

.amount-counter {
  width: 60px;
  position: relative; }
  .amount-counter input {
    width: 100%;
    height: 30px;
    padding: 0px 20px 0 5px; }
  .amount-counter span {
    -webkit-user-select: none;
    -moz-user-select: text;
    -ms-user-select: none;
    cursor: pointer;
    position: absolute;
    right: 5px; }
  .amount-counter_up {
    top: 6px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #000; }
  .amount-counter_down {
    bottom: 6px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000; }

.pagenav {
  margin-bottom: 70px; }
  .pagenav ul {
    white-space: nowrap;
    font-size: 0; }
  .pagenav li {
    display: inline-block;
    vertical-align: bottom;
    padding-left: 0;
    font-size: 13px; }
    .pagenav li:before {
      content: none; }
    .pagenav li a {
      display: block;
      font-size: 13px;
      letter-spacing: 0.5px;
      color: #333;
      height: 30px;
      line-height: 30px;
      padding: 0 11px;
      min-width: 30px; }
      .pagenav li a:hover {
        background-color: #f4f7f9; }
  .pagenav_dots {
    padding-bottom: 5px;
    margin: 0 5px; }
  .pagenav_prev a, .pagenav_next a {
    width: 6px;
    height: 10px; }
  .pagenav_prev a {
    background: url("/static_files_new/css/base/../../img/design/arr-l-dark.png") no-repeat center center; }
  .pagenav_next a {
    background: url("/static_files_new/css/base/../../img/design/arr-r-dark.png") no-repeat center center; }
  .pagenav .active a {
    background-color: #f4f7f9; }

.text-fs-24px,
.fs-24 {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5625;
  margin-bottom: 45px; }

.gread-title {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1718;
  color: #d2dade;
  text-transform: uppercase;
  text-align: center;
  padding: 85px 0 65px; }

.box-indent {
  margin: 25px 0 53px; }

.box-indent-inner {
  padding: 21px 0; }

.size24 {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 300; }

.content-head {
  overflow: hidden;
  min-height: 49px;
  position: relative;
  margin-bottom: 10px; }
  .content-head_parent {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1.25;
    display: inline-block;
    margin-top: 14px; }
  .content-head .btn {
    float: right;
    margin-left: 30px; }

[data-label] {
  position: relative; }
  [data-label]:before {
    content: attr(data-label);
    position: absolute;
    background-color: #91c73d;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 10px;
    color: #fff;
    padding: 1px 6px;
    margin: 12px;
    z-index: 1; }

/* Отдельные небольшие элементы
===================================*/
.banner-sidebar,
.fb-sidebar,
.vk-sidebar {
  margin-bottom: 16px; }

.banner-bottom-cont {
  padding-top: 15px; }

.number-user-online {
  background: url("/static_files_new/css/base/../../img/design/stopwatch.svg") no-repeat left top;
  font-size: 14px;
  color: #777;
  width: 190px;
  padding-left: 35px;
  margin-left: 15px;
  margin-bottom: 40px; }

.number-has {
  position: relative;
  background-color: #fff;
  padding: 16px 20px 16px 16px; }
  .number-has h4 {
    color: #5e737d;
    line-height: 1.25;
    margin-bottom: 16px; }
  .number-has p {
    color: #777;
    margin: 0; }
  .number-has:before {
    content: '';
    background: linear-gradient(135deg, #15b9bd 0%, #28bd83 79%);
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    z-index: -1; }

.our-products {
  padding: 30px 0 60px; }
  .our-products h2 {
    margin-bottom: 7.5438%; }

.about-home {
  padding: 40px 0; }
  .about-home p {
    margin-top: 0; }

.honors {
  padding-top: 30px; }

.performance-gen {
  padding-top: 25px;
  margin-bottom: 25px;
  text-align: center; }
  .performance-gen h2 {
    padding-bottom: 24px; }
  .performance-gen_num {
    display: block;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 65px;
    font-weight: 300;
    line-height: 1; }
    .performance-gen_num.text-silver {
      font-size: 60px;
      line-height: 1.0666;
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      font-weight: 700; }
      @media (min-width: 640px) {
        .performance-gen_num.text-silver {
          font-size: 44px;
          line-height: 1.3333; } }
      @media (min-width: 769px) {
        .performance-gen_num.text-silver {
          font-size: 60px;
          line-height: 1.0666; } }
      @media (min-width: 1366px) {
        .performance-gen_num.text-silver {
          font-size: 65px;
          line-height: 1; } }
  .performance-gen_text {
    margin-top: 10px; }
    @media (min-width: 640px) {
      .performance-gen_text {
        min-height: 75px; } }
  .performance-gen [class^="col-"]:not(:last-child) {
    margin-bottom: 55px; }
    @media (min-width: 640px) {
      .performance-gen [class^="col-"]:not(:last-child) {
        margin-bottom: 0; } }
  @media (min-width: 640px) {
    .performance-gen {
      text-align: left;
      margin-bottom: 60px; } }

.fms .fms-sel-vats {
  font-size: 14px;
  color: #777;
  text-align: center;
  padding: 10px 15px;
  margin-top: 25px; }
  .fms .fms-sel-vats span {
    margin-right: 5px; }
  @media (max-width: 767px) {
    .fms .fms-sel-vats {
      text-align: left;
      padding: 15px; }
      .fms .fms-sel-vats span {
        display: block;
        margin-bottom: 10px; } }
  @media (max-width: 375px) {
    .fms .fms-sel-vats select {
      width: 100%; } }
.fms .fms-logo {
  margin-top: 35px; }

.antibum {
  background: linear-gradient(135deg, #15b9bd 0%, #28bd83 79%);
  padding: 23px 18px;
  max-width: 254px;
  color: #fff; }
  .antibum_diff span {
    display: inline-block;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    vertical-align: middle;
    margin-right: 10px; }
  .antibum .close {
    padding: 3px;
    position: absolute;
    top: 9px;
    right: 9px;
    line-height: 0; }
  .antibum .icon--close {
    fill: #fff;
    width: 13px;
    height: 13px; }
  .antibum .btn {
    padding-top: 12px;
    padding-bottom: 12px; }

.gradient-text {
  text-transform: uppercase;
  background: linear-gradient(to right, #5ca857 0%, #f19255 50%, #f7c642 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #375360;
  display: table;
  margin: 20px auto; }

.motivation {
  padding-top: 22px;
  padding-bottom: 60px;
  display: none; }
  @media (min-width: 768px) {
    .motivation {
      margin-left: 255px; } }
  .motivation-banner {
    overflow: hidden;
    display: table;
    width: 100%; }
    .motivation-banner_img {
      display: none; }
      @media (min-width: 640px) {
        .motivation-banner_img {
          display: table-cell;
          vertical-align: bottom; } }
      .motivation-banner_img img {
        width: 100%; }
    .motivation-banner_text {
      display: table-cell;
      vertical-align: bottom;
      margin-top: 10px;
      text-align: center; }
      @media (min-width: 640px) {
        .motivation-banner_text {
          text-align: left; } }
      .motivation-banner_text .font-decor {
        padding-bottom: 30px;
        font-size: 25px; }
        @media (min-width: 1366px) {
          .motivation-banner_text .font-decor {
            font-size: 32px; } }
      .motivation-banner_text .link-back {
        display: inline-block;
        margin: 15px 0 10px 0; }
        @media (min-width: 640px) {
          .motivation-banner_text .link-back {
            margin-left: 10px; } }
    @media (min-width: 640px) {
      .motivation-banner--version .motivation-banner_img {
        width: 54.7368%; } }
    .motivation-banner--version .motivation-banner_text {
      padding-left: 25px;
      padding-right: 25px; }
      @media (min-width: 640px) {
        .motivation-banner--version .motivation-banner_text {
          padding-right: 25px;
          padding-left: 0; } }
    .motivation-banner--tariffs {
      padding-top: 35px; }
      .motivation-banner--tariffs .motivation-banner_img {
        width: 52.1052%; }
    .motivation-banner--numbers {
      padding-bottom: 50px;
      position: relative; }
      .motivation-banner--numbers .motivation-banner_img {
        width: 35%;
        padding-left: 30px;
        vertical-align: top; }
      .motivation-banner--numbers .motivation-banner_text {
        padding-top: 27px;
        vertical-align: top; }
  .motivation-block {
    border: 5px solid #eceff1;
    padding: 35px 35px 12px; }
    .motivation-block_title {
      font-family: "Circe", Arial, Helvetica, sans-serif;
      font-size: 26px;
      font-weight: 300;
      line-height: 1.13;
      text-align: center;
      padding: 0 15px; }
      @media (min-width: 640px) {
        .motivation-block_title {
          font-size: 32px; } }
    .motivation-block_img {
      text-align: center;
      padding-top: 30px;
      padding-bottom: 45px; }
    .motivation-block_text {
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      font-size: 19px; }
    .motivation-block_cols {
      overflow: hidden;
      font-family: "Open Sans",Arial,Helvetica,sans-serif;
      font-size: 13px;
      line-height: 1.54;
      text-align: center;
      padding: 0 20px 37px; }
  .motivation-features {
    overflow: hidden;
    padding-top: 48px; }
    .motivation-features_list {
      position: relative; }
      .motivation-features_list .row, .motivation-features_list .row-inline {
        margin-left: -10px;
        margin-right: -10px; }
      .motivation-features_list [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px; }
    .motivation-features_title {
      font-family: "Open Sans",Arial,Helvetica,sans-serif;
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      text-transform: uppercase;
      margin-bottom: 20px; }
    .motivation-features_desc {
      padding: 3px 8px;
      background-color: #fff;
      border: 1px solid #d2dade;
      color: #333; }
    .motivation-features_item {
      padding-top: 20px;
      text-align: center;
      cursor: pointer; }
      .motivation-features_item .img {
        text-align: center;
        height: 60px;
        background: url(/static_files_new/css/base/../../img/design/features-icons.png) no-repeat;
        width: 60px;
        margin: 0 auto 20px; }
        .motivation-features_item .img--1 {
          background-position: 0 -60px; }
          .motivation-features_item .img--1:hover {
            background-position: 0 0; }
        .motivation-features_item .img--2 {
          background-position: -60px -60px; }
          .motivation-features_item .img--2:hover {
            background-position: -60px 0; }
        .motivation-features_item .img--3 {
          background-position: -120px -60px; }
          .motivation-features_item .img--3:hover {
            background-position: -120px 0; }
        .motivation-features_item .img--4 {
          background-position: -180px -60px; }
          .motivation-features_item .img--4:hover {
            background-position: -180px 0; }
        .motivation-features_item .img--5 {
          background-position: -240px -60px; }
          .motivation-features_item .img--5:hover {
            background-position: -240px 0; }
      .motivation-features_item span {
        display: block;
        font-family: "Open Sans",Arial,Helvetica,sans-serif;
        font-size: 11px;
        line-height: 1.54; }
      .motivation-features_item.show {
        position: relative; }
        .motivation-features_item.show .img--1 {
          background-position: 0 0; }
        .motivation-features_item.show .img--2 {
          background-position: -60px 0; }
        .motivation-features_item.show .img--3 {
          background-position: -120px 0; }
        .motivation-features_item.show .img--4 {
          background-position: -180px 0; }
        .motivation-features_item.show .img--5 {
          background-position: -240px 0; }
        .motivation-features_item.show:before, .motivation-features_item.show:after {
          content: '';
          position: absolute;
          left: 50%;
          width: 0;
          height: 0;
          margin-left: -5px; }
        .motivation-features_item.show:after {
          top: -2px;
          border-top: 5px solid #fff;
          border-right: 5px solid transparent;
          border-left: 5px solid transparent;
          border-bottom: 0 solid transparent; }
        .motivation-features_item.show:before {
          top: -1px;
          border-top: 5px solid #d2dade;
          border-right: 5px solid transparent;
          border-left: 5px solid transparent;
          border-bottom: 0 solid transparent; }
    .motivation-features_tooltip {
      display: none;
      position: absolute; }
  .motivation-slider {
    padding-top: 48px; }
    .motivation-slider .slick-slider {
      padding: 20px 15px 0; }
    .motivation-slider .slick-arrow {
      position: absolute;
      top: 0;
      width: 16px;
      height: 45px;
      font-size: 0;
      z-index: 1;
      cursor: pointer; }
    .motivation-slider .slick-prev {
      left: 0;
      background: url(/static_files_new/css/base/../../img/design/arr-l-lg.png);
      background-position: center; }
    .motivation-slider .slick-next {
      right: 0;
      background: url(/static_files_new/css/base/../../img/design/arr-r-lg.png);
      background-position: center; }
    .motivation-slider_title {
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      text-transform: uppercase; }
    .motivation-slider_item {
      text-align: center; }
      .motivation-slider_item .img {
        text-align: center;
        padding-bottom: 20px; }
        .motivation-slider_item .img img {
          display: inline-block; }
      .motivation-slider_item span {
        display: block;
        font-family: "Open Sans", Arial, Helvetica, sans-serif;
        font-size: 13px;
        line-height: 1.54; }
  .motivation-del {
    position: absolute;
    top: 0;
    right: 0; }

@media (min-width: 768px) {
  .motivation-open .version {
    max-width: 198px;
    float: left; }
    .motivation-open .version_head {
      height: auto; } }
.motivation-open .tariffs {
  max-width: 207px;
  float: left; }
.motivation-open .motivation-view {
  display: block; }
.motivation-open .link-try,
.motivation-open .motivation-hide,
.motivation-open .version-dops--wrap,
.motivation-open .block-files {
  display: none; }
.motivation-open .tariffs_items {
  padding-left: 0; }
.motivation-open .tariffs_item {
  width: 100%; }
.motivation-open .version_head {
  position: static !important;
  width: auto !important; }
.motivation-open .version_func {
  width: auto !important;
  margin: 0 !important; }
.motivation-open .version-hit-icon {
  right: 3%; }

.news-home {
  padding: 30px 0 60px; }

.reviews {
  padding: 30px 0 60px; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out; }

.modal.in .modal-dialog {
  transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  margin: auto; }

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.modal-header {
  padding: 20px 50px 20px 20px; }

.modal-header .close {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 20px;
  cursor: pointer; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal-body {
  position: relative;
  padding: 15px 30px 25px; }

.modal-footer {
  padding: 15px 30px 40px; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (max-width: 639px) {
  .modal {
    background-color: #fff; }
    .modal .modal-content {
      box-shadow: none;
      border: 0; }
    .modal .field {
      margin-bottom: 20px; }
    .modal .modal-footer {
      text-align: center; } }
@media (min-width: 640px) {
  .modal-dialog {
    width: 420px; } }
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }

  .modal-sm {
    width: 300px; } }
@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }
@media (min-width: 1140px) {
  .modal-xl {
    width: 1040px; } }
.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table; }

.clearfix:after,
.modal-header:after,
.modal-footer:after {
  clear: both; }

.modal-vertical.modal {
  text-align: center;
  padding: 0 !important; }

.modal-vertical.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px; }

.modal-vertical .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle; }

.modal.modal-wide .modal-dialog {
  max-width: 1040px;
  width: 100%; }

.modal-wide .modal-body {
  overflow-y: auto; }

.modal-order-notreg p {
  margin-top: 0; }
.modal-order-notreg form .row, .modal-order-notreg form .row-inline {
  margin-bottom: 20px; }
.modal-order-notreg .buttons {
  padding-top: 12px; }
  @media (max-width: 767px) {
    .modal-order-notreg .buttons {
      text-align: center; } }
  @media (max-width: 767px) {
    .modal-order-notreg .buttons .btn {
      margin-bottom: 20px; } }
  .modal-order-notreg .buttons a {
    font-size: 14px; }
    @media (max-width: 767px) {
      .modal-order-notreg .buttons a {
        display: block; } }
    @media (min-width: 768px) {
      .modal-order-notreg .buttons a {
        margin-left: 20px; } }

.modal-order-oneclick p {
  margin-top: 0; }
.modal-order-oneclick .buttons {
  padding-top: 12px; }
  @media (max-width: 767px) {
    .modal-order-oneclick .buttons {
      text-align: center; } }
  @media (max-width: 767px) {
    .modal-order-oneclick .buttons .btn {
      margin-bottom: 20px; } }
  @media (max-width: 767px) {
    .modal-order-oneclick .buttons a {
      display: block; } }
  @media (min-width: 768px) {
    .modal-order-oneclick .buttons a {
      margin-left: 20px; } }

.modal-calltracking textarea {
  resize: none;
  width: 100%;
  height: 100px; }

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

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

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }

  .text-sm-right {
    text-align: right !important; }

  .text-sm-center {
    text-align: center !important; } }
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }

  .text-md-right {
    text-align: right !important; }

  .text-md-center {
    text-align: center !important; } }
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }

  .text-lg-right {
    text-align: right !important; }

  .text-lg-center {
    text-align: center !important; } }
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }

  .text-xl-right {
    text-align: right !important; }

  .text-xl-center {
    text-align: center !important; } }
.text-lowercase {
  text-transform: lowercase !important; }

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

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

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  fill: inherit;
  stroke: inherit; }

.icon--24 {
  font-size: 58px;
  width: 1.08621em; }

.icon--add {
  font-size: 14px;
  width: 1em; }

.icon--arr-l {
  font-size: 37px;
  width: 0.56757em; }

.icon--arr-r {
  font-size: 37px;
  width: 0.56757em; }

.icon--back {
  font-size: 14px;
  width: 1.28571em; }

.icon--basket {
  font-size: 18px;
  width: 1em; }

.icon--check {
  font-size: 9px;
  width: 1.11111em; }

.icon--checkbox {
  font-size: 15px;
  width: 1em; }

.icon--checkbox-blocked {
  font-size: 15px;
  width: 1em; }

.icon--checkbox-checked {
  font-size: 15px;
  width: 1em; }

.icon--close {
  font-size: 20px;
  width: 1em; }

.icon--fb {
  font-size: 35px;
  width: 1em; }

.icon--help {
  font-size: 18px;
  width: 1em; }

.icon--hit {
  font-size: 36px;
  width: 1.02778em; }

.icon--ln {
  font-size: 35px;
  width: 1em; }

.icon--logo-crm {
  font-size: 29px;
  width: 5.41379em; }

.icon--logo-tsov {
  font-size: 33px;
  width: 4.60606em; }

.icon--logo-vats {
  font-size: 27px;
  width: 6.03704em; }

.icon--magic {
  font-size: 16px;
  width: 1em; }

.icon--ok {
  font-size: 17px;
  width: 0.94118em; }

.icon--pdf {
  font-size: 24px;
  width: 0.875em; }

.icon--phone {
  font-size: 15px;
  width: 1em; }

.icon--play {
  font-size: 64px;
  width: 1em; }

.icon--reload {
  font-size: 17px;
  width: 1.11765em; }

.icon--shuffle {
  font-size: 14px;
  width: 1.14286em; }

.icon--stopwatch {
  font-size: 25px;
  width: 1em; }

.icon--user {
  font-size: 17px;
  width: 0.88235em; }

.icon--vk {
  font-size: 35px;
  width: 1em; }

.icon--wsales {
  font-size: 68px;
  width: 0.69118em; }

.icon--wservice {
  font-size: 66px;
  width: 0.90909em; }

.icon--wsupport {
  font-size: 57px;
  width: 1.08772em; }

.icon--xls {
  font-size: 25px;
  width: 0.88em; }

.icon--yt {
  font-size: 35px;
  width: 1em; }

.icon {
  transition: fill 0.2s; }
  .icon--phone {
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 4px;
    fill: #879ca7; }
  .icon--basket {
    fill: #333; }
  .icon--fb, .icon--vk, .icon--ln, .icon--yt {
    fill: #A0B1B9; }
    .icon--fb:hover, .icon--vk:hover, .icon--ln:hover, .icon--yt:hover {
      fill: #0d9adf; }
  .icon--play {
    width: 160px;
    height: 160px;
    fill: #fff;
    opacity: 0.7; }
  .icon--24, .icon--support {
    width: 64px;
    height: 64px;
    fill: #fff; }
  .icon--logo-vats {
    fill: #30b1f6;
    width: 125px;
    height: 22px; }
  .icon--close {
    fill: #bac6cc;
    width: 20px;
    height: 20px; }
    .icon--close:hover {
      fill: #777; }
  .icon--reload {
    fill: #879CA7;
    width: 19px;
    height: 17px; }
  .icon--shuffle {
    fill: #879CA7; }
  .icon--magic {
    fill: #879CA7; }
  .icon--wsales, .icon--wservice, .icon--wsupport {
    fill: #30b1f6; }
  .icon--wsales {
    width: 47px;
    height: 68px; }
  .icon--wservice {
    width: 60px;
    height: 66px; }
  .icon--wsupport {
    width: 62px;
    height: 57px; }
  .icon--pdf, .icon--xls {
    fill: #879ca7; }

/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px; }

.container::after {
  content: "";
  display: table;
  clear: both; }

@media (min-width: 640px) {
  .container {
    max-width: 576px; } }
@media (min-width: 768px) {
  .container {
    max-width: 720px; } }
@media (min-width: 1024px) {
  .container {
    max-width: 940px; } }
@media (min-width: 1366px) {
  .container {
    max-width: 1140px; } }
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px; }

.container-fluid::after {
  content: "";
  display: table;
  clear: both; }

.row, .row-inline {
  margin-left: -15px;
  margin-right: -15px; }
  .row [class*="col-xs-push-"], .row-inline [class*="col-xs-push-"],
  .row [class*="col-xs-pull-"],
  .row-inline [class*="col-xs-pull-"],
  .row [class*="col-sm-push-"],
  .row-inline [class*="col-sm-push-"],
  .row [class*="col-sm-pull-"],
  .row-inline [class*="col-sm-pull-"],
  .row [class*="col-md-push-"],
  .row-inline [class*="col-md-push-"],
  .row [class*="col-md-pull-"],
  .row-inline [class*="col-md-pull-"],
  .row [class*="col-lg-push-"],
  .row-inline [class*="col-lg-push-"],
  .row [class*="col-lg-pull-"],
  .row-inline [class*="col-lg-pull-"],
  .row [class*="col-xl-push-"],
  .row-inline [class*="col-xl-push-"],
  .row [class*="col-xl-pull-"],
  .row-inline [class*="col-xl-pull-"] {
    position: relative; }
  .row-inline {
    font-size: 0; }
    .row-inline > [class*="col-"] {
      display: inline-block;
      vertical-align: top;
      font-size: 16px;
      float: none; }
    .row-inline--middle > [class*="col-"] {
      vertical-align: middle; }
  .row-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    margin-left: -15px;
    margin-right: -15px; }
  .row:not(.row-inline)::after, .row-inline:not(.row-inline)::after {
    content: "";
    display: table;
    clear: both; }

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-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-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 640px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }

  .col-sm-1 {
    width: 8.33333%; }

  .col-sm-2 {
    width: 16.66667%; }

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

  .col-sm-4 {
    width: 33.33333%; }

  .col-sm-5 {
    width: 41.66667%; }

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

  .col-sm-7 {
    width: 58.33333%; }

  .col-sm-8 {
    width: 66.66667%; }

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

  .col-sm-10 {
    width: 83.33333%; }

  .col-sm-11 {
    width: 91.66667%; }

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

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

  .col-sm-pull-1 {
    right: 8.33333%; }

  .col-sm-pull-2 {
    right: 16.66667%; }

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

  .col-sm-pull-4 {
    right: 33.33333%; }

  .col-sm-pull-5 {
    right: 41.66667%; }

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

  .col-sm-pull-7 {
    right: 58.33333%; }

  .col-sm-pull-8 {
    right: 66.66667%; }

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

  .col-sm-pull-10 {
    right: 83.33333%; }

  .col-sm-pull-11 {
    right: 91.66667%; }

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

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

  .col-sm-push-1 {
    left: 8.33333%; }

  .col-sm-push-2 {
    left: 16.66667%; }

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

  .col-sm-push-4 {
    left: 33.33333%; }

  .col-sm-push-5 {
    left: 41.66667%; }

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

  .col-sm-push-7 {
    left: 58.33333%; }

  .col-sm-push-8 {
    left: 66.66667%; }

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

  .col-sm-push-10 {
    left: 83.33333%; }

  .col-sm-push-11 {
    left: 91.66667%; }

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

  .col-sm-offset-0 {
    margin-left: 0%; }

  .col-sm-offset-1 {
    margin-left: 8.33333%; }

  .col-sm-offset-2 {
    margin-left: 16.66667%; }

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

  .col-sm-offset-4 {
    margin-left: 33.33333%; }

  .col-sm-offset-5 {
    margin-left: 41.66667%; }

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

  .col-sm-offset-7 {
    margin-left: 58.33333%; }

  .col-sm-offset-8 {
    margin-left: 66.66667%; }

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

  .col-sm-offset-10 {
    margin-left: 83.33333%; }

  .col-sm-offset-11 {
    margin-left: 91.66667%; }

  .col-sm-offset-12 {
    margin-left: 100%; } }
@media (min-width: 768px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }

  .col-md-1 {
    width: 8.33333%; }

  .col-md-2 {
    width: 16.66667%; }

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

  .col-md-4 {
    width: 33.33333%; }

  .col-md-5 {
    width: 41.66667%; }

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

  .col-md-7 {
    width: 58.33333%; }

  .col-md-8 {
    width: 66.66667%; }

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

  .col-md-10 {
    width: 83.33333%; }

  .col-md-11 {
    width: 91.66667%; }

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

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

  .col-md-pull-1 {
    right: 8.33333%; }

  .col-md-pull-2 {
    right: 16.66667%; }

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

  .col-md-pull-4 {
    right: 33.33333%; }

  .col-md-pull-5 {
    right: 41.66667%; }

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

  .col-md-pull-7 {
    right: 58.33333%; }

  .col-md-pull-8 {
    right: 66.66667%; }

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

  .col-md-pull-10 {
    right: 83.33333%; }

  .col-md-pull-11 {
    right: 91.66667%; }

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

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

  .col-md-push-1 {
    left: 8.33333%; }

  .col-md-push-2 {
    left: 16.66667%; }

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

  .col-md-push-4 {
    left: 33.33333%; }

  .col-md-push-5 {
    left: 41.66667%; }

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

  .col-md-push-7 {
    left: 58.33333%; }

  .col-md-push-8 {
    left: 66.66667%; }

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

  .col-md-push-10 {
    left: 83.33333%; }

  .col-md-push-11 {
    left: 91.66667%; }

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

  .col-md-offset-0 {
    margin-left: 0%; }

  .col-md-offset-1 {
    margin-left: 8.33333%; }

  .col-md-offset-2 {
    margin-left: 16.66667%; }

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

  .col-md-offset-4 {
    margin-left: 33.33333%; }

  .col-md-offset-5 {
    margin-left: 41.66667%; }

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

  .col-md-offset-7 {
    margin-left: 58.33333%; }

  .col-md-offset-8 {
    margin-left: 66.66667%; }

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

  .col-md-offset-10 {
    margin-left: 83.33333%; }

  .col-md-offset-11 {
    margin-left: 91.66667%; }

  .col-md-offset-12 {
    margin-left: 100%; } }
@media (min-width: 1024px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }

  .col-lg-1 {
    width: 8.33333%; }

  .col-lg-2 {
    width: 16.66667%; }

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

  .col-lg-4 {
    width: 33.33333%; }

  .col-lg-5 {
    width: 41.66667%; }

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

  .col-lg-7 {
    width: 58.33333%; }

  .col-lg-8 {
    width: 66.66667%; }

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

  .col-lg-10 {
    width: 83.33333%; }

  .col-lg-11 {
    width: 91.66667%; }

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

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

  .col-lg-pull-1 {
    right: 8.33333%; }

  .col-lg-pull-2 {
    right: 16.66667%; }

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

  .col-lg-pull-4 {
    right: 33.33333%; }

  .col-lg-pull-5 {
    right: 41.66667%; }

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

  .col-lg-pull-7 {
    right: 58.33333%; }

  .col-lg-pull-8 {
    right: 66.66667%; }

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

  .col-lg-pull-10 {
    right: 83.33333%; }

  .col-lg-pull-11 {
    right: 91.66667%; }

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

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

  .col-lg-push-1 {
    left: 8.33333%; }

  .col-lg-push-2 {
    left: 16.66667%; }

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

  .col-lg-push-4 {
    left: 33.33333%; }

  .col-lg-push-5 {
    left: 41.66667%; }

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

  .col-lg-push-7 {
    left: 58.33333%; }

  .col-lg-push-8 {
    left: 66.66667%; }

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

  .col-lg-push-10 {
    left: 83.33333%; }

  .col-lg-push-11 {
    left: 91.66667%; }

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

  .col-lg-offset-0 {
    margin-left: 0%; }

  .col-lg-offset-1 {
    margin-left: 8.33333%; }

  .col-lg-offset-2 {
    margin-left: 16.66667%; }

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

  .col-lg-offset-4 {
    margin-left: 33.33333%; }

  .col-lg-offset-5 {
    margin-left: 41.66667%; }

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

  .col-lg-offset-7 {
    margin-left: 58.33333%; }

  .col-lg-offset-8 {
    margin-left: 66.66667%; }

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

  .col-lg-offset-10 {
    margin-left: 83.33333%; }

  .col-lg-offset-11 {
    margin-left: 91.66667%; }

  .col-lg-offset-12 {
    margin-left: 100%; } }
@media (min-width: 1366px) {
  .col-xl-1, .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-10, .col-xl-11, .col-xl-12 {
    float: left; }

  .col-xl-1 {
    width: 8.33333%; }

  .col-xl-2 {
    width: 16.66667%; }

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

  .col-xl-4 {
    width: 33.33333%; }

  .col-xl-5 {
    width: 41.66667%; }

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

  .col-xl-7 {
    width: 58.33333%; }

  .col-xl-8 {
    width: 66.66667%; }

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

  .col-xl-10 {
    width: 83.33333%; }

  .col-xl-11 {
    width: 91.66667%; }

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

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

  .col-xl-pull-1 {
    right: 8.33333%; }

  .col-xl-pull-2 {
    right: 16.66667%; }

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

  .col-xl-pull-4 {
    right: 33.33333%; }

  .col-xl-pull-5 {
    right: 41.66667%; }

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

  .col-xl-pull-7 {
    right: 58.33333%; }

  .col-xl-pull-8 {
    right: 66.66667%; }

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

  .col-xl-pull-10 {
    right: 83.33333%; }

  .col-xl-pull-11 {
    right: 91.66667%; }

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

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

  .col-xl-push-1 {
    left: 8.33333%; }

  .col-xl-push-2 {
    left: 16.66667%; }

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

  .col-xl-push-4 {
    left: 33.33333%; }

  .col-xl-push-5 {
    left: 41.66667%; }

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

  .col-xl-push-7 {
    left: 58.33333%; }

  .col-xl-push-8 {
    left: 66.66667%; }

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

  .col-xl-push-10 {
    left: 83.33333%; }

  .col-xl-push-11 {
    left: 91.66667%; }

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

  .col-xl-offset-0 {
    margin-left: 0%; }

  .col-xl-offset-1 {
    margin-left: 8.33333%; }

  .col-xl-offset-2 {
    margin-left: 16.66667%; }

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

  .col-xl-offset-4 {
    margin-left: 33.33333%; }

  .col-xl-offset-5 {
    margin-left: 41.66667%; }

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

  .col-xl-offset-7 {
    margin-left: 58.33333%; }

  .col-xl-offset-8 {
    margin-left: 66.66667%; }

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

  .col-xl-offset-10 {
    margin-left: 83.33333%; }

  .col-xl-offset-11 {
    margin-left: 91.66667%; }

  .col-xl-offset-12 {
    margin-left: 100%; } }
/* 5 колонок*/
.col-xs-five,
.col-sm-five,
.col-md-five,
.col-lg-five {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-five {
  width: 20%;
  float: left; }

@media (min-width: 640px) {
  .col-sm-five {
    width: 20%;
    float: left; } }
@media (min-width: 768px) {
  .col-md-five {
    width: 20%;
    float: left; } }
@media (min-width: 1024px) {
  .col-lg-five {
    width: 20%;
    float: left; } }
@media (min-width: 1366px) {
  .col-xl-five {
    width: 20%;
    float: left; } }
/* Колонки во всю высоту */
.col-height {
  display: table-cell;
  float: none;
  height: 100%; }

.col-top {
  vertical-align: top; }

.col-middle {
  vertical-align: middle; }

.col-bottom {
  vertical-align: bottom; }

.inside-full-height {
  height: 100%;
  margin-top: 0;
  margin-bottom: 0; }

@media (min-width: 640px) {
  .row-sm-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%; }

  .col-sm-height {
    display: table-cell;
    float: none;
    height: 100%; }

  .col-sm-top {
    vertical-align: top; }

  .col-sm-middle {
    vertical-align: middle; }

  .col-sm-bottom {
    vertical-align: bottom; } }
@media (min-width: 768px) {
  .row-md-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%; }

  .col-md-height {
    display: table-cell;
    float: none;
    height: 100%; }

  .col-md-top {
    vertical-align: top; }

  .col-md-middle {
    vertical-align: middle; }

  .col-md-bottom {
    vertical-align: bottom; } }
@media (min-width: 1024px) {
  .row-lg-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%; }

  .col-lg-height {
    display: table-cell;
    float: none;
    height: 100%; }

  .col-lg-top {
    vertical-align: top; }

  .col-lg-middle {
    vertical-align: middle; }

  .col-lg-bottom {
    vertical-align: bottom; } }
@media (min-width: 1366px) {
  .row-xl-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%; }

  .col-xl-height {
    display: table-cell;
    float: none;
    height: 100%; }

  .col-xl-top {
    vertical-align: top; }

  .col-xl-middle {
    vertical-align: middle; }

  .col-xl-bottom {
    vertical-align: bottom; } }
/* Скрытие элементов */
.hidden-xs-up {
  display: none !important; }

@media (max-width: 639px) {
  .hidden-xs-down {
    display: none !important; } }
@media (min-width: 640px) {
  .hidden-sm-up {
    display: none !important; } }
@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important; } }
@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important; } }
@media (max-width: 1023px) {
  .hidden-md-down {
    display: none !important; } }
@media (min-width: 1024px) {
  .hidden-lg-up {
    display: none !important; } }
@media (max-width: 1365px) {
  .hidden-lg-down {
    display: none !important; } }
@media (min-width: 1366px) {
  .hidden-xl-up {
    display: none !important; } }
@media (max-width: 1365px) {
  .custom-hidden-xl-down {
    display: none !important; } }
.hidden-xl-down {
  display: none !important; }

.btn {
  display: inline-block;
  padding: 9px 15px;
  font-family: "PT Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 3px;
  text-transform: uppercase;
  outline: none;
  color: #fff;
  background-color: #9fd54a;
  background-image: linear-gradient(to bottom, #9fd54a, #91c73d); }
  .btn:hover {
    background-image: linear-gradient(to bottom, #98cd46, #85b935); }
  .btn:hover {
    color: #fff; }
  .btn--yellow {
    color: #fff;
    background-color: #ffca3b;
    background-image: linear-gradient(to bottom, #ffca3b, #ffba00); }
    .btn--yellow:hover {
      background-image: linear-gradient(to bottom, #ffc62c, #f0af00); }
  .btn--orange {
    color: #fff;
    background: #fe8f12; }
    .btn--orange:hover {
      background: #fe8803; }
  .btn--white {
    background: #fff;
    border: 1px solid #d2dade;
    color: #40c8f4; }
    .btn--white:not(.disabled):hover {
      background: #fff;
      color: #a8b3b9; }
  .btn--gray {
    color: #777;
    border: 1px solid #d2dade;
    background: transparent;
    color: #777;
    font-size: 13px;
    font-weight: normal; }
    .btn--gray:hover {
      background: 0 0;
      opacity: .95;
      color: rgba(119, 119, 119, 0.68); }
  .btn--arrow-l {
    position: relative; }
    .btn--arrow-l:before {
      content: '';
      position: absolute;
      left: -20px;
      top: -1px;
      width: 0;
      height: 0;
      border-top: 25px solid transparent;
      border-right: 20px solid #888;
      border-bottom: 25px solid transparent;
      background: inherit; }
  .btn--arrow-r {
    position: relative; }
    .btn--arrow-r:after {
      content: '';
      position: absolute;
      left: -20px;
      top: -1px;
      width: 0;
      height: 0;
      border-top: 25px solid transparent;
      border-right: 20px solid #888;
      border-bottom: 25px solid transparent;
      background: inherit; }
  .btn--fix {
    max-width: 204px;
    width: 100%; }
    @media (min-width: 1024px) {
      .btn--fix {
        max-width: 211px; } }
    @media (min-width: 1366px) {
      .btn--fix {
        max-width: 254px; } }
  .btn--xs {
    padding: 3px 10px;
    font-size: 13px;
    line-height: normal; }
  .btn--sm {
    padding: 5px 16px;
    font-size: 14px;
    line-height: normal; }
  .btn--md {
    letter-spacing: 0.6px;
    padding: 12.5px 20px;
    font-size: 18px;
    line-height: normal; }
  .btn--lg {
    max-width: 520px;
    letter-spacing: 1px;
    padding: 26px 30px;
    font-size: 24px;
    line-height: normal; }
  .btn--outline {
    background: transparent;
    color: #777;
    border: 1px solid #cbc49d; }
  .btn--vol {
    box-shadow: 0 5px 0 0 #cf9700;
    margin-bottom: 5px;
    transition: top 0.1s, box-shadow 0.1s;
    position: relative;
    top: 0; }
    .btn--vol:hover {
      top: 5px;
      box-shadow: 0 0 0 0 #cf9700; }
  .btn--wtransp {
    background: transparent;
    border: 1px solid #fff; }
    .btn--wtransp:hover {
      background: transparent;
      opacity: 0.95; }
  .btn.disabled, .btn:disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none; }
    .btn.disabled:hover, .btn:disabled:hover {
      background-color: #9fd54a;
      background-image: linear-gradient(to bottom, #9fd54a, #91c73d); }

/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
.dropdown {
  position: relative; }
  .dropdown-toggle {
    cursor: pointer; }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    min-width: 160px;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-color: #fff;
    border: 1px solid #d2dade;
    padding: 5px 15px;
    background-color: #fff;
    transform: translateY(-14px);
    transition: opacity .15s,visibility .15s,transform .2s,-webkit-transform .2s; }
  .dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
.tooltip-icon {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(/static_files_new/css/base/../../img/design/help.svg) no-repeat; }
  .tooltip-icon--left, .tooltip-icon--right {
    background: none;
    width: auto;
    height: auto; }
    .tooltip-icon--left:before, .tooltip-icon--right:before {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      top: 50%;
      margin-top: -9px;
      background: url(/static_files_new/css/base/../../img/design/help.svg) no-repeat; }
  .tooltip-icon--left {
    padding-left: 25px; }
    .tooltip-icon--left:before {
      left: 0;
      margin-right: 3px; }
  .tooltip-icon--right {
    padding-right: 25px; }
    .tooltip-icon--right:before {
      right: 0;
      margin-left: 3px; }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  opacity: 0;
  line-break: auto; }

.tooltip.in {
  opacity: 1; }

.tooltip.bs-tether-element-attached-bottom, .tooltip.tooltip-top {
  padding: 5px 0;
  margin-top: -3px; }

.tooltip.bs-tether-element-attached-bottom .tooltip-arrow, .tooltip.tooltip-top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 6px 6px 0;
  border-top-color: #d2dade; }
  .tooltip.bs-tether-element-attached-bottom .tooltip-arrow:before, .tooltip.tooltip-top .tooltip-arrow:before {
    top: -6px;
    left: -5px;
    border-top: 5px solid #fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 0 solid transparent; }

.tooltip.bs-tether-element-attached-left, .tooltip.tooltip-right {
  padding: 0 5px;
  margin-left: 3px; }

.tooltip.bs-tether-element-attached-left .tooltip-arrow, .tooltip.tooltip-right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #d2dade; }
  .tooltip.bs-tether-element-attached-left .tooltip-arrow:before, .tooltip.tooltip-right .tooltip-arrow:before {
    top: -5px;
    right: -6px;
    border-top: 5px solid transparent;
    border-right: 5px solid #fff;
    border-left: 0 solid transparent;
    border-bottom: 5px solid transparent; }

.tooltip.bs-tether-element-attached-top, .tooltip.tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px; }

.tooltip.bs-tether-element-attached-top .tooltip-arrow, .tooltip.tooltip-bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #d2dade; }
  .tooltip.bs-tether-element-attached-top .tooltip-arrow:before, .tooltip.tooltip-bottom .tooltip-arrow:before {
    left: -5px;
    bottom: -6px;
    border-top: 0 solid transparent;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid #fff; }

.tooltip.bs-tether-element-attached-right, .tooltip.tooltip-left {
  padding: 0 5px;
  margin-left: -3px; }

.tooltip.bs-tether-element-attached-right .tooltip-arrow, .tooltip.tooltip-left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #d2dade; }
  .tooltip.bs-tether-element-attached-right .tooltip-arrow:before, .tooltip.tooltip-left .tooltip-arrow:before {
    top: -5px;
    left: -6px;
    border-top: 5px solid transparent;
    border-right: 0 solid transparent;
    border-left: 5px solid #fff;
    border-bottom: 5px solid transparent; }

.tooltip-inner {
  max-width: 300px;
  padding: 3px 8px;
  color: #333;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d2dade; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }
  .tooltip-arrow:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0; }

/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
.collapse {
  display: none; }

.collapse.in {
  display: block; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  -o-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height;
  -o-transition-property: height;
  transition-property: height; }

.text-box-collapse {
  border-top: 1px solid #d2dade;
  margin-left: -15px;
  margin-right: -15px;
  padding: 25px 15px; }
  .text-box-collapse [data-toggle="collapse"] {
    padding-right: 20px;
    background: url(/static_files_new/css/base/../../img/design/arr-b-dark.png) no-repeat right center; }
  @media (min-width: 640px) {
    .text-box-collapse .collapse {
      display: block; } }
  @media (min-width: 640px) {
    .text-box-collapse {
      border-top: 0; } }

/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
.nav-tabs {
  font-size: 14px;
  margin-bottom: -1px;
  overflow: hidden;
  cursor: default;
  background-color: #fff; }
  .nav-tabs:after {
    content: " ";
    clear: both;
    display: table;
    width: 100%; }
  .nav-tabs > li {
    float: left;
    margin-right: -1px;
    width: 170px;
    text-align: center; }
    .nav-tabs > li:first-child {
      border-top-left-radius: 3px; }
    .nav-tabs > li:last-child {
      border-top-right-radius: 3px; }
    .nav-tabs > li.active > a {
      color: #777;
      border-bottom-color: transparent; }
    .nav-tabs > li > a {
      padding: 5px 10px;
      color: #333;
      border: 1px solid #ddd;
      line-height: 1.42857143;
      display: block; }
      .nav-tabs > li > a:hover {
        background-color: rgba(244, 247, 249, 0.37);
        color: #777; }
  .nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0; }
    .nav-tabs.nav-justified > li {
      float: none; }
      .nav-tabs.nav-justified > li > a {
        margin-bottom: 5px;
        text-align: center; }
    .nav-tabs.nav-justified > .dropdown .dropdown-menu {
      top: auto;
      left: auto; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%; }

  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0; } }
.nav-tabs.nav-justified > li > a {
  margin-right: 0; }

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
  border: 1px solid #ddd; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd; }

  .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
    border-bottom-color: #fff; } }
.tab-content {
  font-size: 14px;
  border: 1px solid #d8dedf;
  padding: 20px;
  color: #777; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

/* Базовая форма
===================================*/
.form {
  max-width: 300px;
  margin: 0 auto;
  background-color: #ebebeb; }
  .form form {
    padding: 0 10px; }
  .form_title {
    background-color: #1ea216;
    text-align: center;
    padding: 10px 5px;
    margin-bottom: 15px; }
    .form_title h3 {
      color: #fff;
      font-size: 15px;
      font-weight: bold; }
    .form_title span {
      color: #e1fa7f;
      font-size: 12px;
      font-weight: bold; }
  .form_text {
    padding-bottom: 15px; }
  .form .field {
    margin-bottom: 15px;
    display: block; }
  .form_field-group {
    margin-bottom: 15px; }
    .form_field-group span {
      display: inline-block;
      background-color: #85a600;
      color: #fff;
      width: 20px;
      height: 20px;
      line-height: 20px;
      border-radius: 20px;
      text-align: center;
      font-weight: bold;
      margin: 0 15px 0 0; }
    .form_field-group .field {
      margin-top: 15px; }
  .form_captcha {
    text-align: right;
    display: block;
    margin-bottom: 10px; }
    .form_captcha .captcha-img {
      margin-bottom: 5px; }
  .form_btn-wrap {
    background-color: #dedede;
    padding: 15px 10px 17px;
    margin-left: -10px;
    margin-right: -10px;
    text-align: center; }
    .form_btn-wrap p {
      margin: 0; }
  .form .btn.icon {
    position: relative;
    padding-right: 45px;
    padding-left: 20px; }
    .form .btn.icon:before {
      position: absolute;
      top: -14px;
      right: -18px; }

/* Форма поиска
===================================*/
.form-search {
  font-size: 0; }
  .form-search input[type="text"] {
    border: 1px solid #E9EAEA;
    min-height: 26px;
    width: 185px;
    display: inline-block;
    vertical-align: middle;
    color: #9f9f9f;
    font-size: 11px;
    transition: border-color 0.1s; }
  .form-search_btn {
    width: 26px;
    height: 26px;
    position: relative;
    background-color: #1EA216;
    display: inline-block;
    vertical-align: middle;
    transition: background-color 0.1s; }
    .form-search_btn:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 9px;
      width: 0;
      height: 0;
      border-left: 10px solid #fff;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      margin: auto; }
    .form-search_btn:hover {
      background-color: #317A06; }
  .form-search:hover input[type="text"] {
    border-color: #C1D7B4; }

/* Формы регистрации
===================================*/
.form-reg label,
.form-reg-sidebar label {
  display: block;
  margin-bottom: 10px; }
.form-reg .btn,
.form-reg-sidebar .btn {
  margin-top: 10px; }

.form-reg {
  background-color: #D2ECD0;
  padding: 0 30px 20px; }
  .form-reg h2 {
    margin-left: 25px; }
  .form-reg form {
    padding-top: 15px;
    padding-left: 14px; }
  .form-reg input[type="text"] {
    width: 78%;
    margin-left: 20px; }
  .form-reg .caption {
    font-size: 12px;
    display: block; }
  .form-reg span.error {
    margin-left: 20px; }

.form-reg-sidebar {
  background-color: #fff;
  border: 2px solid #1ea216;
  max-width: 228px; }
  .form-reg-sidebar h2 {
    background-color: #1ea216;
    color: #fff;
    text-align: center;
    padding: 8px 0 10px; }
  .form-reg-sidebar form {
    padding: 15px 10px 10px; }
  .form-reg-sidebar.fixed {
    position: fixed;
    top: 10px;
    z-index: 2;
    margin-bottom: 0; }
  .form-reg-sidebar select {
    width: 100%; }

/* Формы авторизации и востановления доступа
===================================*/
.form--auth .btn,
.form--forgot .btn {
  padding-left: 20px;
  padding-right: 20px; }

/* Форма авторизации
===================================*/
.form--auth .forgot-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px; }

/* Форма востановления доступа
===================================*/
.form--forgot .form_btn-wrap {
  margin-top: 16px; }
.form--forgot .login-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px; }
.form--forgot .or {
  display: block;
  text-align: center;
  margin: 8px 0;
  line-height: 13px; }

/* Форма поиска по справочнику
===================================*/
.search-shares {
  width: 250px; }
  .search-shares_title {
    background-color: #eee;
    color: #333;
    font-size: 14px;
    line-height: 23px;
    padding: 4px 10px 5px; }
  .search-shares_form {
    padding: 10px;
    border: 1px solid #e9eaea; }
    .search-shares_form form {
      margin-bottom: 10px; }
    .search-shares_form input[type="text"] {
      width: 140px;
      min-height: 25px; }
    .search-shares_form .btn {
      float: right; }
    .search-shares_form small {
      display: inline-block;
      line-height: 12px; }

/* Форма поиска по справочнику в навигации
===================================*/
.search-shares-innav {
  display: inline-block;
  width: 35%;
  padding-top: 9px; }
  .search-shares-innav .field {
    padding-right: 85px; }
  .search-shares-innav input[type="text"] {
    min-height: 25px;
    border: 0;
    float: right; }
  .search-shares-innav .btn {
    float: right; }

@media only screen and (max-width: 700px) {
  .search-shares-innav {
    float: left;
    clear: both;
    padding-top: 0;
    margin-bottom: 10px;
    width: 100%; } }
/* Фильтр справочника
===================================*/
.filter-shares {
  padding-top: 30px;
  margin-bottom: 20px; }
  .filter-shares form:after {
    content: " ";
    clear: both;
    display: table;
    width: 100%; }
  .filter-shares .filter-box {
    float: left;
    margin-right: 8px;
    text-align: right; }
    .filter-shares .filter-box .field {
      margin-bottom: 10px; }
    .filter-shares .filter-box span {
      font-size: 12px;
      font-weight: bold;
      color: #FF7F11; }
    .filter-shares .filter-box select {
      font-size: 11px;
      line-height: 16px; }
    .filter-shares .filter-box:last-child {
      margin-right: 0; }

@media only screen and (max-width: 740px) {
  .filter-shares .filter-box .field {
    text-align: left; }
  .filter-shares .filter-box span {
    display: block; } }
@media only screen and (min-width: 1024px) {
  .filter-shares .filter-box {
    margin-left: 16px; } }
/* Форма обратного звонка (на странице)
===================================*/
.form-callme .field {
  width: 183px;
  margin-bottom: 10px;
  text-align: left; }
  .form-callme .field:first-child {
    margin-left: 0; }
.form-callme label {
  display: block;
  font-size: 12px;
  font-weight: bold; }

@media only screen and (min-width: 420px) {
  .form-callme {
    overflow: hidden;
    text-align: center; }
    .form-callme .field {
      float: left;
      width: 48%;
      margin-left: 16px; } }
/* Форма регистрации на вебинар
===================================*/
.form--webinar select {
  width: 100%; }
.form--webinar .form_btn-wrap {
  margin-top: 16px; }

/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
.header {
  border-bottom: 1px solid #D2DADE;
  min-height: 80px; }
  @media (min-width: 768px) {
    .header {
      min-height: 130px;
      padding-top: 20px; } }
  .header .container {
    position: relative; }
  .header_logo {
    display: block;
    width: 286px;
    margin: auto; }
    @media (max-width: 767px) {
      .header_logo {
        background: url(/static_files_new/css/base/../../img/logo-s.png) no-repeat center center;
        height: 80px; } }
    @media (min-width: 768px) {
      .header_logo {
        background: url(/static_files_new/css/base/../../img/logo-1024.png) no-repeat;
        float: left;
        height: 85px; } }
  .header_city .dropdown-toggle {
    font-family: "PT Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
    border-bottom: 1px dashed;
    line-height: 14px;
    background: transparent;
    padding: 0; }
    .header_city .dropdown-toggle:hover {
      color: #0086cf; }
  @media (min-width: 1366px) {
    .header.focused .header_social {
      display: none; }
    .header.focused .search-form {
      width: 485px; } }
  .header_social {
    display: none; }
    @media (min-width: 1024px) and (max-width: 1365px) {
      .header_social {
        position: absolute;
        left: 326px;
        margin-top: 0px;
        display: block; } }
    @media (min-width: 1366px) {
      .header_social {
        float: left;
        display: block;
        margin-top: 47px;
        margin-left: 25px;
        width: 175px; } }
  @media (max-width: 639px) {
    .header_contact {
      border-top: 1px solid #d2dade;
      margin-left: -15px;
      margin-right: -15px;
      margin-top: 30px;
      padding: 10px 65px 18px;
      text-align: center; }
      .header_contact-inner {
        display: inline-block;
        text-align: left;
        margin-right: 30px; } }
  @media (min-width: 640px) {
    .header_contact {
      float: left;
      margin-top: 29px;
      margin-left: 25px; } }
  @media (max-width: 1023px) {
    .header_contact {
      position: absolute;
      left: 301px; } }
  @media (min-width: 1024px) {
    .header_contact {
      /*width: 235px;*/ } }
  @media (min-width: 1366px) {
    .header_contact {
      width: 285px; } }
  .header .search-form {
    float: left;
    overflow: hidden;
    margin-top: 47px;
    margin-left: 25px; }
    @media (max-width: 1023px) {
      .header .search-form {
        width: 100%;
        margin: 15px 0; } }
    @media (min-width: 1366px) {
      .header .search-form {
        width: 285px; } }
    .header .search-form .btn {
      padding-top: 7px;
      padding-bottom: 7px;
      display: none; }
    @media (max-width: 1023px) {
      .header .search-form form {
        padding-right: 80px; }
      .header .search-form .btn {
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 14px; } }
  .header .search-input {
    position: relative; }
  .header .search-input-icon {
    position: absolute;
    left: 10px;
    top: 8px;
    color: #d2dade; }
  .header .search-with-icons input[type=text] {
    min-height: 34px;
    padding-right: 25px;
    width: 100%;
    max-width: 100%; }
  .header .search-with-icons .fa-remove {
    right: 8px; }
    @media (max-width: 1023px) {
      .header .search-with-icons .fa-remove {
        right: 88px; } }
  .header .near-input {
    width: 85px; }
  .header .search-input input {
    padding-left: 30px;
    max-width: 100%; }
  .header_callback {
    overflow: hidden; }
    .header_callback a {
      float: left;
      border: 1px solid #d2dade;
      margin-right: -1px;
      padding: 2px 10px;
      border-radius: 3px; }

.callback,
.callonline {
  color: #879ca7;
  font-family: "PT Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5384; }

.company-phone {
  display: inline-block;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: #879ca7;
  line-height: 30px; }
  .company-phone span {
    color: #4C5E67;
    display: inline-block; }
  .company-phone--footer {
    font-size: 30px;
    margin-bottom: 15px; }
  @media (min-width: 768px) {
    .company-phone {
      font-size: 30px; } }

/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
.quest-city {
  width: 160px;
  padding: 15px 10px 20px;
  text-align: center;
  background-color: #fcf4c5;
  border-color: #f3e595;
  margin-top: 5px; }
  .quest-city span {
    font-size: 15px; }
  .quest-city ul {
    padding-top: 23px;
    font-size: 0;
    margin-left: 0; }
  .quest-city li {
    display: inline-block;
    margin: 0 5px; }
  .quest-city a {
    font-weight: normal; }
  .quest-city:before {
    content: '';
    position: absolute;
    left: 15px;
    top: -10px;
    width: 0;
    height: 0;
    border-bottom: 10px solid #fcf4c5;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent; }

.modal-location ul {
  margin-left: 0;
  list-style: none; }
.modal-location li, .modal-location a {
  padding: 3px 0; }
.modal-location .special a {
  font-size: 18px; }
.modal-location .special--separator {
  border-bottom: 1px solid #d2dade; }

/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
/* Основное меню
===================================*/
.nav {
  margin-top: 0;
  border-bottom: 1px solid #d2dade; }
  .nav a {
    color: #333;
    transition: color 0.14s; }
    .nav a[data-counter]:not([data-counter='0']):after {
      content: attr(data-counter);
      display: inline-block;
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      font-size: 15px;
      text-align: center;
      line-height: 20px;
      border-radius: 3px;
      background-color: #ffba00;
      color: #fff;
      padding: 1px 6.5px; }
  .nav_left .nav_item-link > a {
    text-transform: uppercase;
    font-weight: 700; }
  .nav_item-link > a {
    font-family: "PT Sans", Arial, Helvetica, sans-serif;
    font-size: 15px;
    border-bottom: 5px solid transparent;
    text-decoration: none; }
  @media (min-width: 1024px) {
    .nav_item:hover-link > a, .nav_item.active-link > a {
      color: #777; }
    .nav_item-link:hover > a {
      border-color: #91c73d; } }
  .nav-inner_item > a {
    font-family: "PT Sans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #333; }
  @media (min-width: 1024px) {
    .nav-inner_item:hover > a, .nav-inner_item.active > a {
      color: #BAC6CC; } }

.user-panel a {
  color: #333;
  font-family: "PT Sans", Arial, Helvetica, sans-serif;
  font-size: 15px;
  text-decoration: none; }
.user-panel li {
  position: relative; }
.user-panel_signin .dropdown-menu {
  color: #777;
  font-size: 14px; }
  .user-panel_signin .dropdown-menu a {
    font-size: 14px; }
  .user-panel_signin .dropdown-menu form {
    padding-top: 7px; }
  .user-panel_signin .dropdown-menu label {
    display: block;
    margin-bottom: 10px; }
    .user-panel_signin .dropdown-menu label input {
      margin-top: 4px;
      height: 30px; }
.user-panel_signin .buttons {
  padding-top: 7px;
  padding-bottom: 10px; }
  .user-panel_signin .buttons .btn {
    color: #fff; }
  .user-panel_signin .buttons .link-repass {
    color: #777;
    float: right;
    margin-top: 5px; }
.user-panel_info .dropdown-menu {
  text-align: center; }
.user-panel .dropdown-menu {
  width: 260px;
  margin-top: 28px;
  left: -15px; }
  .user-panel .dropdown-menu:before, .user-panel .dropdown-menu:after {
    content: '';
    position: absolute;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent; }
  .user-panel .dropdown-menu:before {
    top: -11.5px;
    border-bottom: 10px solid #d2dade; }
  .user-panel .dropdown-menu:after {
    top: -10px;
    border-bottom: 10px solid #fff; }
.user-panel .user-signin,
.user-panel .user-auth {
  min-width: 110px;
  display: block; }
  .user-panel .user-signin:before,
  .user-panel .user-auth:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -2px;
    background: url(/static_files_new/css/base/../../img/design/user.svg) no-repeat;
    width: 17px;
    height: 18px; }
    @media (min-width: 1366px) {
      .user-panel .user-signin:before,
      .user-panel .user-auth:before {
        margin-right: 10px; } }
  @media (min-width: 1024px) {
    .user-panel .user-signin,
    .user-panel .user-auth {
      width: 134px;
      padding: 13px 0 13px 0;
      background-position: left center; } }
  @media (min-width: 1366px) {
    .user-panel .user-signin,
    .user-panel .user-auth {
      width: 140px; } }
.user-panel .user-auth {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-appearance: none; }
  .user-panel .user-auth span {
    border-bottom: 1px dotted; }
.user-panel .user-ls {
  font-size: 15px;
  font-weight: 700;
  padding-top: 6px; }
.user-panel .user-balance {
  font-size: 14px;
  padding-top: 12px; }
  .user-panel .user-balance a {
    font-size: 14px; }
.user-panel .user-lk {
  padding-top: 20px; }
  .user-panel .user-lk .btn {
    font-size: 14px;
    color: #fff; }
.user-panel .user-logout {
  padding: 10px 0 8px; }
  .user-panel .user-logout a {
    font-size: 14px; }
.user-panel .user-basket {
  padding-left: 35px; }
  .user-panel .user-basket:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: -2px;
    background: url(/static_files_new/css/base/../../img/design/basket-h.svg) no-repeat;
    width: 20px;
    height: 17px; }
  @media (min-width: 1024px) {
    .user-panel .user-basket {
      padding-left: 0px;
      background-position: left center; } }
@media (min-width: 1024px) {
  .user-panel--basket .user-auth {
    max-width: 140px; } }
.user-panel--basket .user-auth:after {
  content: '';
  position: absolute;
  right: 0;
  width: 20px;
  top: 0;
  bottom: 0;
  box-shadow: inset -32px 0 20px -10px #fff; }

/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
.mobile-nav-panel {
  display: none;
  border-bottom: 1px solid #d2dade;
  position: relative;
  z-index: 2;
  background-color: #fff; }
  .mobile-nav-panel .social-link {
    float: right;
    margin-top: 16px; }
    @media (min-width: 768px) {
      .mobile-nav-panel .social-link {
        width: 240px;
        padding-left: 15px;
        padding-right: 15px;
        margin-right: -15px; } }
    @media (min-width: 1024px) {
      .mobile-nav-panel .social-link {
        width: 235px; } }
    @media (min-width: 1366px) {
      .mobile-nav-panel .social-link {
        width: 285px; } }
  @media (max-width: 1023px) {
    .mobile-nav-panel {
      display: block; } }
  .mobile-nav-panel .company-phone {
    float: right;
    margin-top: 20px;
    font-size: 30px; }
  @media (max-width: 1023px) {
    .mobile-nav-panel {
      display: block; } }

.nav-trigger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 18px 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity,filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  margin-left: -15px; }

.nav-trigger_box {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 26px;
  top: 3px; }

.nav-trigger_inner {
  top: 50%;
  display: block;
  margin-top: -2.5px; }

.nav-trigger_inner, .nav-trigger_inner:after, .nav-trigger_inner:before {
  position: absolute;
  width: 36px;
  height: 5px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  border-radius: 2px;
  background-color: #3a4951;
  transition: background-color .14s; }

.nav-trigger:hover .nav-trigger_inner,
.nav-trigger:hover .nav-trigger_inner:after,
.nav-trigger:hover .nav-trigger_inner:before {
  background-color: #a8b3b9; }

.nav-trigger_inner:after, .nav-trigger_inner:before {
  display: block;
  content: ''; }

.nav-trigger_inner:before {
  top: -10px; }

.nav-trigger_inner:after {
  bottom: -10px; }

.nav-trigger .nav-trigger_inner, .nav-trigger .nav-trigger_inner:after, .nav-trigger .nav-trigger_inner:before {
  transition-property: none; }

html.open-mobile-nav .nav-trigger .nav-trigger_inner {
  transform: rotate(45deg); }

html.open-mobile-nav .nav-trigger .nav-trigger_inner:before {
  top: 0;
  opacity: 0; }

html.open-mobile-nav .nav-trigger .nav-trigger_inner:after {
  bottom: 0;
  transform: rotate(-90deg); }

@media (max-width: 1023px) {
  .nav {
    background-color: #fff;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    width: 295px;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    left: -295px;
    z-index: 99;
    transition: left 0.15s 0.30s; }
    .nav_left {
      border-bottom: 1px solid #d2dade; }
    .nav a {
      display: block;
      min-height: 72px;
      padding: 25px 30px 25px 35px; }
    .nav > .container {
      overflow: auto;
      height: 100%; }
    .nav .container,
    .nav .row,
    .nav .row-inline,
    .nav [class^=col-] {
      padding: 0;
      margin: 0; }
    .nav_parent .nav_item-link {
      position: relative; }
    .nav_parent .nav_item-link > a,
    .nav_parent > a {
      position: relative; }
      .nav_parent .nav_item-link > a:after,
      .nav_parent > a:after {
        content: '';
        position: absolute;
        right: 18px;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 6px;
        height: 10px;
        background: url(/static_files_new/css/base/../../img/design/arr-r-dark.png) no-repeat; }
    .nav_parent .user-auth:after,
    .nav_parent .user-signin:after {
      content: none; }
    .nav_parent.active .nav_item-link > a:not(.user-auth):after,
    .nav_parent.active > a:not(.user-auth):after {
      width: 10px;
      height: 6px;
      background: url(/static_files_new/css/base/../../img/design/arr-b-dark.png) no-repeat; }
    .nav_parent.active > .nav-inner,
    .nav_parent.active > .nav-dropdown-mobile {
      display: block; }
    .nav_item {
      position: relative;
      clear: both; }
      .nav_item--other {
        display: none; }
    .nav-inner {
      display: none;
      background-color: #f4f7f9;
      position: relative; }
      .nav-inner_item {
        position: relative; }
    .nav-dropdown-desktop {
      display: none; }
    .nav-dropdown-mobile {
      display: none;
      background-color: #e7ebee;
      position: relative; }
      .nav-dropdown-mobile_list ul {
        margin-left: 0;
        list-style-type: none; }
      .nav-dropdown-mobile_root {
        font-size: 16px;
        border-bottom: 1px solid #d2dade;
        margin-right: 0; }
      .nav-dropdown-mobile .active a {
        border-left: 7px solid #3a4951;
        padding-left: 28px;
        color: #777; }
    .nav .user-panel .user-signin,
    .nav .user-panel .user-auth,
    .nav .user-panel .user-basket {
      text-transform: uppercase;
      font-weight: 700;
      padding-left: 35px; }
    .nav .user-panel .user-auth {
      margin-right: 30px; } }
@media (max-width: 640px) {
  .nav a {
    padding: 25px 0 25px 15px; }
  .nav .user-panel .user-signin,
  .nav .user-panel .user-auth,
  .nav .user-panel .user-basket {
    padding-left: 15px; }
  .nav .user-panel .user-auth {
    margin-right: 10px; } }

.nav-overlay {
  position: absolute;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: opacity 0.15s, visibility 0.15s; }

.open-mobile-nav .nav {
  left: 0; }
.open-mobile-nav .nav-overlay {
  opacity: 1;
  visibility: visible; }
.open-mobile-nav .header,
.open-mobile-nav .mobile-nav-panel {
  z-index: 100; }

/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
@media (min-width: 1024px) {
  .nav {
    min-height: 48px;
    position: relative; }
    .nav ul {
      font-size: 0; }
    .nav.nav-inner-show {
      margin-bottom: 44px; }
    .nav_left {
      float: left; }
      .nav_left .nav_item {
        margin-right: 20px; }
        .nav_left .nav_item-link > a {
          line-height: 1; }
        .nav_left .nav_item:last-child {
          margin-right: 0; }
        .nav_left .nav_item:nth-last-child(2) {
          margin-right: 10px; } }
  @media (min-width: 1024px) and (min-width: 1366px) {
    .nav_right .nav_item {
      margin-right: 20px; } }
@media (min-width: 1024px) {
    .nav_right .nav_item-link a {
      padding: 19px 0 13px;
      display: block; }
    .nav_right .nav_item:last-child {
      margin-right: 0; } }
  @media (min-width: 1024px) and (min-width: 1024px) {
    .nav_right {
      float: right; } }
@media (min-width: 1024px) {
    .nav_item {
      display: inline-block;
      vertical-align: middle; }
      .nav_item-link > a {
        padding: 19px 0 13px;
        display: block; }
      .nav_item-link:hover .nav-dropdown-desktop {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s, visibility 0.3s; }
      .nav_item--other {
        position: relative;
        margin-right: 0; }
        .nav_item--other:hover .nav-other-trigger span,
        .nav_item--other:hover .nav-other-trigger span:before,
        .nav_item--other:hover .nav-other-trigger span:after {
          background-color: #777; }
        .nav_item--other:hover .nav-other {
          opacity: 1;
          visibility: visible;
          transform: translateY(0); }
    .nav-other {
      padding-top: 14px;
      position: absolute;
      top: 100%;
      z-index: 3;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-14px);
      transition: opacity 0.15s, visibility 0.15s, transform 0.20s; }
      .nav-other a {
        font-family: "PT Sans", Arial, Helvetica, sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        line-height: 1.3340; }
      .nav-other_list {
        border: 1px solid #d2dade;
        width: 260px;
        padding: 5px 15px;
        background-color: #fff; }
      .nav-other_item {
        padding: 8px 0; }
      .nav-other:before, .nav-other:after {
        content: '';
        position: absolute;
        left: 15px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent; }
      .nav-other:before {
        top: 4px;
        border-bottom: 10px solid #d2dade; }
      .nav-other:after {
        top: 5px;
        border-bottom: 10px solid #fff; }
    .nav-inner {
      background-color: #2B3A43;
      min-height: 45px;
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      z-index: 2; }
      .nav-inner_list {
        font-size: 0;
        float: left; }
      .nav-inner_item {
        display: inline-block;
        vertical-align: top;
        margin-right: 40px; }
        .nav-inner_item > a {
          display: block;
          font-family: "PT Sans", Arial, Helvetica, sans-serif;
          font-size: 16px;
          color: #f4f7f9;
          text-decoration: none;
          transition: color 0.14s; }
          .nav-inner_item > a:hover {
            color: #AFBBC1; }
        .nav-inner_item > a {
          padding: 10px 0; }
        .nav-inner_item.active > a {
          color: #BAC6CC; }
          .nav-inner_item.active > a:hover {
            color: #BAC6CC; }
        .nav-inner_item--inside > a {
          position: relative;
          padding-right: 15px; }
    .nav-dropdown-mobile {
      display: none; }
    .nav-dropdown-desktop {
      background-color: #f4f7f9;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 3;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.1s, visibility 0.1s;
      max-width: 1160px;
      margin-left: auto;
      margin-right: auto;
      display: table;
      width: 100%;
      border: 1px solid #d2dade;
      box-shadow: 0 2px 5px 0 rgba(56, 56, 56, 0.1);
      left: 50%;
      transform: translateX(-50%); }
      .nav-dropdown-desktop_lcol, .nav-dropdown-desktop_rcol {
        display: table-cell;
        padding: 25px 0; }
        .nav-dropdown-desktop_lcol .active, .nav-dropdown-desktop_rcol .active {
          position: relative; }
          .nav-dropdown-desktop_lcol .active:before, .nav-dropdown-desktop_rcol .active:before {
            content: '';
            background: url("/static_files_new/css/base/../../img/design/arr-r-dark.png") no-repeat;
            width: 6px;
            height: 10px;
            position: absolute;
            top: 14px;
            left: -15px; }
      .nav-dropdown-desktop_lcol {
        width: 210px;
        background-color: #fff;
        border-right: 1px solid #d2dade;
        padding-left: 5px; }
      .nav-dropdown-desktop_rcol {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 15px;
        position: relative; }
        .nav-dropdown-desktop_rcol ul {
          padding-top: 37px; }
        .nav-dropdown-desktop_rcol li {
          padding-left: 15px; }
        .nav-dropdown-desktop_rcol .title {
          position: absolute;
          top: 33px; }
      .nav-dropdown-desktop .title {
        font-family: "Open Sans", Arial, Helvetica, sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 1;
        color: #91c73d; }
      .nav-dropdown-desktop ul {
        display: inline-block;
        vertical-align: top; }
      .nav-dropdown-desktop li {
        padding: 7px 0; }
      .nav-dropdown-desktop a {
        font-family: "PT Sans", Arial, Helvetica, sans-serif;
        font-size: 15px;
        color: #333;
        line-height: 1.6666; }
        .nav-dropdown-desktop a:hover {
          color: #777; }
      .nav-dropdown-desktop .active a {
        color: #777; }

  .nav-other-trigger {
    display: inline-block;
    vertical-align: middle;
    height: 49px;
    width: 35px;
    cursor: pointer;
    position: relative;
    background: transparent;
    padding: 0; }
    .nav-other-trigger span {
      display: block;
      width: 14px;
      height: 2px;
      margin: auto;
      background-color: #333;
      position: relative;
      transition: background-color 0.14s; }
      .nav-other-trigger span:before, .nav-other-trigger span:after {
        content: '';
        background-color: #333;
        height: 2px;
        position: absolute;
        left: 0;
        right: 0;
        transition: background-color 0.14s; }
      .nav-other-trigger span:before {
        top: -4px; }
      .nav-other-trigger span:after {
        top: 4px; }

  .nav-banner {
    float: right;
    overflow: hidden;
    max-width: 325px;
    margin-top: 6px;
    position: relative; }
    .nav-banner_text {
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      background-color: #2b3a43;
      display: block;
      line-height: 20px;
      font-size: 18px;
      padding: 10px 12px 10px 22px;
      color: #fff;
      line-height: 1.3888;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0; }
    .nav-banner .label-special {
      display: inline-block; }

  .nav-info {
    float: right;
    max-width: 325px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1;
    clear: both;
    padding-top: 21px; }
    .nav-info b {
      font-size: 15px; }
    .nav-info a {
      font-size: 14px;
      color: #0086cf; } }
.footer {
  background-color: #eceff1;
  padding: 30px 0 40px;
  position: relative; }
  .footer_row {
    padding-bottom: 35px; }
  .footer_nav {
    margin-bottom: 30px; }
    .footer_nav ul {
      line-height: 20px;
      font-size: 0;
      margin-left: 0;
      list-style: none; }
    .footer_nav li {
      padding: 8px 0; }
    .footer_nav a {
      font-family: "PT Sans", Arial, Helvetica, sans-serif;
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      color: #333; }
      .footer_nav a:hover {
        color: #777; }
    @media (min-width: 640px) {
      .footer_nav li {
        display: inline-block;
        vertical-align: middle;
        margin-right: 15px; }
        .footer_nav li:last-child {
          margin-right: 0; } }
    @media (min-width: 1024px) {
      .footer_nav {
        float: left; } }
  @media (min-width: 640px) {
    .footer_contact {
      display: inline-block;
      vertical-align: middle;
      margin-right: 40px; } }
  @media (min-width: 1024px) {
    .footer_contact {
      width: 25%;
      float: right;
      margin-right: 0;
      padding-left: 15px; } }
  .footer_social {
    font-size: 0;
    margin-bottom: 15px; }
    .footer_social a:first-child {
      margin-left: 0; }
    @media (min-width: 640px) {
      .footer_social {
        display: inline-block;
        vertical-align: middle; } }
    @media (min-width: 1024px) {
      .footer_social {
        float: right;
        clear: both;
        padding-left: 15px;
        width: 25%; } }
  .footer_copy {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    max-width: 730px;
    color: #777;
    font-size: 13px;
    line-height: 1.7857; }
    @media (min-width: 1024px) {
      .footer_copy {
        width: 75%; } }
    @media (min-width: 1024px) {
      .footer_copy {
        float: left;
        padding-right: 15px; } }

/*# sourceMappingURL=base-style.css.map */

/* End */


/* Start:/static_files_new/css/components/slider-top.min.css?14903720981966*/
@charset "UTF-8";.slider-top-wrap{position:relative}.slider-top-wrap .slider-arrow .icon{width:15px}.slider-top-wrap .slider-arrow--prev{left:0}@media (min-width:640px){.slider-top-wrap .slider-arrow--prev{left:10px}}@media (min-width:768px){.slider-top-wrap .slider-arrow--prev{left:30px}}.slider-top-wrap .slider-arrow--next{right:0}@media (min-width:640px){.slider-top-wrap .slider-arrow--next{right:10px}}@media (min-width:768px){.slider-top-wrap .slider-arrow--next{right:30px}.slider-top-wrap .slider-arrow .icon{width:21px}}.slider-top-wrap .slick-dots{bottom:10px}@media (min-width:1024px){.slider-top-wrap .slick-dots{bottom:40px}}.slider-top .slick-track{height:200px}@media (min-width:568px){.slider-top .slick-track{height:250px}}@media (min-width:640px){.slider-top .slick-track{height:300px}}@media (min-width:768px){.slider-top .slick-track{height:500px}}@media (min-width:1024px){.slider-top .slick-track{height:700px}}.slider-top_cont{height:100%}@media (min-width:768px){.slider-top_cont{padding-top:60px}}@media (min-width:1024px){.slider-top_cont{padding-top:160px}}.slider-top_widetext{font-family:"PT Sans",Arial,Helvetica,sans-serif;font-weight:900;line-height:1.3888;display:block;color:#fff}@media (min-width:768px){.slider-top_widetext{font-size:46px}}@media (min-width:1024px){.slider-top_widetext{font-size:52px}}@media (min-width:1366px){.slider-top_widetext{font-size:72px}}.slider-top_action{margin-top:15%;padding:0 20px;text-align:center;font-size:16px;color:#fff}.slider-top_action .btn{font-size:18px;font-weight:400;text-transform:none}@media (min-width:640px){.slider-top_action .btn{font-size:20px;margin-left:-16px}}@media (min-width:768px){.slider-top_action .btn{font-size:24px}}@media (min-width:640px){.slider-top_action{font-size:20px;padding:0 60px}}@media (min-width:768px){.slider-top_action{margin-top:0;text-align:left;padding:0 70px 0 0;font-size:24px}}@media (min-width:1024px){.slider-top_action{padding-top:12px}}
/* End */


/* Start:/static_files_new/css/components/form-login.min.css?146473088792*/
.form-login .link-pass-confirm{text-align:right}.form-login .link-pass-confirm a{color:#777}
/* End */


/* Start:/static_files_new/css/components/section-honors.min.css?1464730887239*/
@charset "UTF-8";.honors_img{position:relative;margin-bottom:28px}@media (max-width:639px){.honors_img{text-align:center}}@media (min-width:640px){.honors_img{min-height:130px;margin-bottom:48px}.honors_img img{position:absolute;bottom:0}}
/* End */


/* Start:/static_files_new/css/components/section-news-home.min.css?1464730887140*/
.news-home{padding-bottom:60px}.news-home_date{display:inline-block;padding-top:10px;color:#777;font-size:14px}.news-home p{margin-top:10px}
/* End */


/* Start:/static_files_new/css/components/collapse-wide.min.css?1464730887258*/
.spoiler-trigger{background-color:#eceff1;font-size:13px;line-height:1.923;color:#333;padding:6px 13px;cursor:pointer;transition:background-color .1s}.spoiler-trigger:hover{background-color:#d9e0e4}.spoiler-trigger.active{background-color:#4c5e67;color:#fff}
/* End */


/* Start:/static_files_new/css/components/slider-screen.min.css?14712134601287*/
@charset "UTF-8";.slider-screen--wrap{margin-bottom:37px}@media (max-width:640px){.slider-screen--wrap{display:none}}.slider-screen{padding-top:30px;margin-bottom:37px}.slider-screen_cont{padding:65px 0 70px}.slider-screen_cont .slider-screen_text{padding-top:102px}.slider-screen_cont .slick-dots{bottom:0}.slider-screen_cont .slick-dots li{margin:0 4px;padding-left:0}.slider-screen_cont .slick-dots li:before{content:''}.slider-screen_cont .slick-dots button{width:12px;height:12px;border-radius:12px;border:2px solid #bac6cc;cursor:pointer}.slider-screen_cont .slick-dots .slick-active button{background-color:#bac6cc}.slider-screen_img img{margin:0 auto}.slider-screen_nav{text-transform:uppercase;font-weight:700;color:#0086cf;line-height:1.5;letter-spacing:1.5px;transition:color .2s;text-align:center}.slider-screen_nav .slick-track{display:inline-block;width:auto!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.slider-screen_nav .slick-slide{display:inline-block;cursor:pointer;margin:0 25px}.slider-screen_nav .slick-slide:hover{color:#333}@media (min-width:641px) and (max-width:667px){.slider-screen_nav .slick-slide{margin:0 10px;font-size:14px}}.slider-screen_nav .slick-current{color:#333;border-bottom:4px solid #ffba00}
/* End */


/* Start:/static_files_new/css/components/modal-compare.min.css?1464783054614*/
.modal-compare{padding-top:8px}.modal-compare td,.modal-compare th{border-left:5px solid #fff;vertical-align:top}.modal-compare thead th h4{padding-bottom:20px}.modal-compare thead th:nth-child(2){border-bottom:5px solid #a0b1b9}.modal-compare thead th:nth-child(3){border-bottom:5px solid #91c73d}.modal-compare tbody td{width:33.3333%;padding:15px 20px}.modal-compare tbody td:nth-child(2){background-color:#f4f7f9;border-bottom:1px solid #a0b1b9}.modal-compare tbody td:nth-child(3){background-color:#f4faec;border-bottom:1px solid #91c73d}.modal-compare tbody td:first-child{font-style:italic;text-align:right}
/* End */


/* Start:/static_files_new/css/components/slider-reviews.min.css?14647308871787*/
@charset "UTF-8";.reviews-slider{padding-top:25px;margin-bottom:15px}@media (min-width:768px){.reviews-slider{margin-bottom:30px}}@media (min-width:1024px){.reviews-slider{margin-bottom:55px}}.reviews-slider_cont{width:100%;margin-top:80px;border:1px solid #d2dade;border-radius:7px;padding:0 20px 0 30px;position:relative}.reviews-slider_cont .reviews-logo{width:50px;position:absolute;left:0;top:-80px}@media (min-width:1024px){.reviews-slider_cont .reviews-logo{top:auto;left:-80px}.reviews-slider_cont{max-width:970px;padding-left:50px;float:right;margin-top:0}.reviews-slider{margin-right:60px;margin-left:60px}.reviews-slider .slick-slide{padding-left:80px}}.reviews .slider-arrow{z-index:2}.reviews .slider-arrow .icon{fill:#d2dade}.reviews .slider-arrow .icon:hover{fill:#eceff1}.reviews-slider--wrap,.reviews-slider-nav--wrap{position:relative}.reviews-slider--wrap .slider-arrow{top:55px}.reviews-slider--wrap .slider-arrow--prev{left:auto;right:85px}.reviews-slider--wrap .slider-arrow--next{right:0}.reviews-slider-nav--wrap .slick-list{margin:0 30px}.reviews-slider-nav--wrap .slider-top-arrow{position:absolute;top:50%;bottom:0;margin-top:-18.5px;cursor:pointer}.reviews-slider-nav--wrap .slider-arrow--prev{left:0}.reviews-slider-nav--wrap .slider-arrow--next{right:0}.reviews-slider-nav .slick-slide{width:150px;height:70px;text-align:center;display:table-cell;vertical-align:middle;float:none;-webkit-filter:grayscale(1);filter:grayscale(1);opacity:.5;transition:filter .14s,opacity .14s;transition:filter .14s,opacity .14s,-webkit-filter .14s}.reviews-slider-nav .slick-slide img{margin:auto;max-height:70px}.reviews-slider-nav .slick-slide:not(.slick-current){cursor:pointer}.reviews-slider-nav .slick-current{-webkit-filter:grayscale(0);filter:grayscale(0);opacity:1}
/* End */


/* Start:/static_files_new/css/components/widget-callback.css?14998078753660*/
@charset "UTF-8";
/*
Вызов: @include sprite($var) - вместо $var, вставлять переменные из сгенерированного файла sprite-data.scss
*/
/* --- Layout variables --- */
/* --- Fonts variables --- */
/* --- Path --- */
/* --- New Template Path --- */
/* --- Path sprite images --- */
/* --- Other variables --- */
@media (max-width: 639px) {
  .webui-popover {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important; } }
.widget-callback {
  background: url("/static_files_new/css/components/../../img/design/point-map.png") no-repeat center bottom;
  text-align: center; }
  @media (min-width: 640px) {
    .widget-callback {
      width: 540px; } }
  .widget-callback h3 {
    font-weight: 700; }
  .widget-callback-btn {
    background-color: #fe8f12;
    background: url(/static_files_new/css/components/../../img/design/widget-callback-btn.png) no-repeat;
    background-size: contain;
    position: fixed;
    width: 26px;
    height: 122px;
    top: 260px;
    right: 0;
    font-size: 0px;
    cursor: pointer;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.4ms; }
    @media (min-width: 768px) {
      .widget-callback-btn {
        width: 46px;
        height: 213px;
        top: 400px; } }
    .widget-callback-btn:hover {
      opacity: 0.9; }
  .widget-callback-btns li {
    display: inline-block;
    margin-bottom: 10px; }
    @media (min-width: 640px) {
      .widget-callback-btns li {
        margin-right: 10px; } }
    .widget-callback-btns li:last-child {
      margin-right: 0; }
    .widget-callback-btns li a {
      width: 170px;
      text-transform: none;
      padding-left: 9px;
      padding-right: 9px; }
      .widget-callback-btns li a:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 2px;
        margin-right: 12px; }
  .widget-callback-btns_buy, .widget-callback-btns_support, .widget-callback-btns_settings {
    color: #879ca7; }
  .widget-callback-btns_buy:before {
    background: url("/static_files_new/css/components/../../img/design/icon-basket-buy.png") no-repeat;
    width: 23px;
    height: 19px; }
  .widget-callback-btns_support:before {
    background: url("/static_files_new/css/components/../../img/design/icon-support-sm.png") no-repeat;
    width: 23px;
    height: 20px; }
  .widget-callback-btns_settings:before {
    background: url("/static_files_new/css/components/../../img/design/icon-settings-sm.png") no-repeat;
    width: 21px;
    height: 21px; }
  .widget-callback_recall {
    padding-bottom: 55px; }
  .widget-callback_callsite {
    text-align: center;
    padding-bottom: 30px; }
    .widget-callback_callsite h3 {
      padding-top: 23px;
      padding-bottom: 20px; }
    .widget-callback_callsite p {
      max-width: 320px;
      font-size: 14px;
      margin: 25px auto; }
    .widget-callback_callsite .btn {
      width: 220px;
      color: #879ca7; }
      .widget-callback_callsite .btn:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 2px;
        margin-right: 10px;
        background: url("/static_files_new/css/components/../../img/design/icon-phone-2.png") no-repeat;
        width: 15px;
        height: 15px; }
  .widget-callback .policy-hint {
    font-size: 11px; }

.webui-popover {
  max-width: 600px; }

.webui-popover-title {
  display: none; }

.webui-popover-inner .close {
  background: url(/static_files_new/css/components/../../img/design/close.png) no-repeat;
  width: 20px;
  height: 20px;
  font-size: 0;
  margin: 13px 10px 0 0;
  opacity: 1;
  float: none;
  position: absolute;
  right: 0;
  top: 0; }
  @media (min-width: 640px) {
    .webui-popover-inner .close {
      margin: 23px 20px 0 0; } }

/*# sourceMappingURL=widget-callback.css.map */

/* End */


/* Start:/static_files_new/css/pages/page-vats-functions.min.css?149037209850*/
@charset "UTF-8";.p-product_img{margin-bottom:5px}
/* End */


/* Start:/static_files_new/css/pages/page-vats-functions-ivr.min.css?1490372098160*/
@charset "UTF-8";.about-box{padding:0 0 55px}.about-box_text{font-family:"PT Sans",Arial,Helvetica,sans-serif;font-size:24px;font-weight:100;line-height:1.5625}
/* End */


/* Start:/static_files_new/css/pages/page-about-all.min.css?14903720981982*/
@charset "UTF-8";.product-video{margin-top:-39px;margin-bottom:25px;padding-top:39px;min-height:700px;position:relative;color:#fff;background-position:center center}.product-video_head h1{font-size:30px;line-height:1.3888;margin-bottom:15px;padding-top:0}@media (min-width:640px){.product-video_head h1{margin-bottom:0;font-size:60px;line-height:1.25}}.product-video_head .subtitle{display:block;margin-bottom:20px;font-size:22px;line-height:1.2;font-family:"Open Sans",Arial,Helvetica,sans-serif;font-weight:300}@media (min-width:640px){.product-video_head .subtitle{font-size:24px;line-height:1.5}}@media (min-width:768px){.product-video_head .btn{float:right;margin-top:7px}}.product-video_desc{font-family:"Open Sans",Arial,Helvetica,sans-serif;font-size:20px;line-height:1.5625;font-weight:300;position:absolute;bottom:46px;max-width:290px}@media (min-width:640px){.product-video_desc{font-size:24px;max-width:546px}}@media (min-width:768px){.product-video_desc{max-width:auto}}@media (min-width:1024px){.product-video_desc{font-size:24px;line-height:1.5}}@media (min-width:1366px){.product-video_desc{font-size:36px;line-height:1.0416}}.product-video_over,.product-video_trigger{position:absolute;top:0;right:0;bottom:0;left:0}.product-video_trigger{width:64px;height:64px;padding:2px;margin:auto;cursor:pointer;transition:transform .14s,-webkit-transform .14s;transition:transform .14s}.product-video_over{background-color:rgba(0,0,0,.5);visibility:hidden;opacity:0;transition:visibility .3s,opacity .3s}.product-video_over .embed-responsive{margin:0 30px}.product-video_over.show{visibility:visible;opacity:1}.product-video_size{max-width:840px;width:100%;max-height:475px;margin:auto;position:absolute;bottom:0;top:0;left:0;right:0}.product-video_close{position:absolute;right:-30px;top:0;cursor:pointer}.product-video_close .icon{width:30px;height:30px}.product-video:hover .product-video_trigger{-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2)}
/* End */


/* Start:/static_files_new/css/pages/page-about-vats.min.css?1464730887320*/
@charset "UTF-8";.product-video--vats{background:url(/static_files_new/css/pages/../../img/content/vats-top1900-700.png) no-repeat center top/cover}.compare{padding:52px 0 75px;margin:50px 0 28px;text-align:center}.compare h3{padding-bottom:50px;text-align:left}.compare a{color:#333}.compare a img{margin-right:20px}.compare a:hover{color:#0086cf}
/* End */


/* Start:/static_files_new/css/pages/page-vats-functions-army.min.css?14647308874633*/
@charset "UTF-8";.version{padding-top:27px}.ak47{min-width:690px;height:500px;position:relative;clear:both;margin:0 auto}.ak47-wrap{background:#375260;clear:both;padding-left:28px}.ak47_words{width:921px;height:246px;margin:160px auto;position:relative}.ak47 span{position:absolute;cursor:pointer;z-index:3;transition:transform .2s,opacity .2s;transition:transform .2s,opacity .2s,-webkit-transform .2s}.ak47 span:hover img{opacity:.6}.ak47 img{display:inline-block;vertical-align:top}.word1{width:11.1711%;left:42.6126%;top:187px}.word2,.word3{width:15.3153%;left:55.3153%;top:187px}.word3{width:3.1531%;left:76.036%}.word4,.word5{width:14.7747%;left:26.1261%;top:205px}.word5{width:17.2072%;left:42.3423%;padding-top:2px}.word6{width:23.6036%;left:60.8108%;top:205px}.word7,.word8{width:11.9819%;left:25.7657%;top:233px}.word8{width:24.054%;left:42.5225%}.word10,.word9{width:10.6306%;left:25.2252%;top:256px}.word10{width:4.1441%;left:39.8198%}.word11,.word12{width:3.2432%;left:45.045%;top:256px}.word12{width:7.5675%;left:49.5495%}.word2:before,.word5:before,.word6:before{content:'';position:absolute;left:-12px;width:6px;height:6px;border-radius:6px;background-color:#fff}.word2:before{top:4px}.word5:before,.word6:before{top:8px}.bubble-left-bottom,.bubble-left-top,.bubble-right-bottom,.bubble-right-top{position:absolute;box-sizing:border-box;color:#375260;z-index:2;display:none;font-size:14px}.bubble-left-top{background:url(/static_files_new/css/pages/../../img/design/army/bubble-left-top.png) no-repeat;top:48px;left:17.6126%;width:316px;height:179px;padding:35px 36px 73px 24px;background-size:contain}.bubble-right-top{background:url(/static_files_new/css/pages/../../img/design/army/bubble-right-top.png) no-repeat;left:57.3153%;top:24px;width:310px;height:147px;padding-top:27px;padding-left:52px;padding-right:42px;background-size:contain}.bubble-left-bottom{background:url(/static_files_new/css/pages/../../img/design/army/bubble-left-bottom.png) no-repeat;left:25.2252%;bottom:0;width:290px;height:188px;padding-left:39px;padding-top:42px;padding-right:32px;background-size:contain}.bubble-right-bottom{background:url(/static_files_new/css/pages/../../img/design/army/bubble-right-bottom.png) no-repeat;left:60.8108%;bottom:22px;width:260px;height:202px;padding-left:30px;padding-top:35px;padding-right:35px;background-size:contain}.ak47 span[class^=word]~.bubble-left-bottom,.ak47 span[class^=word]~.bubble-left-top,.ak47 span[class^=word]~.bubble-right-bottom,.ak47 span[class^=word]~.bubble-right-top{-webkit-animation-duration:.6s;animation-duration:.6s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.ak47 .curve:before{content:'';position:absolute;z-index:-1}.word10:hover~.word-10,.word11:hover~.word-11,.word12:hover~.word-12,.word1:hover~.word-1,.word2:hover~.word-2,.word3:hover~.word-3,.word4:hover~.word-4,.word5:hover~.word-5,.word6:hover~.word-6,.word7:hover~.word-7,.word8:hover~.word-8,.word9:hover~.word-9{display:block}.word1:hover~.word-1:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-left-top-3.png) no-repeat;width:64px;height:79px;left:212px;bottom:38px}.word2:hover~.word-2:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-right-top-1.png) no-repeat;width:40px;height:82px;left:-17px;bottom:-10px}.word3:hover~.word-3:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-right-top-2.png) no-repeat;width:48px;height:85px;right:51px;bottom:-18px}.word4:hover~.word-4:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-left-top-1.png) no-repeat;width:14px;height:50px;left:185px;bottom:20px}.word5:hover~.word-5:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-left-top-2.png) no-repeat;width:14px;height:50px;left:263px;bottom:20px}.word6:hover~.word-6:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-right-bottom-3.png) no-repeat;width:24px;height:153px;left:121px;top:-49px}.word7:hover~.word-7:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-left-bottom-1.png) no-repeat;width:61px;height:106px;left:85px;top:-66px}.word8:hover~.word-8:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-right-bottom-2.png) no-repeat;width:124px;height:178px;left:-60px;top:-26px}.word9:hover~.word-9:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-left-bottom-2.png) no-repeat;width:37px;height:106px;left:49px;top:-42px}.word10:hover~.word-10:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-left-bottom-3.png) no-repeat;width:48px;height:87px;left:146px;top:0}.word11:hover~.word-11:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-left-bottom-4.png) no-repeat;width:76px;height:144px;right:43px;top:-34px}.word12:hover~.word-12:before{background:url(/static_files_new/css/pages/../../img/design/army/sm-curve-right-bottom-1.png) no-repeat;width:170px;height:50px;left:-37px;bottom:73px}
/* End */


/* Start:/static_files_new/css/pages/page-vats-functions-krasivye_nomera.min.css?1490372098865*/
@charset "UTF-8";.example-number{padding-top:25px}.example-number [class^=col-]{padding-top:25px;border-top:1px solid #d2dade}.example-number [class^=col-]:first-child{border-top:0}@media (min-width:640px){.example-number [class^=col-]:nth-child(2){border-top:0;border-left:1px solid #d2dade}.example-number [class^=col-]:nth-child(4){border-left:1px solid #d2dade}}@media (min-width:1024px){.example-number [class^=col-]{padding-top:0;border-top:0}.example-number [class^=col-]:not(:first-child){border-top:0;border-left:1px solid #d2dade}}.example-number_item{font-family:"PT Sans",Arial,Helvetica,sans-serif;text-align:center;padding-bottom:25px}.example-number_item span{display:block;margin-bottom:25px}@media (min-width:1024px){.example-number_item span{margin-bottom:50px}}.example-number_item .example-num{font-size:24px;line-height:25px;white-space:nowrap}
/* End */


/* Start:/static_files_new/css/pages/page-about-cov.min.css?1464730887381*/
@charset "UTF-8";.product-video--cov{background:url(/static_files_new/css/pages/../../img/content/tsov-bg-700.jpg) no-repeat center top/cover}.step-demo--column:hover .step-demo:before{-webkit-transform:rotateZ(360deg);-ms-transform:rotate(360deg);transform:rotateZ(360deg)}.step-demo--column:hover .step-demo--2:before{-webkit-transform:rotateZ(315deg);-ms-transform:rotate(315deg);transform:rotateZ(315deg)}
/* End */


/* Start:/static_files_new/css/pages/page-vats-functions-telefonizatsiya.min.css?14903720985683*/
@charset "UTF-8";.complex{background-color:#fff}.complex--wrap{padding-bottom:28px}.complex_head{min-height:147px;padding:25px 15px 26px}.complex_head ul{overflow:hidden}.complex_head li{margin-bottom:20px}@media (min-width:768px){.complex_head li{width:33%;float:left}}@media (min-width:1024px){.complex_head li{width:18%;margin-right:20px}.complex_head li:last-child{margin-right:0}}@media (min-width:1366px){.complex_head li{margin-right:25px;padding-right:15px}}@media (min-width:768px){.complex_head{padding-left:35px;padding-right:35px}}.complex-box{border-top:4px solid #f4f7f9;border-bottom:4px solid #f4f7f9}.complex-box [class^=col-]:not(:first-child){border-left:4px solid #f4f7f9}.complex-box [class^=col-]:first-child .complex-box_item{padding-left:15px}.complex-box [class^=col-]:last-child .complex-box_item{padding-right:15px}.complex-box_item{text-align:center;height:400px}.complex-box_head{min-height:102px;padding-top:27px}.complex-box_middle{min-height:103px;padding-top:20px}.complex-box_middle .gb{text-transform:uppercase;display:inline-block;font-family:"PT Sans",Arial,Helvetica,sans-serif;font-size:48px;font-weight:100;line-height:1.0416;padding-top:20px}.complex-box_foot{padding-bottom:72px}.complex-box-mobile{text-align:center;padding:27px 15px 72px;border-top:4px solid #f4f7f9;border-bottom:4px solid #f4f7f9}.complex-box-mobile .update{margin-left:15px}@media (min-width:768px){.complex-box-mobile{display:none}}@media (max-width:767px){.complex-box{display:none}}.complex_foot{min-height:147px;padding:31px 15px 38px}.complex_foot .btn{margin-top:15px}@media (min-width:768px){.complex_foot .btn{float:right}.complex_foot{padding-left:38px;padding-right:38px}}.complex h3 span{font-size:16px;display:block}.complex .amount{margin:0 auto}.complex .complex-payment{overflow:hidden}.complex .complex-payment .complex-payment_month,.complex .complex-payment .complex-payment_one{width:50%;float:left;padding-right:10px}@media (min-width:1024px){.complex .complex-payment .complex-payment_month,.complex .complex-payment .complex-payment_one{width:auto}.complex .complex-payment .complex-payment_one{margin-right:48px}}.complex .complex-payment small{display:block;margin-bottom:10px}@media (max-width:1024px){.complex .complex-payment small{min-height:38px}}.complex .complex-payment span{white-space:nowrap;display:inline-block;font-family:"PT Sans",Arial,Helvetica,sans-serif;font-size:32px;font-weight:100;line-height:1.0416}@media (min-width:768px){.complex .complex-payment span{font-size:42px}}@media (min-width:1024px){.complex .complex-payment span{font-size:48px}}.complex .complex-payment sup{font-family:"PT Sans",Arial,Helvetica,sans-serif;font-size:.3333em;margin-bottom:18px}.complex .complex_num span{white-space:nowrap;font-size:24px;line-height:1.0416;display:inline-block;margin-bottom:20px}
@charset "UTF-8";.complex{background-color:#fff}.complex--wrap{padding-bottom:28px}.complex_head{min-height:147px;padding:25px 15px 26px}.complex_head ul{overflow:hidden}.complex_head li{margin-bottom:20px}@media (min-width:768px){.complex_head li{width:33%;float:left}}@media (min-width:1024px){.complex_head li{width:18%;margin-right:20px}.complex_head li:last-child{margin-right:0}}@media (min-width:1366px){.complex_head li{margin-right:25px;padding-right:15px}}@media (min-width:768px){.complex_head{padding-left:35px;padding-right:35px}}.complex-box{border-top:4px solid #f4f7f9;border-bottom:4px solid #f4f7f9}.complex-box [class^=col-]:not(:first-child){border-left:4px solid #f4f7f9}.complex-box [class^=col-]:first-child .complex-box_item{padding-left:15px}.complex-box [class^=col-]:last-child .complex-box_item{padding-right:15px}.complex-box_item{text-align:center;height:400px}.complex-box_head{min-height:102px;padding-top:27px}.complex-box_middle{min-height:103px;padding-top:20px}.complex-box_middle .gb{text-transform:uppercase;display:inline-block;font-family:"PT Sans",Arial,Helvetica,sans-serif;font-size:48px;font-weight:100;line-height:1.0416;padding-top:20px}.complex-box_foot{padding-bottom:72px}.complex-box-mobile{text-align:center;padding:27px 15px 72px;border-top:4px solid #f4f7f9;border-bottom:4px solid #f4f7f9}.complex-box-mobile .update{margin-left:15px}@media (min-width:768px){.complex-box-mobile{display:none}}@media (max-width:767px){.complex-box{display:none}}.complex_foot{min-height:147px;padding:31px 15px 38px}.complex_foot .btn{margin-top:15px}@media (min-width:768px){.complex_foot .btn{float:right}.complex_foot{padding-left:38px;padding-right:38px}}.complex h3 span{font-size:16px;display:block}.complex .amount{margin:0 auto}.complex .complex-payment{overflow:hidden}.complex .complex-payment .complex-payment_month,.complex .complex-payment .complex-payment_one{width:50%;float:left;padding-right:10px}@media (min-width:1024px){.complex .complex-payment .complex-payment_month,.complex .complex-payment .complex-payment_one{width:auto}.complex .complex-payment .complex-payment_one{margin-right:48px}}.complex .complex-payment small{display:block;margin-bottom:10px}@media (max-width:1024px){.complex .complex-payment small{min-height:38px}}.complex .complex-payment span{white-space:nowrap;display:inline-block;font-family:"PT Sans",Arial,Helvetica,sans-serif;font-size:32px;font-weight:100;line-height:1.0416}@media (min-width:768px){.complex .complex-payment span{font-size:42px}}@media (min-width:1024px){.complex .complex-payment span{font-size:48px}}.complex .complex-payment sup{font-family:"PT Sans",Arial,Helvetica,sans-serif;font-size:.3333em;margin-bottom:18px}.complex .complex_num span{white-space:nowrap;font-size:24px;line-height:1.0416;display:inline-block;margin-bottom:20px}
/* End */


/* Start:/static_files_new/css/components/modal-leadgen.css?14781237302168*/
.modal-leadgen {
  max-width: 530px; }
  .modal-leadgen .modal-header {
    padding-left: 30px;
    padding-right: 30px; }
    .modal-leadgen .modal-header h3 {
      text-align: center; }
    .modal-leadgen .modal-header p {
      margin-bottom: 0; }
  .modal-leadgen .modal-body {
    padding-top: 6px; }
  .modal-leadgen .leadgen-lacks {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 24px;
    border-top: 1px solid #eceff1; }
    .modal-leadgen .leadgen-lacks p {
      text-align: center; }
    .modal-leadgen .leadgen-lacks label {
      cursor: pointer;
      display: block;
      padding: 7px 0; }
    .modal-leadgen .leadgen-lacks input[type="radio"] {
      visibility: hidden;
      position: absolute; }
    .modal-leadgen .leadgen-lacks input[type="radio"] + span {
      display: inline-block;
      vertical-align: middle;
      width: 18px;
      height: 18px;
      border: 1px solid #d3dbdf;
      border-radius: 18px;
      position: relative;
      margin-right: 12px; }
    .modal-leadgen .leadgen-lacks input[type="radio"]:checked + span {
      border-color: #30b1f6; }
    .modal-leadgen .leadgen-lacks input[type="radio"]:checked + span:before {
      content: '';
      background-color: #30b1f6;
      position: absolute;
      top: 2px;
      right: 2px;
      bottom: 2px;
      left: 2px;
      margin: auto;
      border-radius: 100%; }
  .modal-leadgen .leadgen-feedback {
    background-color: #eceff1;
    overflow: hidden;
    padding: 2px 30px 25px;
    margin: 0 -20px -25px -20px; }
    .modal-leadgen .leadgen-feedback p {
      text-align: center; }
    .modal-leadgen .leadgen-feedback input[type="text"] {
      padding-top: 8.5px;
      padding-bottom: 8.5px;
      float: left;
      margin-right: 9px;
      margin-bottom: 5px; }
      @media (max-width: 567px) {
        .modal-leadgen .leadgen-feedback input[type="text"] {
          margin-bottom: 10px; } }
      @media (min-width: 568px) {
        .modal-leadgen .leadgen-feedback input[type="text"] {
          max-width: 160px; } }
    .modal-leadgen .leadgen-feedback input[type="submit"] {
      width: 130px;
      text-transform: none; }

/* End */


/* Start:/static_files_new/css/pages/page-search.css?14992903972640*/
.contact-us-form-wrapper input[type=text] {
    min-height:50px;
}
.main .search-form .btn {
    position: absolute;
    right: 0;
}
.search-with-icons {
    position: relative;
}
.search-with-icons .fa {
    color: #a0b1b9;
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
}
.search-with-icons .fa-search {
    left: 15px;
}
.search-with-icons .fa-remove {
    right: 123px;
    display: none;
    cursor: pointer;
}
.search-with-icons.process .fa-remove {
    display: block;
}
.search-with-icons input[type=text] {
    padding-left: 40px;
    max-width: calc(100% - 82px);
    width: calc(100% - 82px);
    padding-right: 65px;
    vertical-align: top;
    min-height: 50px;
}
.near-input {
    margin-left: -33px;
    width: 110px;
    vertical-align: top;
}
@media (max-width: 768px) {
    .col-xs-4,
    .col-xs-8 {
        float: left;
    }
}
.search-form {
    margin-bottom: 20px;
}
.search-container {
    position: relative;
}
.search-results-header {
    border-bottom: 1px solid #d2dade;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.search-results-content-empty {
    text-align: center;
    font-size: 20px;
    color: #a0b1b9;
    padding: 100px 0;
}
.search-results-header {
    font-size: 20px;
}
.search-results-content-item {
    margin: 20px 0;
}
.search-results-content-item-img {
    float: left;
    width: 100px;
    margin-right: 15px;
    display: table-cell;
}
.search-results-content-item-text {
    display: table-cell;
}
.search-results-content-item-title span {
    margin: 0 6px;
    font-size: 20px;
    line-height: 6px;
    font-weight: bold;
    color: #d2dade;
}
.search-results-content-item-category {
    font-size: 13px;
}
.search-results-content-item-category a {
    color:#a0b1b9;
}
.highlight,
.search-results-content-item-text b,
.search-results-content-item-title .current b {
    background: #feffe0;
    font-weight: normal;
}
.search-results-content-pagination .pagination {
    text-align: center;
    border-top: 1px solid #d2dade;
    padding-top: 20px;
}
.search-results-content-pagination .pagination ul {
    list-style: none;
}
.search-results-content-pagination .pagination ul li {
    display: inline-block;
}
.search-results-content-pagination .pagination ul li a {
    display: inline-block;
    height: 36px;
    width: 36px;
    text-align:center;
    border: 1px solid #d2dade;
    border-radius: 50%;
    line-height: 36px;
}
.search-results-content-pagination .pagination ul li.active a {
    color: #a0b1b9;
}
.search-results-content-item-title .current,
.search-results-content-item-title .current b {
    font-weight: 700;
}
/* End */


/* Start:/local/templates/mango_ru/components/bitrix/search.title/visual/style.css?14979962934674*/
.bx-searchtitle {
	margin: 10px 0 0;
}
.bx-searchtitle .bx-block-title {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #343434;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 9px;
	font-weight: 600;
}
.bx-searchtitle .bx-input-group {
	position: relative;
	display: table;
	border-collapse: separate;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-searchtitle .bx-input-group {}
.bx-searchtitle .bx-input-group .bx-form-control {
	display: table-cell;
	position: relative;
	z-index: 2;
	float: left;
	width: 100%;
	margin-bottom: 0;
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #f8fafc;
	border: 1px solid #d5dadc;
	border-right: none;
	border-radius: 2px 0 0 2px;
	outline: none;
	box-shadow: none !important;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bx-ios .bx-searchtitle .bx-input-group .bx-form-control {
	/* Fix of input shadow for IOS browsers. */
	background-image: -webkit-linear-gradient(#f8fafc 0%, #f8fafc 100%);
	background-image: linear-gradient(#f8fafc 0%, #f8fafc 100%);
}
.bx-searchtitle .bx-input-group-btn {
	position: relative;
	font-size: 0;
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
	display: table-cell;
}
.bx-searchtitle .bx-input-group-btn button {
	position: relative;
	border: none;
	background: #95a1a8;
	display: inline-block;
	margin-bottom: 0;
	cursor: pointer;
	padding:6px 12px;
	border-radius: 0 2px 2px 0;
	color: #fff;
	font-size: 16px;
	line-height: 1.42857143;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.bx-searchtitle .bx-input-group-btn button:hover {
	background: #1484CE;
}
div.title-search-result {
	border:1px solid #c6c6c6;
	display:none;
	overflow:hidden;
	z-index:999;
	min-width: 370px;
	margin-top:-3px;
	background-color: #FFF;
}

div.title-search-fader {
	display:none;
	background-image: url('/local/templates/mango_ru/components/bitrix/search.title/visual/images/fader.png');
	background-position: right top;
	background-repeat: repeat-y;
	position:absolute;
}

p.title-search-preview {
	font-size:12px;
}
div.title-search-result td.title-search-price span {
	font-size: 26px;
}

/*========================*/
.bx_searche{}
.bx_searche .bx_img_element{
	background: #fafafa;
	float: left;
	width: 67px;
	padding: 5px 10px;
	position: absolute;
	top: 0;
	bottom: 0;
}
.bx_searche .bx_item_block{
	position: relative
}
.bx_searche .bx_image{
	width: 45px;
	height: 45px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #e8e8e8;
}
.bx_searche .bx_item_element{

}
.bx_searche .bx_item_element hr{
	margin: 0;
	border: none;
	border-bottom: 1px solid #e5e5e5;
}
.bx_searche .bx_item_element a {
    padding: 5px 5px 5px 10px;
    display: inline-block;
    width: 100%;
    color: #4788cb;
    font-size: 13px;
    text-decoration: none;
}
.bx_searche .bx_item_element a b{color: #000;background: #feffe0;font-weight: normal;}
.bx_searche .bx_item_element a:hover,
.bx_searche .bx_item_element a:hover b{text-decoration: none;background-color: #eee;}
.bx_searche .bx_price{
	font-weight:bold;
	font-size:13px;
}
.bx_searche .bx_price .old{
	font-weight:normal;
	text-decoration: line-through;
	color: #636363
}
.bx_item_block.all_result{min-height:0}
.bx_item_block.others_result{
	min-height: 0;
	padding: 0 0 12px;
	line-height: 12px;
}
.bx_item_block.all_result .all_result_title{
	display: block;
	font-size: 12px;
	color: #a7a7a7;
}
.bx_item_block.all_result .all_result_title a{color: #a7a7a7;padding-top: 10px;padding-bottom: 10px;}
.bx_item_block.all_result .all_result_title a:hover{color: #4788cb;}
.bx_item_block.all_result a{
	margin-top: 0;
}
.search-nav {
	padding-left: 25px;
    color: #a7a7a7;
    font-size: 13px;
    white-space: nowrap;
}
.search-results {
    margin-bottom: 20px;
}
.search-results .notice {
    font-size: 14px;
    padding: 10px 20px;
    background: #ffecec;
    border-radius: 4px;
    text-align: left;
    position: relative;
}
.search-results .notice p {
    margin: 5px 0;
}
.search-results .notice:after {
    bottom: 100%;
    left: 28px;
    border: 6px solid rgba(136, 183, 213, 0);
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #ffecec;
    margin-left: -10px;
}
/* End */


/* Start:/static_files_new/css/components/modal-callback.min.css?1468359358806*/
#modalCallback .modal-body{padding-top:0}.modal-callback_type{overflow:hidden;text-align:center;padding-top:50px;padding-bottom:35px;min-height:236px}.modal-callback_type .item{display:block;margin:0 3px;border:1px solid #d2dade;width:33.3333%;height:150px;max-width:150px;padding-top:107px;color:#777;border-radius:3px;position:relative}@media (max-width:639px){.modal-callback_type .item{margin-bottom:25px}}@media (min-width:640px){.modal-callback_type .item{display:inline-block}}@media (max-width:767px){.modal-callback_type .item{width:150px;display:block;margin:0 auto 20px}}.modal-callback_type .item .icon{position:absolute;left:0;right:0;bottom:60px;margin:0 auto}.modal-callback_type .item:hover{border:2px solid #ffba00;margin-top:-1px}.modal-callback_type .item:hover .icon{margin-bottom:-2px}
/* End */


/* Start:/local/templates/mango_ru/components/bitrix/menu/top_main/style.css?1480539143160*/
@media (min-width: 1024px) {
    .active .nav_item-link > a {
        border-color: #91c73d
    }

    .nav_left .nav_item {
        margin-right: 14px;
    }
}
/* End */


/* Start:/yenisite.resizer2/js/fancybox2/jquery.fancybox.css?14229991724387*/
/*! fancyBox v2.1.2 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('/yenisite.resizer2/js/fancybox2/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('/yenisite.resizer2/js/fancybox2/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
	border: none !important;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('/yenisite.resizer2/js/fancybox2/blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -9999px;
	left: -9999px;
	visibility: hidden;
}

/* Overlay helper */

.fancybox-lock {
	overflow: hidden;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url('/yenisite.resizer2/js/fancybox2/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

a.yenisite-zoom {
	border: none !important;
}
/* End */


/* Start:/yenisite.resizer2/js/fancybox2/helpers/jquery.fancybox-buttons.css?14229991722727*/
#fancybox-buttons {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 8050;
}

#fancybox-buttons.top {
	top: 10px;
}

#fancybox-buttons.bottom {
	bottom: 10px;
}

#fancybox-buttons ul {
	display: block;
	width: 166px;
	height: 30px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	border: 1px solid #111;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	   -moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	        box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	background: rgb(50,50,50);
	background: -moz-linear-gradient(top, rgb(68,68,68) 0%, rgb(52,52,52) 50%, rgb(41,41,41) 50%, rgb(51,51,51) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(68,68,68)), color-stop(50%,rgb(52,52,52)), color-stop(50%,rgb(41,41,41)), color-stop(100%,rgb(51,51,51)));
	background: -webkit-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -o-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -ms-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
}

#fancybox-buttons ul li {
	float: left;
	margin: 0;
	padding: 0;
}

#fancybox-buttons a {
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-image: url('/yenisite.resizer2/js/fancybox2/helpers/fancybox_buttons.png');
	background-repeat: no-repeat;
	outline: none;
	opacity: 0.8;
}

#fancybox-buttons a:hover {
	opacity: 1;
}

#fancybox-buttons a.btnPrev {
	background-position: 5px 0;
	border: none !important;
}

#fancybox-buttons a.btnNext {
	background-position: -33px 0;
	border-right: 1px solid #3e3e3e;
	border: none !important;
}

#fancybox-buttons a.btnPlay {
	background-position: 0 -30px;
	border: none !important;
}

#fancybox-buttons a.btnPlayOn {
	background-position: -30px -30px;
	border: none !important;
}

#fancybox-buttons a.btnToggle {
	background-position: 3px -60px;
	border-left: 1px solid #111;
	border-right: 1px solid #3e3e3e;
	width: 35px;
	border: none !important;
}

#fancybox-buttons a.btnToggleOn {
	background-position: -27px -60px;
	border: none !important;
}

#fancybox-buttons a.btnClose {
	border-left: 1px solid #111;
	width: 35px;
	background-position: -56px 0px;
	border: none !important;
}

#fancybox-buttons a.btnDisabled {
	opacity : 0.4;
	cursor: default;
	border: none !important;
}
/* End */


/* Start:/yenisite.resizer2/js/fancybox2/helpers/jquery.fancybox-thumbs.css?1422999172770*/
#fancybox-thumbs {
	position: fixed;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 8050;
}

#fancybox-thumbs.bottom {
	bottom: 2px;
}

#fancybox-thumbs.top {
	top: 2px;
}

#fancybox-thumbs ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

#fancybox-thumbs ul li {
	float: left;
	padding: 1px;
	opacity: 0.5;
}

#fancybox-thumbs ul li.active {
	opacity: 0.75;
	padding: 0;
	border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
	opacity: 1;
}

#fancybox-thumbs ul li a {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #222;
	background: #111;
	outline: none;
}

#fancybox-thumbs ul li img {
	display: block;
	position: relative;
	border: 0;
	padding: 0;
}
/* End */


/* Start:/local/modules/mango.leadgen/css/style.css?1478123730154*/
.leadgen-next {
	background-color: #eceff1;
	overflow: hidden;
	padding: 2px 30px 25px;
	margin: 0 -20px -25px;
}

#modalLeadGen:before {
	height: auto;
}
/* End */


/* Start:/local/components/mango/constructor.big_banner/templates/vertical/style.css?1470170806179*/
@media (max-width: 475px) {
    .infg-mobile_text img {
        float: left;
        margin: 0 10px 25px 0;
    }
    .infg-mobile_text span {
        margin-bottom: 25px;
    }
}
/* End */


/* Start:/static_files_new/css/components/infographic.min.css?14792405022488*/
@charset "UTF-8";@media (max-width:767px){.infographic{display:none}.slider-infg-mobile_item{height:250px;padding-top:43px;background-size:cover;background-position:center center}.slider-infg-mobile_item .infg-mobile_text{color:#fff;padding-top:20px}.slider-infg-mobile_item .infg-mobile_text span{display:block;font-family:"Open Sans",Arial,Helvetica,sans-serif;font-weight:300;font-size:64px;line-height:1.025}.slider-infg-mobile_item .infg-mobile_text b{font-weight:700;font-size:20px;line-height:1.2}}@media (min-width:768px){.infographic-mobile{display:none}.infographic,.slider-infg-nav .slick-current .infg-nav_text--wrap{position:relative}.slider-infg_item{height:600px}.slider-infg_item .container{height:100%;position:relative}.slider-infg-nav{position:absolute;top:0;left:0;width:100%;padding-top:30px;padding-bottom:20px}.slider-infg-nav .slick-cloned{display:none!important}.slider-infg-nav .slick-track{width:auto!important}.slider-infg-nav_item{float:none;min-height:140px}.slider-infg-nav .slick-current .infg-nav_text--wrap:before{content:'';position:absolute;width:100%;top:0;bottom:0;left:-100%;background-color:#ff6400}.slider-infg-nav .slick-current .infg-nav_text{margin-right:20px;background-color:#ff6400;height:140px;position:relative}.slider-infg-nav .slick-current .infg-nav_text:after{content:'';position:absolute;right:-20px;top:0;width:0;height:0;border-top:70px solid transparent;border-left:20px solid #ff6400;border-bottom:70px solid transparent}.slider-infg-nav .infg-nav_icon{float:left;position:relative;z-index:1;margin-left:20px;padding-top:15px}}.slider-infg .infg-img{display:none;float:right;position:absolute;top:0;bottom:0;right:0;margin:auto 0;width:300px}@media (min-width:768px){.slider-infg .infg-img{display:block}}@media (min-width:1024px){.slider-infg .infg-img{width:450px}}@media (min-width:1366px){.slider-infg .infg-img{width:auto}}.slider-infg-nav .infg-nav_text{cursor:pointer;max-width:340px;font-family:"Open Sans",Arial,Helvetica,sans-serif;color:#fff;padding:12px 20px 12px 95px}@media (min-width:1024px){.slider-infg-nav .infg-nav_text{max-width:410px}}.slider-infg-nav .infg-nav_text span{display:block;font-weight:300;font-size:48px;line-height:1.025}@media (min-width:1024px){.slider-infg-nav .infg-nav_text span{font-size:64px}}.slider-infg-nav .infg-nav_text b{font-weight:700;font-size:18px;line-height:1.2}@media (min-width:1024px){.slider-infg-nav .infg-nav_text b{font-size:20px}}@media (min-width:768px){display:none}
/* End */


/* Start:/local/templates/mango_ru/template_styles.css?150110297314238*/
.red-tooltip + .tooltip > .tooltip-inner {
    background-color: #fff;
}

.red-tooltip + .tooltip > .tooltip-arrow {
    border-bottom-color: #fff;
}

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

.nav-duble_list {
    margin-bottom: 0px;
}

.nav-duble {
    padding-bottom: 0;
    margin-bottom: 75px;
}

.nav-inner_item.active > a:after,
.nav-inner_item:hover > a:after
{
    /* ждем серую стрелку */
}

.table tbody th, .table thead th {
    font-family: "PT Sans",Arial,Helvetica,sans-serif;
}

.link-back.f-right {
    font-size: 14px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.header-with-city-select > h1 {
    width: auto;
    float: left;
}

.header-with-city-select .city-select-open {
    font-size: 24px;
    margin-top: 25px;
    margin-left: 10px;
    float: left;
    text-decoration: none;
}

.header-with-city-select .city-select-open > span {
    border-bottom: 1px dashed #2179bd;
}

.header-with-city-select .city-code {
    margin-left: 10px;
    font-size: 24px;
    margin-top: 25px;
    float: left;
}

.margin-v-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.margin-v {
    margin-top: 40px;
    margin-bottom: 40px;
}

.table-align-center td:not(.text-left) {
    text-align: center;
}

.main ol li:before {
    content: '';
}

.support-box a {
    color: #fff;
}

ul.slick-dots li {
    padding-left: 0;
}

ul.slick-dots li::before {
    content: '';
}

.sliderscreen_img img {
    margin: auto;
}

.main .equalizer {
    display: inline-block;
}

@media (max-width: 640px) {
    .product-video_head {
        text-align: center;
    }

    .gread-title, .slider-screen--wrap {
        display: none;
    }

    .slider-top_widetext {
        display: none;
    }

    .content-head .btn {
        float: none;
    }

    .product-video_close {
        right: 9px;
        top: -47px;
    }
}

.main {
    position: relative;
}

.tooltip-inner ul {
    text-align: left;
    margin-left: 15px;
}

.tooltip-inner ul li {
    list-style: circle;
}

body #reformal_tab {
    opacity: 0;
    right: -9999px;
}

textarea {
    width: 100%;
}

.main .btn--lg, .main .btn--md:not(.content-head .btn--md) {
    max-width: 520px;
}

.label {
    padding: 13px 30px 13px 30px;
}

.performance-gen_num {
    white-space: nowrap;
}

.version-hit-icon {
    position: absolute;
    top: -17px;
    right: 8%;
    z-index: 3;
}

@media (max-width: 1024px) {
    .version_desc {
        min-height: 155px;
        margin-bottom: 20px;
    }

    .version-hit-icon {
        right: -10px;
    }
}

@media (max-width: 640px) {
    .product-sticky-panel .btn--sm {
        max-width: 155px;
        height: 27px;
    }

    .content-head .btn {
        margin: 25px 0;
    }

    .crm-top-banner-text {
        margin-bottom: 170px;
    }

    .vats-top-banner-text {
        margin-bottom: 340px;
    }

    .version-hit-icon {
        right: 0;
    }
}

@media (min-width: 480px) and (max-width: 639px) {
    .crm-top-banner-text {
        margin-bottom: 0px;
    }
}

@media (min-width: 640px) and (max-width: 768px) {
    .text-box-collapse h3 {
        font-size: 20px;
    }

    .sliderscreen_img {
        margin-top: 100px;
    }

    .slider-screen_cont .slider-screen_text {
        padding-top: 0;
    }

    .version .version_item {
        width: 320px;
    }

    .version--shop {
        margin-left: 0;
    }
}

.nav-inner_item .nav-dropdown {
    z-index: 3;
}

.news_date {
    white-space: nowrap;
}

.product-video .product-video_trigger {
    width: 68px;
    height: 68px;
    padding: 0;
}

@media (max-width: 1024px) {
    .banner-full_img:not(.right) {
        margin-left: -100px;
        width: 50%;
    }
}

@media (max-width: 768px) {
    .version-dops--wrap {
        display: none;
    }

    .nav_right .nav_item {
        padding-left: 8px;
    }
}

@media (max-width: 767px) {
    .slider-top-wrap {
        display: none;
    }
}

@media (max-width: 768px) {
    .slider-top_widetext {
        font-size: 42px;
    }
}

@media (min-width: 1366px) {
    .slider-top_widetext {
        line-height: 80px;
    }
}

.numbers-mobile_slider .numbers-mobile_item {
    height: 327px;
}

.need-reg_box a {
    color: white;
    text-decoration: none;
}

.basket-mini .order-unit {
    width: 100%;
}

.basket-mini_services .order-unit, .basket-mini_devices .order-unit {
    margin-bottom: 10px;
}

/*.content-head_parent {*/
/*width: 100%;*/
/*}*/

.widget-wrapper {
    z-index: 3;
}

.overflow {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.8;
    background: white;
    z-index: 4;
}

.text-error, .registration .text-error {
    color: red;
}

.has-error input, .has-error textarea, .has-error select {
    border-color: red;
    border-width: 1px;
}

.has-error label {
    color: red;
}

.tariffs_item.slick-active {
    border: 2px solid #91c73d;
}

.services_item {
    margin-bottom: 30px;
}

.services_item p {
    padding-bottom: 0;
}

.numbers-type_head .stiker {
    float: left;
    margin-left: 20px;
}

.slider-top_item:not(.slick-slide) {
    display: none;
}

.slider-top_item:not(.slick-slide):first-child {
    display: block;
}

input[type=text][disabled], select[disabled] {
    opacity: 0.6;
    background-color: #f1f1f1;
}

.registration select {
    width: 100%;
    max-width: 635px;
}

.numbers-mobile_slider {
    min-height: 327px;
}

@media (min-width: 769px) {
    .cart-cont .page-thanks {
        margin-top: 40px;
    }
}

.cart-cont .page-thanks_box {
    top: -40px;
}

.header_callback .callback {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.basket-mini_version .antibum {
    z-index: 1;
}

.order-unit.error {
    border-color: red;
    background: #FFEFEF;
}

.user-panel--basket .nav_item {
    margin-right: 0;
}

.modal-dialog .otstup {
    margin-left: 0px;
}

.modal-dialog .razdel {
    width: 100%;
    margin-left: 0;
}

.nav-inner {
    display: none;
}

.active .nav-inner {
    display: block;
}

.active > .nav-dropdown {
    display: block;
}

.tariffs .table.center-not-first thead th {
    text-align: left;
}

.delivery-price_region {
    margin-bottom: 10px;
}

table.no_border, .table table.no_border tr {
    border: 0;
}

.numbers-carousel .scroll-content .scroll-content-item {
    margin: 24px 15px;
}

.nowrap {
    white-space: nowrap;
}

.h-mid-96-sm-46 {
    height: 96px;
}

@media (max-width: 475px) {
    .h-mid-96-sm-46 {
        height: 46px;
    }
}

.numbers-item > span {
    white-space: nowrap;
}

.back-to-prev-step {
    line-height: 25px;
    height: 25px;
    position: absolute;
    right: 20px;
    top: 17px;
}

.back-to-prev-step--icon {
    color: #b5b5b5;
    padding-right: 8px;
    font-size: 18px;
}

.back-to-prev-step--link {
    color: #949494;
    text-decoration: underline;
    position: relative;
    bottom: 2px;
}

.buy-step-wrap {
    position: relative;
}

.back-to-prev-step--container {
    width: 100%;
    position: relative;
}

@media (max-width: 768px) {
    .back-to-prev-step {
        display: none;
    }
}

@media (max-width: 475px) {
    .back-to-prev-step {
        line-height: 25px;
        position: inherit;
        margin: 0 0 25px 0;
        display: block;
    }

    .back-to-prev-step--container {
        position: inherit;
    }

    .back-to-prev-step--icon {
        font-size: 14px;
    }

    .back-to-prev-step--link {
        font-size: 14px;
    }
}

.hide {
    display: none !important;
}

.user-signin {
    white-space: nowrap;
}

.nav-dropdown-desktop_lcol {
    vertical-align: top;
}

input::-ms-clear {
    display: none;
}

@media (max-width: 639px) {
    .form-delivery .col-xs-1, .form-delivery .col-xs-2, .form-delivery .col-xs-3, .form-delivery .col-xs-4, .form-delivery .col-xs-5, .form-delivery .col-xs-6, .form-delivery .col-xs-7, .form-delivery .col-xs-8, .form-delivery .col-xs-9, .form-delivery .col-xs-10, .form-delivery .col-xs-11, .form-delivery .col-xs-12 {
        float: left;
        position: relative;
    }
}

#select_number_region select {
    min-height: 50px;
}

.widget-wrapper .select-item select {
    min-height: 40px;
}

h3 > .label-special,
.nav a[data-counter]:not([data-counter='0']):after {
    font-family: "PT Sans", Arial, Helvetica, sans-serif;
}

h2,
.support-box,
.advice-box,
.text-fs-24px,
.fs-24,
.size24,
.performance-gen_num {
    font-weight: 100;
}

body.use-integration {
    -webkit-overflow-scrolling: touch !important;
    overflow: auto !important;
    height: 100% !important;
}

.scroll-up {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.scroll-up .container {
    position: relative;
}

.scroll-up span {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 58px;
    height: 58px;
    background: url(/static_files_new/img/up.png) no-repeat 0 0;
    cursor: pointer;
}

.widget-callback-btn {
    top: 25%;
}


@media (max-width: 767px) {
    #reformal_tab img {
        width: 26px;
        top: 70px;
    }
}

.webui-popover {
    z-index: 100002;
}

.webui-popover-inner .close {
    z-index: 10000;
}

@media (max-width: 320px) {
    .widget-callback_recall {
        padding-bottom: 10px;
    }
    .webui-popover.in {
        margin-top: 25px;
    }
}

.font-grey-60 {
    color: #CED7DC;
    font-size: 60px;
    font-weight: 700;
}
.mv-25 .list-line > li {
    padding-bottom: 15px;
}
.mv-25 {
    margin: 25px 0;
}
.compare h3.t-center {
    text-align: center;
}
.list-check-big li.cont-1024 {
    border: 0;
}
.cont-1024 > div {
    max-width: 1110px;
}
.container .fs-20 {
    font-size: 20px;
}

.provider-img {
    margin-left: 20px;
    max-width: 100px;
}

.antibum {
    bottom: 0;
    position: absolute;
    max-width: inherit;
}

.i-dont-want {
    color: white;
    text-decoration: underline;
}
.i-dont-want:hover {
    color: white;
}

@media (max-width: 425px) {
    .product-video .product-video_trigger {
        display: none;
    }
}

.compare-table {
    padding-top: 8px;
}
.compare-table th,
.compare-table td {
    border-left: 5px solid #fff;
    vertical-align: top;
}
.compare-table thead th h4 {
    padding-bottom: 20px;
}
.compare-table thead th:nth-child(3),
.compare-table thead th:nth-child(4),
.compare-table thead th:nth-child(5) {
    border-bottom: 5px solid #a0b1b9 ;
}
.compare-table thead th:nth-child(2) {
    border-bottom: 5px solid #91c73d ;
}
.compare-table tbody td {
    width: 20%;
    padding: 15px 20px;
}
.compare-table tbody td:nth-child(3),
.compare-table tbody td:nth-child(4),
.compare-table tbody td:nth-child(5) {
    background-color: #f4f7f9 ;
    border-bottom: 1px solid #a0b1b9 ;
}
.compare-table tbody td:nth-child(2) {
    background-color: #F4FAEC ;
    border-bottom: 1px solid #91c73d ;
}
.compare-table tbody td:first-child {
    font-style: italic;
    text-align: right;
}

sub.for_cov_users {
    position: absolute;
    left: 29%;
    top: 0;
}

.about-company-text {
    font-size: 18px;
    line-height: 36px;
    padding: 15px 35px 0 0;
}

.about-company-text, .about-company-text h2 {padding-top: 0px;}

@media (min-width: 769px) {
    .about-company .col-md-6 {
        vertical-align: middle;
        display: table-cell;
        float: none;
    }
}

@media (max-width: 1366px) {
    .about-company-text {
        font-size: 16px;
        line-height: 30px;
        padding: 0px 35px 0 0;
    }
}


@media (max-width: 1024px) {
    .about-company-text {
        font-size: 16px;
        line-height: 24px;
        padding: 0px 0px 0px 0;
    }
}


@media (max-width: 768px) {
    .about-company-text {
        font-size: 16px;
        line-height: 24px;
        padding: 0px 0px 35px 0;
    }
}

.about-company {
    margin: 70px 0;
}

.product-sticky-panel--title {
    display: inline-block;
    padding: 3px 0;
}

.product-sticky-panel .btn, .product-sticky-panel .callback {
    margin-top: 2px;
}

div.top-panel-error {
    z-index: 10000;
}

@media (min-width: 1024px) {
    .c-main-banner_button {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .c-main-banner_text {
        padding: 0 20px;
    }
}

.mobile-nav-panel .company-phone {
    margin-top: 15px;
    padding: 1px 5px 1px 1px;
    border: 1px solid #879ca7;
    border-radius: 22px;
}
.mobile-nav-panel .company-phone .company-phone-icon {
    border-radius: 50%;
    background: #879ca7;
    width: 35px;
    height: 35px;
    fill: #fff;
    text-align: center;
    line-height: 35px;
}
.mobile-nav-panel .company-phone .company-phone-icon .icon--phone {
    width: 18px;
    height: 18px;
    fill: #fff;
    margin: 0 0 7px;
    transform: rotate(90deg);
}
.mobile-nav-panel .company-phone .company-phone-number {
    margin-right: 5px;
}

@media (max-width: 400px) {
    .mobile-nav-panel .company-phone {
        margin-top: 16px;
        padding: 1px 3px 1px 1px;
        font-size: 24px;
    }
    .mobile-nav-panel .company-phone .company-phone-icon {
        width: 33px;
        height: 33px;
    }
}

#wrapvk1 {
    overflow: hidden;
    width: 80px;
    height: 30px;
    opacity: 0;
    position: absolute;
    z-index: 101;
}
#wrapvk2 {
    /*margin-left: -10px;*/
    /*margin-top: -90px;*/
}
#vkwidget1_tt, #tt, iframe[vkhidden=no] {
    display: none !important;
}

.list-with-margin li {margin: 10px 0;}
.example-section {}
.example-section-block {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
}
.example-section-block p {margin-top: 0px;}
.example-section-circle-num {
    position: absolute;
    left: 0px;
    top: 0px;
    color: #92c83e;
    font-size: 30px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    border: 2px solid #92c83e;
    border-radius: 50%;
    display: block;
    float: left;
    text-align: center;
}
/* End */
/* /scripts/external/photoswipe/photoswipe.css?14665454154093 */
/* /scripts/external/photoswipe/default-skin/default-skin.css?146654541511609 */
/* /local/templates/mango_ru/css/font.awesome/css/font-awesome.min.css?146835935829063 */
/* /static_files_new/css/plugins/slick.min.css?14647308871714 */
/* /static_files_new/css/plugins/jquery.webui-popover.min.css?14781237306374 */
/* /static_files_new/css/base/base-style.css?1501238476200983 */
/* /static_files_new/css/components/slider-top.min.css?14903720981966 */
/* /static_files_new/css/components/form-login.min.css?146473088792 */
/* /static_files_new/css/components/section-honors.min.css?1464730887239 */
/* /static_files_new/css/components/section-news-home.min.css?1464730887140 */
/* /static_files_new/css/components/collapse-wide.min.css?1464730887258 */
/* /static_files_new/css/components/slider-screen.min.css?14712134601287 */
/* /static_files_new/css/components/modal-compare.min.css?1464783054614 */
/* /static_files_new/css/components/slider-reviews.min.css?14647308871787 */
/* /static_files_new/css/components/widget-callback.css?14998078753660 */
/* /static_files_new/css/pages/page-vats-functions.min.css?149037209850 */
/* /static_files_new/css/pages/page-vats-functions-ivr.min.css?1490372098160 */
/* /static_files_new/css/pages/page-about-all.min.css?14903720981982 */
/* /static_files_new/css/pages/page-about-vats.min.css?1464730887320 */
/* /static_files_new/css/pages/page-vats-functions-army.min.css?14647308874633 */
/* /static_files_new/css/pages/page-vats-functions-krasivye_nomera.min.css?1490372098865 */
/* /static_files_new/css/pages/page-about-cov.min.css?1464730887381 */
/* /static_files_new/css/pages/page-vats-functions-telefonizatsiya.min.css?14903720985683 */
/* /static_files_new/css/components/modal-leadgen.css?14781237302168 */
/* /static_files_new/css/pages/page-search.css?14992903972640 */
/* /local/templates/mango_ru/components/bitrix/search.title/visual/style.css?14979962934674 */
/* /static_files_new/css/components/modal-callback.min.css?1468359358806 */
/* /local/templates/mango_ru/components/bitrix/menu/top_main/style.css?1480539143160 */
/* /yenisite.resizer2/js/fancybox2/jquery.fancybox.css?14229991724387 */
/* /yenisite.resizer2/js/fancybox2/helpers/jquery.fancybox-buttons.css?14229991722727 */
/* /yenisite.resizer2/js/fancybox2/helpers/jquery.fancybox-thumbs.css?1422999172770 */
/* /local/modules/mango.leadgen/css/style.css?1478123730154 */
/* /local/components/mango/constructor.big_banner/templates/vertical/style.css?1470170806179 */
/* /static_files_new/css/components/infographic.min.css?14792405022488 */
/* /local/templates/mango_ru/template_styles.css?150110297314238 */
