@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }
.pika-single { *zoom: 1 }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    *right: 0;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
    *display: inline;
}

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

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}

/*! Flickity v1.2.1
http://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button:hover { background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  filter: alpha(opacity=60); /* IE8 */
  opacity: 0.6;
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30); /* IE8 */
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25); /* IE8 */
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100); /* IE8 */
  opacity: 1;
}
.tooltipster-fall,.tooltipster-grow.tooltipster-show{-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1);-moz-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-ms-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-o-transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-base{display:flex;pointer-events:none;position:absolute}.tooltipster-box{flex:1 1 auto}.tooltipster-content{box-sizing:border-box;max-height:100%;max-width:100%;overflow:auto}.tooltipster-ruler{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;visibility:hidden}.tooltipster-fade{opacity:0;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;-ms-transition-property:opacity;transition-property:opacity}.tooltipster-fade.tooltipster-show{opacity:1}.tooltipster-grow{-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-backface-visibility:hidden}.tooltipster-grow.tooltipster-show{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1);-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-swing{opacity:0;-webkit-transform:rotateZ(4deg);-moz-transform:rotateZ(4deg);-o-transform:rotateZ(4deg);-ms-transform:rotateZ(4deg);transform:rotateZ(4deg);-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform}.tooltipster-swing.tooltipster-show{opacity:1;-webkit-transform:rotateZ(0);-moz-transform:rotateZ(0);-o-transform:rotateZ(0);-ms-transform:rotateZ(0);transform:rotateZ(0);-webkit-transition-timing-function:cubic-bezier(.23,.635,.495,1);-webkit-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-moz-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-ms-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-o-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);transition-timing-function:cubic-bezier(.23,.635,.495,2.4)}.tooltipster-fall{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;-ms-transition-property:top;transition-property:top;-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-fall.tooltipster-initial{top:0!important}.tooltipster-fall.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;top:0!important;opacity:0}.tooltipster-slide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;-ms-transition-property:left;transition-property:left;-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-moz-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-ms-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-o-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-slide.tooltipster-initial{left:-40px!important}.tooltipster-slide.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;left:0!important;opacity:0}@keyframes tooltipster-fading{0%{opacity:0}100%{opacity:1}}.tooltipster-update-fade{animation:tooltipster-fading .4s}@keyframes tooltipster-rotating{25%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}100%{transform:rotate(0)}}.tooltipster-update-rotate{animation:tooltipster-rotating .6s}@keyframes tooltipster-scaling{50%{transform:scale(1.1)}100%{transform:scale(1)}}.tooltipster-update-scale{animation:tooltipster-scaling .6s}.tooltipster-sidetip .tooltipster-box{background:#565656;border:2px solid #000;border-radius:4px}.tooltipster-sidetip.tooltipster-bottom .tooltipster-box{margin-top:8px}.tooltipster-sidetip.tooltipster-left .tooltipster-box{margin-right:8px}.tooltipster-sidetip.tooltipster-right .tooltipster-box{margin-left:8px}.tooltipster-sidetip.tooltipster-top .tooltipster-box{margin-bottom:8px}.tooltipster-sidetip .tooltipster-content{color:#fff;line-height:18px;padding:6px 14px}.tooltipster-sidetip .tooltipster-arrow{overflow:hidden;position:absolute}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow{height:10px;margin-left:-10px;top:0;width:20px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow{height:20px;margin-top:-10px;right:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow{height:20px;margin-top:-10px;left:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow{bottom:0;height:10px;margin-left:-10px;width:20px}.tooltipster-sidetip .tooltipster-arrow-background,.tooltipster-sidetip .tooltipster-arrow-border{height:0;position:absolute;width:0}.tooltipster-sidetip .tooltipster-arrow-background{border:10px solid transparent}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{border-bottom-color:#565656;left:0;top:3px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#565656;left:-3px;top:0}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{border-right-color:#565656;left:3px;top:0}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#565656;left:0;top:-3px}.tooltipster-sidetip .tooltipster-arrow-border{border:10px solid transparent;left:0;top:0}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#000}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border{border-left-color:#000}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border{border-right-color:#000}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{border-top-color:#000}.tooltipster-sidetip .tooltipster-arrow-uncropped{position:relative}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped{top:-10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped{left:-10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border:none;border-radius:5px;background:#fff;box-shadow:0 0 10px 6px rgba(0,0,0,.1)}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-box{margin-top:6px}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-box{margin-right:6px}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-box{margin-left:6px}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-box{margin-bottom:6px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{color:#8d8d8d}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow{height:6px;margin-left:-6px;width:12px}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow,.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow{height:12px;margin-left:0;margin-top:-6px;width:6px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:none}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border:6px solid transparent}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#fff}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#fff}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#fff}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#fff}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-uncropped{top:-6px}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-uncropped{left:-6px}.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #f6f6f6; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }@charset "UTF-8";
/* Base bootstrap */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

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

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

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

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

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

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

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

pre {
  overflow: auto; }

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

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

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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

input {
  line-height: normal; }

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

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

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

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

* {
  box-sizing: border-box; }

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

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

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

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

a {
  color: #337ab7;
  text-decoration: none; }
  a:hover, a:focus {
    color: #23527c;
    text-decoration: underline; }
  a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

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

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

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

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

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

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

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

h1, h2, h3, h4, h5, h6,
.h1,
.user-labels__header, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .user-labels__header small,
  .h1 .small,
  .user-labels__header .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777777; }

h1,
.h1,
.user-labels__header,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
  h1 small,
  h1 .small,
  .h1 small,
  .user-labels__header small,
  .h1 .small,
  .user-labels__header .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

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

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

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

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

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

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

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 21px; } }

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

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

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

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

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

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

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

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

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

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

.text-muted {
  color: #777777; }

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

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

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

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

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

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

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

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

.text-danger {
  color: #a94442; }

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

.bg-primary {
  color: #fff; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }

.dl-horizontal dd:after {
  clear: both; }

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

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

.initialism {
  font-size: 90%; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee; }
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0; }
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777777; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: '\2014   \A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ''; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: '\A0   \2014'; }

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

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

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

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

.col-xs-1 {
  width: 8.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: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.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: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.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: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-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%; } }

.fade {
  opacity: 0;
  transition: opacity 0.15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease; }

.clearfix:before, .user-labels__list:before, .offers__item--banner:before, .bank-card__exp:before, .clearfix:after, .user-labels__list:after, .offers__item--banner:after, .bank-card__exp:after {
  content: " ";
  display: table; }

.clearfix:after, .user-labels__list:after, .offers__item--banner:after, .bank-card__exp:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show, .user--main .user__badges-list .item:hover .tooltip {
  display: block !important; }

.invisible {
  visibility: hidden; }

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

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

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

.visible-xs {
  display: none !important; }

.visible-sm {
  display: none !important; }

.visible-md {
  display: none !important; }

.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

@font-face {
  font-family: 'Fedra';
  src: url("../fonts/fedra/light/FedraLight.woff") format("woff");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Fedra';
  src: url("../fonts/fedra/book/FedraBook.woff") format("woff");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Fedra';
  src: url("../fonts/fedra/medium/FedraMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Fedra';
  src: url("../fonts/fedra/bold/FedraBold.woff") format("woff");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Rouble';
  src: url("../fonts/rouble/rouble.eot");
  src: local("\263A"), url("../fonts/rouble/rouble.woff") format("woff"); }

.rur:after {
  content: '\420';
  display: inline-block;
  font-family: 'Rouble';
  font-size: 0.48em; }

.icon-actions, .advantages__item._actions:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -549px 0px;
  width: 80px;
  height: 80px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-actions, .advantages__item._actions:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-add, .corp-widget__action .corp-widget__item-icon:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -360px -347px;
  width: 35px;
  height: 35px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-add, .corp-widget__action .corp-widget__item-icon:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-back {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -610px -324px;
  width: 18px;
  height: 16px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-back {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-bind {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -603px -531px;
  width: 26px;
  height: 26px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-bind {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-call-in {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -574px -507px;
  width: 24px;
  height: 20px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-call-in {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-call-off {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -599px -507px;
  width: 24px;
  height: 18px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-call-off {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-call-out {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -549px -507px;
  width: 24px;
  height: 20px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-call-out {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-card-security, .bank-card__note--security:after {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -244px -460px;
  width: 237px;
  height: 25px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-card-security, .bank-card__note--security:after {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-close-comment {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -610px -421px;
  width: 10px;
  height: 10px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-close-comment {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-comm {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -610px -408px;
  width: 11px;
  height: 12px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-comm {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-connect-auth, .page-header__user .b-connect__key {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -384px -489px;
  width: 30px;
  height: 30px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-connect-auth, .page-header__user .b-connect__key {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-corp-ava-dark, .corp-widget__btn .corp-widget__item-icon--empty:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -324px -347px;
  width: 35px;
  height: 35px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-corp-ava-dark, .corp-widget__btn .corp-widget__item-icon--empty:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-corp-ava-light, .corp-widget__dd .corp-widget__item-icon--empty:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -288px -347px;
  width: 35px;
  height: 35px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-corp-ava-light, .corp-widget__dd .corp-widget__item-icon--empty:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-cross-active, .workers__delete .icon-cross:hover, .workers__delete .icon-cross:active, .workers__delete .icon-cross:focus, .corp-widget__item-delete:hover, .corp-widget__item-delete:active, .corp-widget__item-delete:focus, .order__items .item .icon-cross:hover, .order__items .item .icon-cross:active, .order__items .item .icon-cross:focus {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -230px -591px;
  width: 20px;
  height: 20px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-cross-active, .workers__delete .icon-cross:hover, .workers__delete .icon-cross:active, .workers__delete .icon-cross:focus, .corp-widget__item-delete:hover, .corp-widget__item-delete:active, .corp-widget__item-delete:focus, .order__items .item .icon-cross:hover, .order__items .item .icon-cross:active, .order__items .item .icon-cross:focus {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-cross-light, .corp-widget__item-delete {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -209px -591px;
  width: 20px;
  height: 20px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-cross-light, .corp-widget__item-delete {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-cross {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -528px -460px;
  width: 20px;
  height: 20px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-cross {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-edit-comment {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -610px -385px;
  width: 12px;
  height: 12px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-edit-comment {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-edit, .user [js-user-status-message]:before, .user__settings-link:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -167px -591px;
  width: 20px;
  height: 20px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-edit, .user [js-user-status-message]:before, .user__settings-link:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-headphones, .user--support .user__photo:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat 0px 0px;
  width: 260px;
  height: 246px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-headphones, .user--support .user__photo:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-intro-license, .intro__items .item--license:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat 0px -389px;
  width: 143px;
  height: 141px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-intro-license, .intro__items .item--license:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-intro-offers, .intro__items .item--offers:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -405px -142px;
  width: 143px;
  height: 141px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-intro-offers, .intro__items .item--offers:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-intro-support, .intro__items .item--support:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -405px 0px;
  width: 143px;
  height: 141px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-intro-support, .intro__items .item--support:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-key, .advantages__item._key:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -549px -162px;
  width: 80px;
  height: 80px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-key, .advantages__item._key:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-license, .advantages__item._license:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -549px -243px;
  width: 80px;
  height: 80px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-license, .advantages__item._license:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-link-academy {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat 0px -531px;
  width: 59px;
  height: 59px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-link-academy {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-link-club {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -360px -531px;
  width: 59px;
  height: 59px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-link-club {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-link-family {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -60px -531px;
  width: 59px;
  height: 59px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-link-family {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-link-forum {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -120px -531px;
  width: 59px;
  height: 59px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-link-forum {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-link-main {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -180px -531px;
  width: 59px;
  height: 59px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-link-main {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-link-partner {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -240px -531px;
  width: 59px;
  height: 59px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-link-partner {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-link-shop {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -300px -531px;
  width: 59px;
  height: 59px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-link-shop {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-nav-close {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -350px -489px;
  width: 33px;
  height: 33px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-nav-close {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-news, .advantages__item._news:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -549px -81px;
  width: 80px;
  height: 80px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-news, .advantages__item._news:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-phone, .phone-number:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -610px -341px;
  width: 14px;
  height: 18px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-phone, .phone-number:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-question {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -507px -460px;
  width: 20px;
  height: 20px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-question {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-rcross, .no-csstransitions .license__content._expanded .license__expand:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -527px -489px;
  width: 20px;
  height: 20px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-rcross, .no-csstransitions .license__content._expanded .license__expand:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-regpartner-add, .regpartner__items .item--add:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -288px -247px;
  width: 99px;
  height: 99px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-regpartner-add, .regpartner__items .item--add:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-regpartner-month, .regpartner__items .item--month:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -144px -389px;
  width: 99px;
  height: 99px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-regpartner-month, .regpartner__items .item--month:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-regpartner-new-license, .regpartner__items .item--new-license:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -261px -142px;
  width: 99px;
  height: 99px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-regpartner-new-license, .regpartner__items .item--new-license:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-regpartner-outsour, .regpartner__items .item--outsour:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -405px -284px;
  width: 99px;
  height: 99px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-regpartner-outsour, .regpartner__items .item--outsour:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-resourse-academy, .eset-resourses-widget-item__icon--academy {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -549px -385px;
  width: 60px;
  height: 60px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-resourse-academy, .eset-resourses-widget-item__icon--academy {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-resourse-club, .eset-resourses-widget-item__icon--club {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -549px -324px;
  width: 60px;
  height: 60px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-resourse-club, .eset-resourses-widget-item__icon--club {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-resourse-eset, .eset-resourses-widget-item__icon--eset {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -483px -389px;
  width: 60px;
  height: 60px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-resourse-eset, .eset-resourses-widget-item__icon--eset {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-resourse-forum, .eset-resourses-widget-item__icon--forum {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -422px -389px;
  width: 60px;
  height: 60px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-resourse-forum, .eset-resourses-widget-item__icon--forum {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-resourse-partner, .eset-resourses-widget-item__icon--partner {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -549px -446px;
  width: 60px;
  height: 60px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-resourse-partner, .eset-resourses-widget-item__icon--partner {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-resourse-shop, .eset-resourses-widget-item__icon--shop {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -361px -389px;
  width: 60px;
  height: 60px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-resourse-shop, .eset-resourses-widget-item__icon--shop {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-resurses-toggle, .eset-resourses-widget__control-icon:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -482px -460px;
  width: 24px;
  height: 24px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-resurses-toggle, .eset-resourses-widget__control-icon:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-rplus, .license__expand:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -188px -591px;
  width: 20px;
  height: 20px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-rplus, .license__expand:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-cl-w, .icon-soc-cl:hover {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -112px -591px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-cl-w, .icon-soc-cl:hover {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-cl {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -491px -531px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-cl {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-fb-big {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -420px -531px;
  width: 42px;
  height: 42px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-fb-big {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-fb-w, .icon-soc-fb:hover {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -547px -531px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-fb-w, .icon-soc-fb:hover {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-fb {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -575px -531px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-fb {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-g-big {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -361px -185px;
  width: 42px;
  height: 42px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-g-big {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-g-w, .icon-soc-g:hover {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -28px -591px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-g-w, .icon-soc-g:hover {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-g {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -56px -591px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-g {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-ok-big {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -361px -142px;
  width: 42px;
  height: 42px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-ok-big {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-ok-w, .icon-soc-ok:hover {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -471px -489px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-ok-w, .icon-soc-ok:hover {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-ok {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -84px -591px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-ok {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-tw-big {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -505px -327px;
  width: 42px;
  height: 42px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-tw-big {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-tw-w, .icon-soc-tw:hover {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -519px -531px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-tw-w, .icon-soc-tw:hover {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-tw {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -499px -489px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-tw {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-vk-big {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -505px -284px;
  width: 42px;
  height: 42px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-vk-big {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-vk-w, .icon-soc-vk:hover {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -443px -489px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-vk-w, .icon-soc-vk:hover {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-vk {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -415px -489px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-vk {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-yt-w, .icon-soc-yt:hover {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat 0px -591px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-yt-w, .icon-soc-yt:hover {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-soc-yt {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -463px -531px;
  width: 27px;
  height: 27px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-soc-yt {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-stars-s, .stars--active .stars__widget {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -144px -489px;
  width: 205px;
  height: 38px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-stars-s, .stars--active .stars__widget {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-sup-check {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat 0px -247px;
  width: 143px;
  height: 141px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-sup-check {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-sup-info {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -261px 0px;
  width: 143px;
  height: 141px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-sup-info {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-sup-sdd {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -144px -247px;
  width: 143px;
  height: 141px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-sup-sdd {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-tick-green, .form__checkbox:after, .saas .item--tick:before, .cloud .item--tick:before {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -610px -360px;
  width: 15px;
  height: 12px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-tick-green, .form__checkbox:after, .saas .item--tick:before, .cloud .item--tick:before {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-unbind {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -140px -591px;
  width: 26px;
  height: 26px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-unbind {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-unview {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -610px -373px;
  width: 15px;
  height: 9px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-unview {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-view, .hideComment .b-comments__bar .view .icon-unview, .hideComment .b-comments__bar .b-comments__view .icon-unview {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -610px -398px;
  width: 15px;
  height: 9px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-view, .hideComment .b-comments__bar .view .icon-unview, .hideComment .b-comments__bar .b-comments__view .icon-unview {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

.icon-visa {
  display: inline-block;
  background: url("../img/sprite.png") no-repeat -244px -389px;
  width: 116px;
  height: 70px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-visa {
      background-size: 629px 618px;
      background-image: url("../img/sprite@2x.png?v=20170628"); } }

body {
  font-family: "Fedra";
  color: #4a565e;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a, .a, .user__change-status {
  text-decoration: none;
  color: #008c97; }
  a:hover, a:active, a:focus, .a:hover, .user__change-status:hover, .a:active, .user__change-status:active, .a:focus, .user__change-status:focus {
    text-decoration: none;
    color: #008c97; }
  body.front a, body.front .a, body.front .user__change-status {
    color: #fff; }
  .modal-body a, .modal-body .a, .modal-body .user__change-status {
    color: #008c97 !important; }

p {
  line-height: 1.46;
  margin: 1em 0; }
  p.smaller {
    font-size: 12px; }
  p.bigger {
    font-size: 26px; }
  p.tiny {
    font-size: 9px; }

h1,
.h1,
.user-labels__header, h2, .h2, h3, .h3, h4, .h4 {
  margin: 15px 0;
  line-height: 1.14;
  color: #424c56;
  text-align: center; }
  body.front h1, body.front .h1, body.front .user-labels__header, body.front h2, body.front .h2, body.front h3, body.front .h3, body.front h4, body.front .h4 {
    color: #fff; }
  .modal-body h1, .modal-body .h1, .modal-body .user-labels__header, .modal-body h2, .modal-body .h2, .modal-body h3, .modal-body .h3, .modal-body h4, .modal-body .h4 {
    color: #424c56 !important; }

h1,
.h1,
.user-labels__header {
  font-family: 'Fedra';
  font-size: 41px;
  font-weight: 300;
  margin: 40px 0; }
  @media (max-width: 500px) {
    h1,
    .h1,
    .user-labels__header {
      font-size: 36px;
      margin: 20px 0; } }
  @media (max-width: 420px) {
    h1,
    .h1,
    .user-labels__header {
      font-size: 36px; } }
  @media (max-width: 370px) {
    h1,
    .h1,
    .user-labels__header {
      font-size: 28px; } }

h2, .h2 {
  font-family: 'Fedra';
  font-size: 32px;
  font-weight: 400; }

h3, .h3 {
  font-size: 22px;
  font-weight: 300; }

h4, .h4 {
  font-size: 12px;
  font-weight: 400; }

ul,
ol {
  padding-left: 1.3em; }

.icon {
  display: inline-block;
  vertical-align: middle; }
  .icon._icon-qu {
    position: absolute;
    right: -40px;
    top: 8px; }

.phone-number {
  font-size: 20px;
  color: #008c97;
  white-space: nowrap; }
  .phone-number:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 5px; }

:focus {
  outline: none; }

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  width: 100%;
  /* Browsers have different default form fonts */
  font-size: 16px;
  font-family: "Fedra"; }

/* Remove the stupid outer glow in Webkit */
input:focus,
select:focus {
  outline: 0; }

/* Box Sizing Reset
-----------------------------------------------*/
/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  box-sizing: border-box; }

/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box; }

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none; }

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto; }

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none; }

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto; }

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top; }

.clearfix:before, .user-labels__list:before, .offers__item--banner:before, .bank-card__exp:before {
  content: "";
  display: table; }

.clearfix:after, .user-labels__list:after, .offers__item--banner:after, .bank-card__exp:after {
  clear: both;
  content: "";
  display: block;
  height: 0; }

.block {
  display: block;
  width: 100%; }

.inline-block {
  display: inline-block; }

.mtb-5 {
  margin-top: 5px;
  margin-bottom: 5px; }

.mtb-30 {
  margin-top: 30px;
  margin-bottom: 30px; }

.mb-0 {
  margin-bottom: 0 !important; }

.mt-0 {
  margin-top: 0 !important; }

.mt-10 {
  margin-top: 10px !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-45 {
  margin-bottom: 45px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mt-50 {
  margin-top: 50px !important; }

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px; }

.ptb-40 {
  padding-top: 40px;
  padding-bottom: 40px; }

.ptb-60 {
  padding-top: 60px;
  padding-bottom: 60px; }

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px; }

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

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

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

.fs-20 {
  font-size: 20px; }

.no-list, .nav-tabs__list, .achievements__list, .settings__list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
  .no-list li, .nav-tabs__list li, .achievements__list li, .settings__list li {
    display: inline-block;
    vertical-align: middle; }

html, body {
  height: 100%; }

body {
  position: relative; }
  body.front {
    background: url(../img/bg.jpg) #0d4954 top center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff; }

img {
  max-width: 100%;
  height: auto; }

.page {
  width: 100%;
  min-height: 100%;
  position: relative;
  margin-bottom: -123px; }
  .front .page {
    margin-bottom: -379px; }
  .page:after {
    content: "";
    display: block; }
  .page--reg {
    background: url(../img/bg-reg.jpg) #113e52 top center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.page, .footer {
  min-width: 320px; }

.footer, .page:after {
  height: 123px; }
  .front .footer, .front .page:after {
    height: 379px; }

#recaptcha_widget {
  overflow: hidden; }

.bg-grey {
  background: #f3f4f2; }

.h-list {
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: -0.35em;
  display: block;
  white-space: nowrap; }
  .h-list li, .h-list li a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal; }

.decorated {
  position: relative; }
  .decorated:before, .decorated:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 50px;
    top: 50%;
    border-bottom: 1px solid; }
  .decorated:before {
    left: 15px; }
  .decorated:after {
    right: 15px; }

@media (max-width: 420px) {
  .decorated:before, .decorated:after {
    display: none; } }

.main-title {
  width: 600px;
  margin: 0 auto;
  text-align: center; }
  @media (max-width: 700px) {
    .main-title {
      width: 100%; } }
  .main-title h1 {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    font-family: "Fedra";
    text-transform: uppercase; }
    @media (min-width: 500px) {
      .main-title h1 {
        font-size: 48px; } }
  .main-title span {
    font-size: 27px;
    line-height: 1.42857; }

@media (max-width: 500px) {
  .main-title span {
    font-size: 18px; } }

.reg-auth {
  width: 500px;
  margin: 70px auto; }
  .reg-auth .btn {
    width: 100%;
    margin: 10px 0; }
  @media (max-width: 600px) {
    .reg-auth {
      width: 100%;
      margin: 30px auto; } }

.form {
  margin-top: 15px;
  margin-bottom: 15px; }
  .form__section {
    position: relative;
    margin: 20px 30px; }
    .form__section:first-child {
      margin-top: 0; }
    .form__section:last-child {
      margin-bottom: 0; }
  .form__row {
    margin-top: 20px;
    margin-bottom: 20px; }
    .form__row .form__section {
      margin-top: 0;
      margin-bottom: 0; }
    .form__row:first-child {
      margin-top: 0; }
  .form__error {
    display: block;
    padding: 0 10px;
    background: #4e0000;
    border-top: 0px solid red;
    text-align: left;
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
    height: 100%;
    line-height: 38px; }
    .form__error ol {
      margin: 5px 0; }
  .form__input-info {
    position: absolute;
    top: 10px;
    right: -30px;
    cursor: pointer; }
  .form--btn {
    width: 216px;
    text-align: center;
    display: inline-block;
    position: relative; }

@media (max-width: 768px) {
  .form__row {
    margin-top: 5px;
    margin-bottom: 5px; } }

textarea.form__text {
  resize: none; }

#form-register_company {
  max-width: 500px;
  margin: 0 auto; }

.form__label {
  line-height: 39px;
  vertical-align: middle; }
  .form__label span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1; }

.form__placeholder {
  position: relative; }
  .form__placeholder:before {
    content: attr(data-placeholder);
    pointer-events: none;
    cursor: text;
    display: block;
    position: absolute;
    left: 15px;
    top: 10px;
    color: #008c97;
    text-align: left;
    line-height: 1.14;
    /*font-family: Georgia, serif;
            font-style: italic;*/
    font-size: 16px; }
    .csstransitions .form__placeholder:before {
      -ms-transform: translate(0);
          transform: translate(0);
      transition: transform .2s, color .2s, font-size .2s; }
    @media (max-width: 480px) {
      .form__placeholder:before {
        font-size: 13px; } }
  .form__placeholder.focused:before {
    color: #008c97;
    font-size: 12px; }
    .front .form__placeholder.focused:before {
      color: #c9c9c9; }
    .csstransitions .form__placeholder.focused:before {
      -ms-transform: translate(-15px, -25px);
          transform: translate(-15px, -25px); }
    .no-csstransitions .form__placeholder.focused:before {
      left: 0;
      top: -15px; }

.form__text {
  background: #ebecea;
  border: 1px solid #e1e1e1;
  padding: 0.6em 0.8em;
  line-height: 1.14;
  color: #000;
  transition: border-color 0.2s; }
  .front .form__text, .modal-body .form__text {
    background: #fff; }
  .form__text:active, .form__text:focus {
    outline: 0;
    border-color: #008c97; }
  .form__text::-webkit-input-placeholder {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 16px;
    color: #008c97;
    opacity: 1; }
  .form__text:-moz-placeholder {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 16px;
    color: #008c97;
    opacity: 1; }
  .form__text--secondary {
    font-family: "Fedra";
    font-size: 12px;
    border-radius: 2px;
    color: #909495;
    font-style: normal;
    line-height: 1.46;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    vertical-align: middle; }
    .form__text--secondary:active, .form__text--secondary:focus {
      border-color: #909495; }
    .form__text--secondary::-webkit-input-placeholder {
      font-family: Georgia, serif;
      font-style: italic;
      font-size: 12px;
      color: #e1e1e1;
      opacity: 1;
      font-style: normal;
      font-family: "Fedra"; }
    .form__text--secondary:-moz-placeholder {
      font-family: Georgia, serif;
      font-style: italic;
      font-size: 12px;
      color: #e1e1e1;
      opacity: 1;
      font-style: normal;
      font-family: "Fedra"; }
  .form__text[readonly], .form__text.readonly, .form__text[disabled], .form__text.disabled {
    display: inline-block;
    width: 100%;
    background: #ccc;
    color: #909495; }
    .form__text[readonly]:active, .form__text[readonly]:focus, .form__text.readonly:active, .form__text.readonly:focus, .form__text[disabled]:active, .form__text[disabled]:focus, .form__text.disabled:active, .form__text.disabled:focus {
      border-color: #e1e1e1; }
    .form__text[readonly]::-webkit-input-placeholder, .form__text.readonly::-webkit-input-placeholder, .form__text[disabled]::-webkit-input-placeholder, .form__text.disabled::-webkit-input-placeholder {
      color: #909495; }
    .form__text[readonly]:-moz-placeholder, .form__text.readonly:-moz-placeholder, .form__text[disabled]:-moz-placeholder, .form__text.disabled:-moz-placeholder {
      color: #909495; }

.form__section.form-error .form__text {
  color: #4a565e; }
  .form__section.form-error .form__text, .form__section.form-error .form__text:active, .form__section.form-error .form__text:focus {
    border-color: #cf4263; }
  .form__section.form-error .form__text::-webkit-input-placeholder {
    color: #4a565e; }
  .form__section.form-error .form__text:-moz-placeholder {
    color: #4a565e; }

.icheck {
  visibility: hidden; }
  .icheck__label {
    display: inline-block;
    text-align: left;
    width: auto;
    margin-left: 5px;
    margin-top: -4px; }

.form__checkbox, .form__radio {
  text-align: left;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  float: left;
  position: relative;
  line-height: 1.2;
  cursor: pointer; }
  .form__checkbox.checked:after, .form__radio.checked:after {
    opacity: 1; }
    .no-opacity .form__checkbox.checked:after, .no-opacity .form__radio.checked:after {
      display: block; }
  .form__checkbox[disabled]:before, .form__checkbox.disabled:before, .form__radio[disabled]:before, .form__radio.disabled:before {
    opacity: 0.4; }
    .no-opacity .form__checkbox[disabled]:before, .no-opacity .form__checkbox.disabled:before, .no-opacity .form__radio[disabled]:before, .no-opacity .form__radio.disabled:before {
      display: block; }
  .form__checkbox[disabled]:after, .form__checkbox.disabled:after, .form__radio[disabled]:after, .form__radio.disabled:after {
    opacity: 0; }
    .no-opacity .form__checkbox[disabled]:after, .no-opacity .form__checkbox.disabled:after, .no-opacity .form__radio[disabled]:after, .no-opacity .form__radio.disabled:after {
      display: none; }
  .form__checkbox[disabled].checked:after, .form__checkbox.disabled.checked:after, .form__radio[disabled].checked:after, .form__radio.disabled.checked:after {
    opacity: 0.4; }
    .no-opacity .form__checkbox[disabled].checked:after, .no-opacity .form__checkbox.disabled.checked:after, .no-opacity .form__radio[disabled].checked:after, .no-opacity .form__radio.disabled.checked:after {
      display: block; }
  .form__checkbox:before, .form__checkbox:after, .form__radio:before, .form__radio:after {
    content: "";
    position: absolute;
    display: block;
    z-index: -1; }
  .form__checkbox:before, .form__radio:before {
    top: 0;
    left: 0;
    border: 1px solid #909495;
    background: #fff;
    width: 20px;
    height: 20px; }
  .form__checkbox:after, .form__radio:after {
    opacity: 0;
    transition: opacity 0.2s; }
    .no-opacity .form__checkbox:after, .no-opacity .form__radio:after {
      display: none; }
  .form__checkbox + .form__error-wr, .form__radio + .form__error-wr {
    position: static; }
    .form__checkbox + .form__error-wr .form__error, .form__radio + .form__error-wr .form__error {
      background: none;
      padding: 5px 0 10px;
      color: red;
      border: none;
      position: static; }

.form__checkbox:after {
  left: 2px;
  top: 3.5px; }

.form__radio:before {
  border-radius: 50%; }

.form__radio:after {
  width: 10px;
  height: 10px;
  background: #87c54b;
  border-radius: 50%;
  left: 5px;
  top: 5px; }

#form-guarantee_user .form__section,
#form-guarantee_company .form__section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start; }

#form-guarantee_user .icheck__label,
#form-guarantee_company .icheck__label {
  -ms-flex-order: 2;
      order: 2;
  -ms-flex: 1;
      flex: 1; }

#form-guarantee_user .form__checkbox,
#form-guarantee_company .form__checkbox {
  float: none; }

#form-guarantee_user .form__checkboxes .form__section.form-error,
#form-guarantee_company .form__checkboxes .form__section.form-error {
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative; }

#form-guarantee_user .form__checkboxes .form__error-wr,
#form-guarantee_company .form__checkboxes .form__error-wr {
  position: absolute;
  max-width: 100%;
  bottom: -20px; }

#form-guarantee_user .form__checkboxes .form__error-wr span,
#form-guarantee_company .form__checkboxes .form__error-wr span {
  height: auto;
  padding: 0 !important;
  line-height: 1;
  white-space: normal; }

.form select {
  visibility: hidden; }

.form__select {
  width: 100%;
  border-radius: 0;
  font-family: Georgia, serif !important;
  font-style: italic;
  font-size: 16px;
  color: #008c97;
  float: none;
  background: #ebecea;
  height: 37px; }
  .front .form__select {
    background: #fff; }
  .modal .form__select {
    background: #fff; }
  @media (max-width: 1200px) {
    .form__select {
      margin-bottom: 20px; } }
  .form__select--last {
    margin-bottom: 0; }
  .form__select .current {
    line-height: 2.2em; }
  .form__select, .form__select:hover, .form__select:active, .form__select:focus, .form__select.open, .form__select .list {
    border-color: #e1e1e1; }
  .form__select .current, .form__select .option {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    text-overflow: ellipsis; }
  .form__select:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: #008c97 transparent transparent transparent;
    -ms-transform: rotate(0);
        transform: rotate(0); }
  .form__select.open:after {
    -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
    -ms-transform-origin: 50% 45%;
        transform-origin: 50% 45%; }
  .form__select .list {
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    background: #ebecea; }
    .front .form__select .list {
      background: #fff; }
    .form__select .list .option {
      background: #ebecea;
      display: block;
      font-size: 0.9em; }
      .front .form__select .list .option {
        background: #fff; }
      .form__select .list .option.selected, .form__select .list .option.focus, .form__select .list .option.focus.selected, .form__select .list .option:hover {
        font-weight: normal;
        background: #008c97;
        color: #fff; }
    .form__select .list:hover .option.selected:not(:hover) {
      background-color: #22aeb9 !important; }

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

.btn {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  border: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: "Fedra";
  padding: 0.6em 1.5em;
  background: transparent;
  transition: background 0.1s, color 0.1s; }
  .btn:hover, .btn:active, .btn:focus, .btn.active {
    outline: none;
    text-decoration: none;
    color: #fff; }
    @media (max-width: 685px) {
      .btn:hover, .btn:active, .btn:focus, .btn.active {
        line-height: 1.33; } }
  .btn--small {
    font-family: "Fedra";
    font-size: 11px;
    border-radius: 2px;
    padding: 0.6em 1.5em; }
  .btn--red {
    background: #c62121;
    color: #fff;
    border-color: #c62121; }
    .btn--red:hover, .btn--red:active, .btn--red:focus, .btn--red.active {
      background: #fff;
      color: #c62121; }
  .btn--green {
    background: #87c54b;
    color: #fff;
    border-color: #87c54b; }
    .btn--green:hover, .btn--green:active, .btn--green:focus, .btn--green.active {
      background: #99cb59; }
  .btn--blue {
    color: #2771a8;
    border-color: #2771a8; }
    .btn--blue:hover, .btn--blue:active, .btn--blue:focus, .btn--blue.active {
      background: #2771a8; }
  .btn--white {
    color: #fff;
    border-color: #fff; }
    .btn--white:hover, .btn--white:active, .btn--white:focus, .btn--white.active {
      background: rgba(255, 255, 255, 0.1); }
  .btn--blue-inv {
    color: #fff;
    border-color: #fff; }
    .btn--blue-inv:hover, .btn--blue-inv:active, .btn--blue-inv:focus, .btn--blue-inv.active {
      background: #007cbc;
      border-color: #007cbc; }
  .btn--torquoise {
    color: #008c97;
    border-color: #008c97; }
    .btn--torquoise:hover, .btn--torquoise:active, .btn--torquoise:focus, .btn--torquoise.active {
      background: #008c97; }
  .btn--graphite {
    color: #4f4f4f;
    border-color: #4f4f4f; }
    .btn--graphite:hover, .btn--graphite:active, .btn--graphite:focus, .btn--graphite.active {
      background: #4f4f4f; }
  .btn--grey {
    color: #4a565e;
    background: #e1e1e1; }
    .btn--grey:hover, .btn--grey:active, .btn--grey:focus, .btn--grey.active {
      background: #909495; }
  .btn--filter {
    color: #b1b0b0;
    background: #ededed;
    border-color: #e5e5e5; }
    .btn--filter:hover, .btn--filter:active, .btn--filter:focus, .btn--filter.active {
      background: #fff;
      color: #424c56;
      border-color: #87c54b; }

.btn[disabled] {
  border: 1px solid #e1e1e1;
  color: #e1e1e1;
  background: #fff; }

.form__file {
  position: relative;
  padding-right: 125px; }
  .form__file-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 110px;
    line-height: 1; }
  .form__file-name {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: Georgia, serif;
    font-style: italic;
    color: #008c97; }
    .form__file-name._filled {
      font-family: "Fedra";
      font-style: normal;
      color: #000; }
  .form__file input[type="file"] {
    display: none; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(30%, 0, 0); }
  100% {
    opacity: 1;
    transform: none; } }

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

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

.has-tooltip {
  cursor: pointer; }

input.has-tooltip {
  cursor: auto; }

.has-tooltip:hover + .form__tooltip, .has-tooltip:focus + .form__tooltip, .form__tooltip.show, .user--main .user__badges-list .item:hover .form__tooltip.tooltip {
  display: block;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-duration: .5s;
  animation-name: fadeInRight; }
  @media (max-width: 768px) {
    .has-tooltip:hover + .form__tooltip, .has-tooltip:focus + .form__tooltip, .form__tooltip.show, .user--main .user__badges-list .item:hover .form__tooltip.tooltip {
      animation-name: fadeInUp; } }

.has-tooltip:hover + .form__tooltip--left, .has-tooltip:focus + .form__tooltip--left, .form__tooltip--left.show, .user--main .user__badges-list .item:hover .form__tooltip--left.tooltip {
  animation-name: fadeInLeft; }
  @media (max-width: 768px) {
    .has-tooltip:hover + .form__tooltip--left, .has-tooltip:focus + .form__tooltip--left, .form__tooltip--left.show, .user--main .user__badges-list .item:hover .form__tooltip--left.tooltip {
      animation-name: fadeInUp; } }

.form__tooltip {
  font-size: 12px;
  padding: 0.9em 1.1em 0.7em;
  border: 1px solid #909495;
  border-radius: 3px;
  display: inline-block;
  width: 180px;
  position: absolute;
  left: 105%;
  top: -6px;
  background: #fff;
  display: none;
  z-index: 10;
  color: #4a565e; }
  .form__tooltip--captcha {
    top: 0;
    left: 80%; }
  .form__tooltip:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    top: 0.9em;
    left: -6px;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    border: 1px solid #909495;
    border-right: 0;
    border-top: 0; }
    .no-csstransitions .form__tooltip:before {
      border: none; }
  .form__tooltip--left {
    left: auto;
    right: 105%; }
    .form__tooltip--left:before {
      left: auto;
      right: -6px;
      border: 1px solid #909495;
      border-left: 0;
      border-bottom: 0; }
  .form__tooltip-top {
    left: 101%;
    top: -261px; }
    .form__tooltip-top::before {
      top: 21em;
      left: 18px;
      -ms-transform: rotate(-46deg);
          transform: rotate(-46deg); }
  @media (max-width: 768px) {
    .form__tooltip {
      top: 135%;
      right: -6px;
      left: auto; }
      .form__tooltip--captcha {
        top: 115%;
        right: 25%; }
      .form__tooltip:before {
        right: 10px;
        left: auto;
        top: -6px;
        -ms-transform: rotate(135deg);
            transform: rotate(135deg); }
      .form__tooltip-top {
        top: 99%;
        right: -46px; } }

.form-meter-container {
  display: none;
  text-align: left; }

.form-score ul {
  margin: 10px 0 5px; }

.form-score li {
  transition: all .25s ease-in;
  border-radius: 50%;
  background-color: #dfe4ee;
  float: left;
  width: 12.5px;
  height: 12.5px;
  margin: 0 5px 0 0; }

.form-score-1 li {
  background-color: #dfe4ee; }

.form-score-1 .form-range-0 {
  background-color: #ef937f; }

.form-score-2 li {
  background-color: #dfe4ee; }

.form-score-2 .form-range-0,
.form-score-2 .form-range-1 {
  background-color: #edbf75; }

.form-score-3 li {
  background-color: #dfe4ee; }

.form-score-3 .form-range-0,
.form-score-3 .form-range-1,
.form-score-3 .form-range-2 {
  background-color: #e1d540; }

.form-score-4 li {
  background-color: #dfe4ee; }

.form-score-4 .form-range-0,
.form-score-4 .form-range-1,
.form-score-4 .form-range-2,
.form-score-4 .form-range-3 {
  background-color: #b3d37e; }

.form-score-5 .form-range-0,
.form-score-5 .form-range-1,
.form-score-5 .form-range-2,
.form-score-5 .form-range-3,
.form-score-5 .form-range-4 {
  background-color: #6fb799; }

.form-verdict .label {
  font-style: italic;
  color: #8c9ec2; }

.form-verdict .label-danger {
  color: #d43c1b; }

.form-verdict .label-warning {
  color: #c8861a; }

.form-verdict .label-info {
  color: #b8ad1d; }

.form-verdict .label-primary {
  color: #759c35; }

.form-verdict .label-success {
  color: #386f58; }

.collapse__subhead {
  color: #4a565e;
  padding: 20px 30px;
  display: block;
  font-size: 20px;
  text-decoration: none;
  position: relative; }
  .collapse__subhead .collapse__ctrl {
    font-size: 15px;
    display: block;
    height: 39px;
    position: absolute;
    line-height: 68px;
    text-align: center;
    right: 20px;
    top: 0;
    color: #4a565e; }
    .collapse__subhead .collapse__ctrl span {
      margin-right: 15px; }
      @media (max-width: 768px) {
        .collapse__subhead .collapse__ctrl span {
          display: none; } }
    .front .collapse__subhead .collapse__ctrl {
      color: #ccc; }
  .collapse__subhead:hover {
    text-decoration: none; }

.collapse__list {
  overflow: hidden;
  margin: 0 0 80px;
  list-style: none;
  padding-left: 0; }
  .collapse__list_item {
    background-color: #f4f5f4;
    border-bottom: 1px solid #939ca3; }
    .collapse__list_item:last-child, .front .collapse__list_item:last-child {
      border-bottom: none; }
    .collapse__list_item._expanded {
      border-bottom: none; }
      .collapse__list_item._expanded .collapse__subhead {
        border-bottom: 1px solid #939ca3; }
  .front .collapse__list_item {
    background: #008c97;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid #000; }
    .front .collapse__list_item._expanded {
      border-bottom: none; }
      .front .collapse__list_item._expanded .collapse__subhead {
        border-bottom: 1px solid #000; }

.collapse__content {
  height: 0;
  overflow: hidden;
  transition: height .2s;
  background: #fff; }
  .front .collapse__content {
    background: #008c97;
    background: rgba(0, 0, 0, 0.2);
    color: #ccc; }
  .collapse__content [js-truncate-content] {
    padding: 20px 30px; }

.nav-tabs {
  text-align: center;
  border-bottom: 1px solid #a9a9aa; }
  .nav-tabs__list {
    font-size: 0; }
  .nav-tabs__item {
    font-size: 16px;
    font-weight: 700;
    width: 33%; }
    @media (max-width: 768px) {
      .nav-tabs__item {
        width: 100% !important; } }
  .nav-tabs__link {
    display: block;
    padding: 0 1.5em 0.8em;
    border-bottom: 5px solid transparent;
    text-align: center;
    text-decoration: none;
    color: #008c97; }
    .nav-tabs__link:hover, .nav-tabs__link:active, .nav-tabs__link:focus {
      color: #008c97;
      border-color: #008c97; }
    .nav-tabs__link.active {
      color: #424c56;
      border-color: #424c56; }
  .nav-tabs--license {
    margin-bottom: 0; }
    @media (max-width: 1200px) {
      .nav-tabs--license .nav-tabs__item {
        font-size: 12px; } }

@media (max-width: 992px) {
  .nav-tabs .container {
    width: auto;
    padding: 0; }
  .nav-tabs__item {
    width: 100%;
    font-size: 12px; }
    .nav-tabs__item:last-child {
      border-bottom: none; }
  .nav-tabs__link {
    padding: 0.8em 1.5em;
    display: block;
    width: 290px;
    margin: 0 auto; } }

.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 {
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }

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

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

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

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
  .modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  .modal-header:before, .modal-header:after {
    content: " ";
    display: table; }
  .modal-header:after {
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

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

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

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0; }
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

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

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.modal {
  min-width: 320px; }
  .modal-backdrop.in {
    opacity: 0.7; }
    .modal-backdrop.in.transparent {
      opacity: 0; }
  .modal-content {
    border-radius: 0; }
  .modal-body {
    background: #f3f4f2;
    color: #4a565e !important;
    padding: 30px; }
    .modal-body--error {
      background: #ffc7ca; }
  .modal-close {
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    z-index: 1000; }
  .modal .form__select .list {
    max-height: 240px;
    overflow-y: auto;
    overflow-x: hidden; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 500px;
    margin: 30px auto; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.timeout {
  padding: 1em 2em;
  background: #ede6aa;
  margin-top: 15px;
  font-size: 13px; }
  .timeout p {
    color: red;
    margin-top: 0.5em;
    margin-bottom: 0; }
  .timeout span {
    font-weight: 500; }

.stars {
  margin-top: 5px; }
  .stars .btn {
    font-size: 15px;
    padding: 0.6em 0.7em; }
  .stars--active {
    position: relative;
    background-color: #dedede;
    width: 205px;
    height: 38px;
    display: inline-block; }
    @media (max-width: 992px) {
      .stars--active {
        display: block; } }
    @media (max-width: 768px) {
      .stars--active {
        margin: 0 auto; } }
    .stars--active .stars__widget {
      position: relative;
      cursor: pointer;
      z-index: 2; }
    .stars--active .stars__fill {
      content: "";
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 0;
      height: 38px;
      background: #f5c512;
      transition: width 0.05s linear; }
    .stars--active .stars__thanks {
      font-size: 12px;
      margin-top: 10px; }

.tooltipster-sidetip.tooltipster-dark .tooltipster-box {
  border: none;
  background: #1b1b1b;
  background: rgba(10, 10, 10, 0.9); }

.tooltipster-sidetip.tooltipster-dark .tooltipster-content {
  font-size: 14px;
  padding: 8px; }
  .tooltipster-sidetip.tooltipster-dark .tooltipster-content a[href] {
    color: #00BBC5;
    text-decoration: none; }
    .tooltipster-sidetip.tooltipster-dark .tooltipster-content a[href]:hover {
      text-decoration: underline; }

.tooltipster-sidetip.tooltipster-dark.tooltipster-bottom .tooltipster-box {
  margin-top: 8px; }

.tooltipster-sidetip.tooltipster-dark.tooltipster-left .tooltipster-box {
  margin-right: 8px; }

.tooltipster-sidetip.tooltipster-dark.tooltipster-right .tooltipster-box {
  margin-left: 8px; }

.tooltipster-sidetip.tooltipster-dark.tooltipster-top .tooltipster-box {
  margin-bottom: 8px; }

.tooltipster-sidetip.tooltipster-dark .tooltipster-arrow {
  height: 8px;
  margin-left: -8px;
  width: 16px; }

.tooltipster-sidetip.tooltipster-dark.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-dark.tooltipster-right .tooltipster-arrow {
  height: 16px;
  margin-left: 0;
  margin-top: -8px;
  width: 8px; }

.tooltipster-sidetip.tooltipster-dark .tooltipster-arrow-background {
  display: none; }

.tooltipster-sidetip.tooltipster-dark .tooltipster-arrow-border {
  border: 8px solid transparent; }

.tooltipster-sidetip.tooltipster-dark.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #1b1b1b;
  border-bottom-color: rgba(10, 10, 10, 0.9); }

.tooltipster-sidetip.tooltipster-dark.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #1b1b1b;
  border-left-color: rgba(10, 10, 10, 0.9); }

.tooltipster-sidetip.tooltipster-dark.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #1b1b1b;
  border-right-color: rgba(10, 10, 10, 0.9); }

.tooltipster-sidetip.tooltipster-dark.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #1b1b1b;
  border-top-color: rgba(10, 10, 10, 0.9); }

.tooltipster-sidetip.tooltipster-dark.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -8px; }

.tooltipster-sidetip.tooltipster-dark.tooltipster-right .tooltipster-arrow-uncropped {
  left: -8px; }

.tbl {
  table-layout: fixed;
  width: 100%; }
  .tbl__head {
    color: #aaa;
    font-size: 12px; }
  .tbl__row, .tbl__head {
    border-bottom: 1px solid #aaa; }
  .tbl__head .tbl__cell {
    padding-left: 1.3em;
    padding-right: 1.3em; }
  .tbl__cell {
    padding: 1em 1em 0.7em; }

.tooltip {
  display: block;
  position: absolute;
  width: 250px;
  height: auto;
  z-index: 50;
  margin: 0;
  padding: 10px 12px;
  background: #f9f9f9;
  color: #4a565e;
  border: 1px solid #e1e1e1;
  line-height: 1.2;
  font-size: 14px;
  transition: transform .2s ease-in, opacity .1s ease-in;
  opacity: 0; }
  .tooltip.show, .user--main .user__badges-list .item:hover .tooltip {
    opacity: 1; }
  .csspointerevents .tooltip {
    pointer-events: none; }
    .csspointerevents .tooltip.show, .csspointerevents .user--main .user__badges-list .item:hover .tooltip, .user--main .user__badges-list .item:hover .csspointerevents .tooltip {
      pointer-events: auto; }
  .no-csspointerevents .tooltip {
    display: none; }
    .no-csspointerevents .tooltip.show, .no-csspointerevents .user--main .user__badges-list .item:hover .tooltip, .user--main .user__badges-list .item:hover .no-csspointerevents .tooltip {
      display: block; }

.tooltip--sm {
  width: 150px; }

.tooltip--lg {
  width: 350px; }

.tooltip--top-center, .tooltip--bottom-center {
  left: 50%;
  -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
  .tooltip--top-center:before, .tooltip--bottom-center:before {
    left: 50%;
    margin-left: -5px; }

.tooltip--top-left:before, .tooltip--bottom-left:before {
  left: 10px; }

.tooltip--top-right:before, .tooltip--bottom-right:before {
  right: 10px; }

.tooltip--top-center, .tooltip--top-left, .tooltip--top-right {
  bottom: calc(100% + 15px); }
  .tooltip--top-center:before, .tooltip--top-left:before, .tooltip--top-right:before {
    bottom: -6px;
    -ms-transform: rotate(135deg);
        transform: rotate(135deg); }

.tooltip--top-center {
  -ms-transform: translate(-50%, -10px);
      transform: translate(-50%, -10px); }
  .tooltip--top-center.show, .user--main .user__badges-list .item:hover .tooltip--top-center.tooltip {
    -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0); }

.tooltip--top-left, .tooltip--top-right {
  -ms-transform: translate(0, -10px);
      transform: translate(0, -10px); }
  .tooltip--top-left.show, .user--main .user__badges-list .item:hover .tooltip--top-left.tooltip, .tooltip--top-right.show, .user--main .user__badges-list .item:hover .tooltip--top-right.tooltip {
    -ms-transform: translate(0, 0);
        transform: translate(0, 0); }

.tooltip--top-left {
  left: 0; }

.tooltip--top-right {
  right: 0; }

.tooltip--bottom-center, .tooltip--bottom-left, .tooltip--bottom-right {
  top: calc(100% + 15px); }
  .tooltip--bottom-center:before, .tooltip--bottom-left:before, .tooltip--bottom-right:before {
    top: -6px;
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }

.tooltip--bottom-center {
  -ms-transform: translate(-50%, 10px);
      transform: translate(-50%, 10px); }
  .tooltip--bottom-center.show, .user--main .user__badges-list .item:hover .tooltip--bottom-center.tooltip {
    -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0); }

.tooltip--bottom-left, .tooltip--bottom-right {
  -ms-transform: translate(0, 10px);
      transform: translate(0, 10px); }
  .tooltip--bottom-left.show, .user--main .user__badges-list .item:hover .tooltip--bottom-left.tooltip, .tooltip--bottom-right.show, .user--main .user__badges-list .item:hover .tooltip--bottom-right.tooltip {
    -ms-transform: translate(0, 0);
        transform: translate(0, 0); }

.tooltip--bottom-left {
  left: 0; }

.tooltip--bottom-right {
  right: 0; }

.tooltip--left-center, .tooltip--right-center {
  top: 50%;
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }
  .tooltip--left-center:before, .tooltip--right-center:before {
    top: 50%;
    margin-top: -5px; }

.tooltip--left-top:before, .tooltip--right-top:before {
  top: 10px; }

.tooltip--left-bottom:before, .tooltip--right-bottom:before {
  bottom: 10px; }

.tooltip--left-center, .tooltip--left-top, .tooltip--left-bottom {
  right: calc(100% + 15px); }
  .tooltip--left-center:before, .tooltip--left-top:before, .tooltip--left-bottom:before {
    right: -6px;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg); }

.tooltip--left-center {
  -ms-transform: translate(-10px, -50%);
      transform: translate(-10px, -50%); }
  .tooltip--left-center.show, .user--main .user__badges-list .item:hover .tooltip--left-center.tooltip {
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%); }

.tooltip--left-top, .tooltip--left-bottom {
  -ms-transform: translate(-10px, 0);
      transform: translate(-10px, 0); }
  .tooltip--left-top.show, .user--main .user__badges-list .item:hover .tooltip--left-top.tooltip, .tooltip--left-bottom.show, .user--main .user__badges-list .item:hover .tooltip--left-bottom.tooltip {
    -ms-transform: translate(0, 0);
        transform: translate(0, 0); }

.tooltip--left-top {
  top: 0; }

.tooltip--left-bottom {
  bottom: 0; }

.tooltip--right-center, .tooltip--right-top, .tooltip--right-bottom {
  left: calc(100% + 15px); }
  .tooltip--right-center:before, .tooltip--right-top:before, .tooltip--right-bottom:before {
    left: -6px;
    -ms-transform: rotate(-135deg);
        transform: rotate(-135deg); }

.tooltip--right-center {
  -ms-transform: translate(10px, -50%);
      transform: translate(10px, -50%); }
  .tooltip--right-center.show, .user--main .user__badges-list .item:hover .tooltip--right-center.tooltip {
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%); }

.tooltip--right-top, .tooltip--right-bottom {
  -ms-transform: translate(10px, 0);
      transform: translate(10px, 0); }
  .tooltip--right-top.show, .user--main .user__badges-list .item:hover .tooltip--right-top.tooltip, .tooltip--right-bottom.show, .user--main .user__badges-list .item:hover .tooltip--right-bottom.tooltip {
    -ms-transform: translate(0, 0);
        transform: translate(0, 0); }

.tooltip--right-top {
  top: 0; }

.tooltip--right-bottom {
  bottom: 0; }

.tooltip:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid #e1e1e1;
  border-left: none;
  border-bottom: none;
  background: #f9f9f9; }

.tooltip--white {
  background: #fff; }
  .tooltip--white:before {
    background: #fff; }

/*
.tooltip {
    &--left {
        &-top {
            @include tooltip-left-top();
        }

        &-bottom {
            @include tooltip-left-bottom();
        }

        &-center {
            @include tooltip-left-center();
        }
    }

    &--right {
        &-top {
            @include tooltip-right-top();
        }

        &-bottom {
            @include tooltip-right-bottom();
        }

        &-center {
            @include tooltip-right-center();
        }
    }

    &--top {
        &-left {
            @include tooltip-top-left();
        }

        &-right {
            @include tooltip-top-right();
        }

        &-center {
            @include tooltip-top-center();
        }
    }

    &--bottom {
        &-left {
            @include tooltip-bottom-left();
        }

        &-right {
            @include tooltip-bottom-right();
        }

        &-center {
            @include tooltip-bottom-center();
        }
    }
}
*/
.page-header {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal; }
  .page-header[data-sticky='true'] .page-header__middle {
    position: fixed; }
  .page-header__user {
    margin-left: 30px; }
  .page-header__action {
    height: 48px;
    text-decoration: none;
    color: inherit; }
    .page-header__action-text, .page-header__action-icon {
      display: inline-block;
      line-height: 18px; }
    .page-header__action-text {
      padding-right: 7px;
      padding-left: 7px; }
  .page-header__logo {
    text-decoration: none;
    font-size: 0; }
    .page-header__logo-text {
      position: relative;
      top: -8px;
      color: #fff;
      font-size: 19px;
      margin-left: 15px; }
  .page-header-left, .page-header-right {
    position: absolute;
    top: 0;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-align: center;
        align-items: center; }
  .page-header-left {
    left: 30px;
    font-size: 11px; }
  .page-header-right {
    right: 15px; }
    @media (min-width: 768px) {
      .page-header-right {
        right: 30px; } }
  .page-header__top {
    font-weight: 500;
    position: relative;
    height: 48px;
    color: #fff;
    background-color: #57778c;
    display: none; }
    @media (min-width: 768px) {
      .page-header__top {
        display: block; } }
    .page-header__top .page-header__action {
      font-size: 14px;
      display: -ms-flexbox;
      display: flex;
      color: #fff;
      -ms-flex-align: center;
          align-items: center; }
      .page-header__top .page-header__action:not(:last-of-type) {
        margin-right: 22px; }
      .page-header__top .page-header__action:hover {
        text-decoration: underline; }
  .page-header__middle {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding-right: 15px;
    padding-left: 15px;
    transition: background-color 0.2s ease-out;
    color: #c5c5c5;
    background-color: #3b3b3b; }
    @media (min-width: 768px) {
      .page-header__middle {
        padding-right: 30px;
        padding-left: 30px; } }
    .page-header__middle:hover {
      background-color: #222; }
    .page-header__middle-left {
      left: 0;
      width: 100%;
      padding-left: 15px; }
      @media (min-width: 768px) {
        .page-header__middle-left {
          padding-left: 30px; } }
  .page-header-menu {
    box-sizing: border-box;
    display: none; }
    @media (min-width: 992px) {
      .page-header-menu {
        display: block; } }
    .page-header-menu:hover .page-header-menu__submenu {
      transition-delay: 0.15s; }
    .page-header-menu:hover .page-header-menu__triangle {
      transition-delay: 0.1s; }
      .page-header-menu:hover .page-header-menu__triangle:after {
        transition-delay: 0s; }
    .page-header-menu__list {
      display: -ms-flexbox;
      display: flex;
      padding-left: 35px;
      list-style: none;
      white-space: nowrap;
      margin: 0;
      counter-reset: listNumbering; }
    .page-header-menu__item {
      counter-increment: listNumbering;
      z-index: 2; }
      .page-header-menu__item:hover .page-header-menu__submenu, .page-header-menu__item[data-open='true'] .page-header-menu__submenu {
        height: 56px;
        transition-delay: 0s;
        opacity: 1; }
      .page-header-menu__item:hover .page-header-menu__link, .page-header-menu__item[data-open='true'] .page-header-menu__link {
        color: #fff; }
      .page-header-menu__item:hover .page-header-menu__triangle, .page-header-menu__item[data-open='true'] .page-header-menu__triangle {
        transition-delay: 0s;
        opacity: 1; }
        .page-header-menu__item:hover .page-header-menu__triangle:after, .page-header-menu__item[data-open='true'] .page-header-menu__triangle:after {
          bottom: -2px;
          transition-delay: 0s; }
    .page-header-menu__link {
      font-size: 18px;
      line-height: 80px;
      display: inline-block;
      padding: 0 15px;
      white-space: nowrap;
      text-decoration: none;
      color: #c5c5c5; }
      .page-header-menu__link:hover, .page-header-menu__link:active, .page-header-menu__link:focus {
        color: #fff; }
    .page-header-menu__triangle {
      position: relative;
      transition: opacity 0.2s 0.3s;
      opacity: 0; }
      .page-header-menu__triangle:after {
        position: absolute;
        bottom: -8px;
        left: 50%;
        width: 0;
        height: 0;
        margin: 0 0 0 -16px;
        content: '';
        transition: bottom 0.2s 0.3s;
        border-width: 0 16px 11px;
        border-style: solid;
        border-color: transparent transparent #f4f5f4 transparent; }
    .page-header-menu__submenu {
      font-weight: 400;
      position: absolute;
      right: 0;
      left: 0;
      overflow: hidden;
      height: 0;
      padding-left: 142px;
      transition: opacity 0.15s 0.5s, height 0.15s 0.5s;
      opacity: 0;
      background-color: #f4f5f4;
      box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.26);
      will-change: height; }
    .page-header-menu__sublist {
      display: -ms-flexbox;
      display: flex;
      height: 100%;
      -ms-flex-align: center;
          align-items: center;
      list-style: none;
      padding: 0;
      margin: 0;
      counter-reset: listNumbering; }
    .page-header-menu__subitem {
      counter-increment: listNumbering; }
    .page-header-menu__sublink {
      line-height: 55px;
      display: inline-block;
      padding: 0 17px;
      text-decoration: none;
      text-align: center;
      font-size: 16px;
      color: #424d56;
      box-sizing: border-box;
      box-shadow: inset 0 0 0 0 transparent;
      transition: box-shadow 0.15s ease-out; }
      @media (max-width: 1200px) {
        .page-header-menu__sublink {
          padding-left: 12px;
          padding-right: 12px; } }
      .page-header-menu__sublink span {
        line-height: 1.2;
        display: inline-block;
        vertical-align: middle;
        margin-top: -3px; }
      .page-header-menu__sublink:hover, .page-header-menu__sublink:active, .page-header-menu__sublink:focus, .page-header-menu__sublink--current {
        box-shadow: inset 0 -6px 0 0 #272f35;
        color: #424d56; }
  .page-header--static-submenu {
    padding-bottom: 55px; }
    .page-header--static-submenu .page-header-menu__item--current {
      z-index: 1; }
      .page-header--static-submenu .page-header-menu__item--current .page-header-menu__submenu {
        height: 56px;
        opacity: 1; }
      .page-header--static-submenu .page-header-menu__item--current .page-header-menu__triangle {
        transition-delay: 0s;
        opacity: 1; }
        .page-header--static-submenu .page-header-menu__item--current .page-header-menu__triangle:after {
          bottom: -2px;
          transition-delay: 0s; }

.sidebar {
  top: 0;
  position: fixed;
  z-index: 1000;
  width: 100%;
  min-width: 320px;
  height: 100vh;
  margin-left: 100%;
  overflow: auto;
  transition: transform 0.3s ease-out, visibility 0s ease-out, width 0s ease-out;
  transform: translate3d(-100%, 0, 0);
  background: #4a5257;
  padding-bottom: 20px; }
  @media (min-width: 768px) {
    .sidebar {
      width: 320px;
      transform: translate3d(-320px, 0, 0); } }
  .sidebar[data-visible='false'] {
    visibility: hidden;
    width: 0;
    transition: transform 0.3s ease-out, visibility 0s 0.3s ease-out, width 0s 0.3s ease-out;
    transform: translate3d(0, 0, 0); }
  .sidebar__item {
    border-bottom: 1px solid #393c3e; }
    .sidebar__item--enter {
      background-color: #56778c; }
      .sidebar__item--enter .sidebar__nav-link {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center; }
        .sidebar__item--enter .sidebar__nav-link svg {
          margin-right: 5px; }
    .sidebar__item--current {
      background-color: #384046; }
      .sidebar__item--current.sidebar__item--enter {
        background-color: #56778c; }
      .sidebar__item--current .sidebar__submenu {
        display: block; }
      .sidebar__item--current .sidebar__nav-link--arrow:after {
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    .sidebar__item--mini {
      border-bottom: none; }
  .sidebar__nav-sublink {
    padding-left: 40px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    line-height: 40px;
    display: block; }
    .sidebar__nav-sublink:hover, .sidebar__nav-sublink:active, .sidebar__nav-sublink:focus, .sidebar__nav-sublink--current {
      color: #fff;
      background: #4a5257;
      text-decoration: none; }
  .sidebar__nav-link {
    font-size: 26px;
    line-height: 1;
    position: relative;
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: #fff; }
    .sidebar__nav-link:hover, .sidebar__nav-link:active, .sidebar__nav-link:focus {
      color: #fff;
      text-decoration: none; }
    .sidebar__nav-link--arrow:after {
      position: absolute;
      display: block;
      content: '';
      width: 0;
      height: 0;
      border-width: 8px 8px 0;
      border-color: #fff transparent transparent transparent;
      right: 20px;
      top: 50%;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      border-style: solid;
      transition: transform 0.2s ease-out;
      -ms-transform-origin: center 2px;
          transform-origin: center 2px; }
    .sidebar__nav-link--mini {
      font-size: 18px;
      padding: 18px 20px; }
  .sidebar__submenu {
    padding-bottom: 10px;
    display: none; }
  .sidebar__close {
    position: absolute;
    z-index: 100;
    top: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    border: 3px solid #fff;
    border-radius: 50%; }
    .sidebar__close:before, .sidebar__close:after {
      position: absolute;
      top: 50%;
      left: 50%;
      content: '';
      transition: background-color 0.2s ease-out;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      border-radius: 4px;
      background-color: #fff; }
    .sidebar__close:before {
      width: 3px;
      height: 24px; }
    .sidebar__close:after {
      width: 24px;
      height: 3px; }
  .sidebar__link {
    position: relative;
    right: -12px;
    display: block;
    padding: 12px; }
    @media (min-width: 992px) {
      .sidebar__link {
        display: none; } }
  .sidebar__top {
    position: relative;
    height: 80px;
    padding: 20px;
    background-color: #262f35; }
  .sidebar__tint {
    position: absolute;
    z-index: 300;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: visible;
    margin: auto;
    cursor: pointer;
    transition: opacity 0.3s ease-out;
    opacity: 1;
    background-color: #4a5257; }
    .sidebar__tint[data-visible='false'] {
      z-index: -1;
      visibility: hidden;
      opacity: 0; }
    @media (min-width: 768px) {
      .sidebar__tint {
        background-color: rgba(0, 0, 0, 0.5); } }

.icon-logo {
  width: 85px;
  height: 35px;
  fill: #fff; }

.icon-menu {
  width: 34px;
  height: 25px;
  fill: #fff; }

.page-header {
  z-index: 100;
  position: relative;
  margin: 0;
  padding: 0;
  border: none; }
  @media (min-width: 992px) {
    .page-header--static-submenu {
      padding-bottom: 55px; } }
  .front .page-header__middle {
    position: relative !important; }
  .front .page-header__top, .front .page-header__middle {
    color: #ffffff;
    background: transparent; }
  .front .page-header__top {
    border-bottom: 1px solid #ffffff; }
  .page-header__logo-text {
    font-weight: 700; }
  .page-header__middle-wrap {
    position: relative;
    height: 80px; }
  .page-header__resourses {
    display: none;
    margin-left: 30px; }
    @media (min-width: 992px) {
      .page-header__resourses {
        display: block; } }
  .page-header__user .b-connect__user, .page-header__user .b-connect__link a {
    font-family: "Fedra";
    font-size: 14px;
    font-weight: 500;
    color: #fff; }
    .page-header__user .b-connect__user:hover, .page-header__user .b-connect__user:active, .page-header__user .b-connect__user:focus, .page-header__user .b-connect__link a:hover, .page-header__user .b-connect__link a:active, .page-header__user .b-connect__link a:focus {
      color: #fff; }
    .page-header__user .b-connect__user:after, .page-header__user .b-connect__link a:after {
      border-top-color: #fff; }
      .page-header__user .b-connect__user:after:hover, .page-header__user .b-connect__user:after:active, .page-header__user .b-connect__user:after:focus, .page-header__user .b-connect__link a:after:hover, .page-header__user .b-connect__link a:after:active, .page-header__user .b-connect__link a:after:focus {
        border-top-color: #fff; }
  .page-header__user .b-connect__hint:before, .page-header__user .b-connect__hint:after {
    left: 65px; }
  .page-header__user .b-connect__hint_auth:before, .page-header__user .b-connect__hint_auth:after {
    left: 80%; }
  .page-header__user .b-connect__hint_wrapp {
    box-sizing: content-box; }
    .page-header__user .b-connect__hint_wrapp * {
      box-sizing: inherit; }
  .page-header__user .b-connect__hint_text h4 {
    color: #277ab3; }
  .page-header__user .b-connect__btn--white {
    color: #4e5660; }
  .page-header__user .b-connect__key {
    background-position-x: -384px !important; }

.page-header-menu__submenu {
  padding-left: 257px; }

.page-header-menu__item--current .page-header-menu__submenu {
  height: 56px;
  transition-delay: 0s;
  opacity: 1; }

.page-header-menu__item--current .page-header-menu__link {
  color: #fff; }

.page-header-menu__item--current .page-header-menu__triangle {
  transition-delay: 0s;
  opacity: 1; }
  .page-header-menu__item--current .page-header-menu__triangle:after {
    bottom: -2px;
    transition-delay: 0s; }

.page-header-menu__item:not(.page-header-menu__item--current):hover .page-header-menu__submenu, .page-header-menu__item:not(.page-header-menu__item--current)[data-open='true'] .page-header-menu__submenu {
  height: 0;
  transition: opacity 0.15s 0.5s, height 0.15s 0.5s;
  opacity: 0; }

.page-header-menu__item:not(.page-header-menu__item--current):hover .page-header-menu__link, .page-header-menu__item:not(.page-header-menu__item--current)[data-open='true'] .page-header-menu__link {
  color: #c5c5c5; }

.page-header-menu__item:not(.page-header-menu__item--current):hover .page-header-menu__triangle, .page-header-menu__item:not(.page-header-menu__item--current)[data-open='true'] .page-header-menu__triangle {
  transition: opacity 0.2s 0.3s;
  opacity: 0; }
  .page-header-menu__item:not(.page-header-menu__item--current):hover .page-header-menu__triangle:after, .page-header-menu__item:not(.page-header-menu__item--current)[data-open='true'] .page-header-menu__triangle:after {
    bottom: -8px;
    transition: opacity 0.15s 0.5s, height 0.15s 0.5s; }

.footer {
  font-size: 12px;
  color: #fff;
  font-family: Segoe UI, Arial, Helvetica, sans-serif; }
  .footer .menu-icon {
    display: none !important; }
  .footer__content {
    background: #313940;
    padding: 25px 0; }
    .footer__content .container {
      position: relative; }
  .footer__soc {
    margin-bottom: 15px; }
    .footer__soc li {
      font-size: 0;
      padding: 0 5px; }
    .footer__soc a {
      display: inline-block;
      font-size: 0;
      border-radius: 50%;
      transition: background-color 0.2s; }
  .footer__logo, .footer__soc {
    position: absolute;
    top: 0; }
  .footer__logo {
    left: 15px; }
  .footer__soc {
    right: 15px; }
    .footer__soc a {
      background-color: #fff; }
  .footer__text {
    color: #9599a0; }
  .footer .nav, .footer__text {
    width: 100%;
    padding-left: 135px;
    padding-right: 270px; }
  .footer .nav {
    margin-bottom: 5px;
    padding-left: 135px; }
    .footer .nav li {
      position: relative;
      padding: 0 7px; }
      .footer .nav li:first-child {
        padding-left: 0; }
      .footer .nav li:last-child:after {
        display: none; }
    .footer .nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 400; }
      .footer .nav a:hover {
        text-decoration: underline; }

.icon-soc-cl:hover {
  background-color: #007e89; }

.icon-soc-ok:hover {
  background-color: #faa61a; }

.icon-soc-vk:hover {
  background-color: #4371a0; }

.icon-soc-fb:hover {
  background-color: #2a598a; }

.icon-soc-tw:hover {
  background-color: #4fc4f6; }

.icon-soc-g:hover {
  background-color: #d94e37; }

.icon-soc-yt:hover {
  background-color: #d21919; }

@media (max-width: 768px) {
  .footer {
    text-align: center; }
    .footer__soc, .footer .nav {
      width: 100%;
      padding: 0; }
    .footer__soc {
      right: auto;
      position: relative; }
    .footer .nav {
      margin: 20px 0; }
    .footer .wrapper {
      max-width: 500px;
      margin: 0 auto;
      position: relative; }
    .footer__text {
      width: auto;
      text-align: left;
      padding: 0;
      margin: 0;
      padding-left: 20px;
      margin-left: 100px;
      border-left: 1px solid #e7e8e9; }
    .footer__logo {
      left: 0; } }

@media (max-width: 360px) {
  .footer {
    font-size: 10px; }
    .footer__logo {
      position: static; }
    .footer__text {
      margin: 15px 0;
      padding-left: 0;
      text-align: center;
      border: none; } }

.advantages {
  padding-left: 0;
  margin: 50px auto 0;
  list-style: none; }
  .advantages__item {
    text-align: center;
    margin-bottom: 50px; }
    .advantages__item:before {
      content: "";
      display: inline-block; }
  .advantages .title {
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0; }
  .advantages .text {
    color: #70d1dc; }
    @media (max-width: 992px) {
      .advantages .text {
        padding: 0 35px; } }

@media (max-width: 500px) {
  .advantages__item {
    width: 100%;
    margin-bottom: 30px; }
  .advantages .title, .advantages .text {
    margin: 5px 0; } }

.links {
  font-family: "Fedra";
  padding: 50px 0;
  background: #242b31;
  text-align: center;
  color: #70d1dc; }
  .front .links {
    background: #007b86;
    background: rgba(0, 0, 0, 0.4); }
  .links .title {
    font-size: 18px;
    margin-bottom: 2em;
    font-weight: 400; }
  .links__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0; }
  .links .icon {
    position: relative;
    display: inline-block; }
    .opacity .links .icon:before {
      content: "";
      position: absolute;
      width: 59px;
      height: 59px;
      top: 0;
      left: 0;
      border-radius: 50%;
      background: #fff;
      opacity: 0;
      transition: opacity .2s; }
  .links__item {
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 100px; }
    .links__item a {
      text-decoration: none;
      display: inline-block;
      color: #70d1dc;
      transition: color .2s; }
      .links__item a:hover, .links__item a:active, .links__item a:focus {
        color: #ffffff; }
        .links__item a:hover .icon:before, .links__item a:active .icon:before, .links__item a:focus .icon:before {
          opacity: 0.3; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  width: 35px;
  top: 55%;
  background: transparent;
  cursor: pointer;
  /* vertically center */
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  .flickity-prev-next-button.next {
    right: -28px; }
  .flickity-prev-next-button.previous {
    left: -28px; }

.flickity-prev-next-button:hover {
  background: transparent; }

.flickity-prev-next-button .arrow {
  fill: #fff; }

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #fff; }

@media (max-width: 768px) {
  .links .container {
    padding-left: 30px;
    padding-right: 30px; }
  .links__item {
    width: 25%; } }

@media (max-width: 500px) {
  .links__item {
    width: 33%; } }

.auth {
  width: 400px;
  margin: 30px auto 50px;
  text-align: center; }
  .auth__soc {
    margin: 2em 0; }
    .auth__soc li {
      padding: 0 5px; }
  .auth__resend {
    width: 305px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    min-height: 140px; }
  .auth__footer {
    color: #c9c9c9; }
  .auth__submit {
    width: 216px; }
  .auth .icon-question {
    position: absolute;
    top: 0;
    right: 0; }
  .auth__form .icheck__label {
    max-width: 85%; }

@media (max-width: 500px) {
  .auth {
    width: 100%; }
    .auth .btn[type="submit"] {
      display: block;
      width: 100%; } }

.icon {
  border-radius: 50%; }
  .icon-soc-vk-big {
    background-color: #5070a0; }
    .icon-soc-vk-big:hover, .icon-soc-vk-big:active, .icon-soc-vk-big:focus {
      background-color: #6181b1; }
  .icon-soc-fb-big {
    background-color: #2a598a; }
    .icon-soc-fb-big:hover, .icon-soc-fb-big:active, .icon-soc-fb-big:focus {
      background-color: #3b6a9b; }
  .icon-soc-tw-big {
    background-color: #4fc4f6; }
    .icon-soc-tw-big:hover, .icon-soc-tw-big:active, .icon-soc-tw-big:focus {
      background-color: #60d5ff; }
  .icon-soc-g-big {
    background-color: #d94e37; }
    .icon-soc-g-big:hover, .icon-soc-g-big:active, .icon-soc-g-big:focus {
      background-color: #ea5f48; }
  .icon-soc-ok-big {
    background-color: #faa61a; }
    .icon-soc-ok-big:hover, .icon-soc-ok-big:active, .icon-soc-ok-big:focus {
      background-color: #ffb72b; }

.user {
  margin-top: 50px;
  margin-bottom: 50px; }
  .user--person {
    margin-top: 0; }
  .user label.user__photo-wrapper {
    cursor: pointer;
    display: block; }
  .user__photo {
    margin-bottom: 30px;
    position: relative; }
    .user__photo-wrapper {
      width: 216px;
      height: 216px;
      overflow: hidden;
      border-radius: 50%; }
      @media (max-width: 768px) {
        .user__photo-wrapper {
          display: inline-block; } }
      .user__photo-wrapper img {
        max-width: none;
        width: auto;
        position: relative;
        height: 100%; }
        .csstransforms .user__photo-wrapper img {
          left: 50%;
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
    .user__photo input {
      width: 1px;
      height: 1px;
      position: absolute;
      z-index: -1; }
    .user__photo:hover .icon-edit, .user__photo:hover .user [js-user-status-message]:before, .user .user__photo:hover [js-user-status-message]:before, .user__photo:hover .user__settings-link:before {
      opacity: 1; }
    .user__photo-edit {
      position: absolute;
      top: 0;
      right: 15px;
      width: 20px;
      height: 20px;
      cursor: pointer;
      z-index: 3; }
      .user__photo-edit .icon-edit, .user__photo-edit .user [js-user-status-message]:before, .user .user__photo-edit [js-user-status-message]:before, .user__photo-edit .user__settings-link:before {
        opacity: 0; }
    @media (max-width: 768px) {
      .user__photo {
        width: 210px;
        margin: 0 auto 40px;
        padding: 0; } }
  .user__header {
    position: relative;
    border-bottom: 1px solid #a9a9aa; }
    @media (max-width: 768px) {
      .user__header {
        text-align: center; } }
    @media (min-width: 992px) {
      .user__header--manager {
        padding-bottom: 30px; }
        .user__header--manager + .user__info {
          margin-top: 15px; } }
  .user__name {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-align: left; }
    @media (max-width: 992px) {
      .user__name {
        margin-bottom: 8px; } }
    @media (max-width: 768px) {
      .user__name {
        text-align: center; } }
  .user__cur-status {
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px; }
    .user__cur-status.empty {
      margin-top: 5px;
      margin-bottom: 5px; }
  .user [js-user-status-message]:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px; }
  .user [js-user-status-message].editing:before {
    display: none; }
  .user__change-status {
    font-size: 12px;
    cursor: pointer; }
  .user__info p {
    margin-bottom: 0; }
  .user__info b {
    font-weight: 500; }
  .user__info .user {
    margin-top: 1em; }
    @media (max-width: 768px) {
      .user__info .user {
        margin-top: 50px; } }
  .user__settings-link {
    position: absolute;
    top: 5px;
    right: 15px; }
    .user__settings-link, .user__settings-link:hover, .user__settings-link:active, .user__settings-link:focus {
      color: #008c97; }
    .user__settings-link:before {
      content: "";
      display: inline-block;
      margin-right: 5px;
      vertical-align: middle; }
    @media (max-width: 992px) {
      .user__settings-link {
        position: static;
        font-size: 14px;
        display: block;
        margin-bottom: 15px; } }
  .user__contact-link {
    position: absolute;
    top: -5px;
    right: 0; }
    @media (max-width: 992px) {
      .user__contact-link {
        position: static;
        font-size: 14px;
        display: inline-block;
        margin-bottom: 15px; } }
  .user--support .user__photo {
    position: relative;
    z-index: 1; }
    @media (max-width: 768px) {
      .user--support .user__photo {
        left: 15px; } }
    .user--support .user__photo:before {
      content: "";
      position: absolute;
      top: -15px;
      left: -22px;
      z-index: 2; }
      @media (max-width: 768px) {
        .user--support .user__photo:before {
          left: -40px; } }
  .user--support .user__settings-link {
    position: static;
    font-size: 12px;
    margin-bottom: 15px; }
  .user--support .user__signature {
    color: #00a7cd;
    margin-bottom: 30px;
    margin-top: 5px;
    font-weight: 700; }
  .user--support .user__rating {
    text-align: right;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 20px;
    color: #008c97; }
    .user--support .user__rating-top {
      cursor: pointer; }
    .user--support .user__rating-val {
      font-weight: 400;
      color: #008c97;
      font-size: 68px;
      line-height: 1;
      display: inline-block;
      margin-left: 15px; }
    @media (max-width: 992px) {
      .user--support .user__rating {
        text-align: left; } }
    @media (max-width: 768px) {
      .user--support .user__rating {
        text-align: center; } }
  .user--main .user__header {
    padding-bottom: 15px;
    margin-bottom: 15px; }
  .user--main .user__badges h1 {
    font-size: 16px;
    text-align: left;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: normal; }
  .user--main .user__badges-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-bottom: 15px;
    white-space: nowrap;
    letter-spacing: 15px; }
    .user--main .user__badges-list .item {
      display: inline-block;
      vertical-align: top;
      position: relative; }
      .user--main .user__badges-list .item__icon {
        width: 60px;
        height: 60px; }
      .user--main .user__badges-list .item:last-child .tooltip {
        top: calc(100% + 15px);
        right: 0;
        bottom: auto;
        left: auto;
        -ms-transform: translate(0, 10px);
            transform: translate(0, 10px); }
        .user--main .user__badges-list .item:last-child .tooltip:before {
          top: -6px;
          right: 23px;
          bottom: auto;
          left: auto;
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
          margin-top: 0;
          margin-left: 0; }
        .user--main .user__badges-list .item:last-child .tooltip.show, .user--main .user__badges-list .item:last-child .item:hover .tooltip, .user--main .user__badges-list .item:hover .item:last-child .tooltip {
          -ms-transform: translate(0, 0) !important;
              transform: translate(0, 0) !important; }
      .user--main .user__badges-list .item:last-child:hover .tooltip {
        -ms-transform: none;
            transform: none; }
      @media (max-width: 1199px) {
        .user--main .user__badges-list .item:nth-child(9) .tooltip {
          top: calc(100% + 15px);
          right: 0;
          bottom: auto;
          left: auto;
          -ms-transform: translate(0, 10px);
              transform: translate(0, 10px); }
          .user--main .user__badges-list .item:nth-child(9) .tooltip:before {
            top: -6px;
            right: 23px;
            bottom: auto;
            left: auto;
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
            margin-top: 0;
            margin-left: 0; }
          .user--main .user__badges-list .item:nth-child(9) .tooltip.show, .user--main .user__badges-list .item:nth-child(9) .item:hover .tooltip, .user--main .user__badges-list .item:hover .item:nth-child(9) .tooltip {
            -ms-transform: translate(0, 0) !important;
                transform: translate(0, 0) !important; }
        .user--main .user__badges-list .item:nth-child(9):hover .tooltip {
          -ms-transform: none;
              transform: none; } }
      @media (max-width: 991px) {
        .user--main .user__badges-list .item:nth-child(6) .tooltip {
          top: calc(100% + 15px);
          right: 0;
          bottom: auto;
          left: auto;
          -ms-transform: translate(0, 10px);
              transform: translate(0, 10px); }
          .user--main .user__badges-list .item:nth-child(6) .tooltip:before {
            top: -6px;
            right: 23px;
            bottom: auto;
            left: auto;
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
            margin-top: 0;
            margin-left: 0; }
          .user--main .user__badges-list .item:nth-child(6) .tooltip.show, .user--main .user__badges-list .item:nth-child(6) .item:hover .tooltip, .user--main .user__badges-list .item:hover .item:nth-child(6) .tooltip {
            -ms-transform: translate(0, 0) !important;
                transform: translate(0, 0) !important; }
        .user--main .user__badges-list .item:nth-child(6):hover .tooltip {
          -ms-transform: none;
              transform: none; } }
      @media (max-width: 767px) {
        .user--main .user__badges-list .item:nth-child(4) .tooltip {
          top: calc(100% + 15px);
          right: 0;
          bottom: auto;
          left: auto;
          -ms-transform: translate(0, 10px);
              transform: translate(0, 10px); }
          .user--main .user__badges-list .item:nth-child(4) .tooltip:before {
            top: -6px;
            right: 23px;
            bottom: auto;
            left: auto;
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
            margin-top: 0;
            margin-left: 0; }
          .user--main .user__badges-list .item:nth-child(4) .tooltip.show, .user--main .user__badges-list .item:nth-child(4) .item:hover .tooltip, .user--main .user__badges-list .item:hover .item:nth-child(4) .tooltip {
            -ms-transform: translate(0, 0) !important;
                transform: translate(0, 0) !important; }
        .user--main .user__badges-list .item:nth-child(4):hover .tooltip {
          -ms-transform: none;
              transform: none; }
        .user--main .user__badges-list .item:first-child .tooltip {
          top: calc(100% + 15px);
          right: auto;
          bottom: auto;
          left: 0;
          -ms-transform: translate(0, 10px);
              transform: translate(0, 10px); }
          .user--main .user__badges-list .item:first-child .tooltip:before {
            top: -6px;
            right: auto;
            bottom: auto;
            left: 20px;
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
            margin-top: 0;
            margin-left: 0; }
          .user--main .user__badges-list .item:first-child .tooltip.show, .user--main .user__badges-list .item:first-child .item:hover .tooltip, .user--main .user__badges-list .item:hover .item:first-child .tooltip {
            -ms-transform: translate(0, 0) !important;
                transform: translate(0, 0) !important; }
        .user--main .user__badges-list .item:first-child:hover .tooltip {
          -ms-transform: none;
              transform: none; } }
      .user--main .user__badges-list .item .tooltip {
        letter-spacing: normal;
        white-space: normal; }
        .user--main .user__badges-list .item .tooltip strong {
          display: block;
          margin-bottom: 5px; }
        .no-csspointerevents .user--main .user__badges-list .item .tooltip {
          display: none; }
        .csspointerevents .user--main .user__badges-list .item .tooltip {
          pointer-events: none; }
      .no-csspointerevents .user--main .user__badges-list .item:hover .tooltip {
        display: block; }
      .csspointerevents .user--main .user__badges-list .item:hover .tooltip {
        pointer-events: all; }
  @media (max-width: 767px) {
    .user--main .user__badges, .user--main .user__badges h1 {
      text-align: center; } }

.user-sm {
  position: relative;
  margin: 40px 0;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #a9a9aa; }
  .user-sm .user__settings-link {
    position: static;
    display: block; }
  .user-sm__header {
    display: inline-block;
    vertical-align: middle; }
  .user-sm__name {
    margin: 0;
    font-size: 28px;
    font-weight: 700; }
  .user-sm__photo {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    top: -4px; }
    @media (max-width: 768px) {
      .user-sm__photo {
        display: block;
        margin: 0; }
        .user-sm__photo-wrapper {
          margin: 0 auto; } }
    .user-sm__photo-wrapper {
      width: 50px;
      height: 50px;
      overflow: hidden;
      border-radius: 50%; }
      .user-sm__photo-wrapper img {
        max-width: none;
        width: auto;
        position: relative;
        height: 100%; }
        .csstransforms .user-sm__photo-wrapper img {
          left: 50%;
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }

.nav-tabs {
  text-align: center;
  border-bottom: 1px solid #a9a9aa; }
  .nav-tabs__wrap {
    position: relative; }
    .nav-tabs__wrap:before, .nav-tabs__wrap:after {
      content: "";
      position: absolute;
      top: 0;
      width: 15px;
      height: 100%;
      display: none; }
    .nav-tabs__wrap:after {
      right: 0;
      background: linear-gradient(to left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 70%); }
  .nav-tabs__list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0; }
  .nav-tabs__item {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    width: 33%; }
  .nav-tabs__link {
    display: block;
    padding: 1.2em 1.5em 0.8em;
    border-bottom: 5px solid transparent;
    text-align: center;
    text-decoration: none;
    color: #089ba7; }
    .nav-tabs__link:hover, .nav-tabs__link:active, .nav-tabs__link:focus {
      color: #089ba7;
      border-color: #089ba7;
      text-decoration: none; }
    .nav-tabs__link.active, .nav-tabs__item.active .nav-tabs__link {
      color: #333;
      border-color: #333; }
  .nav-tabs__content {
    display: none; }
    .nav-tabs__content.active {
      display: block; }

.achievements {
  margin-bottom: 50px;
  text-align: center; }
  .achievements .title {
    margin-bottom: 30px; }
  .achievements__item {
    padding: 0 8px;
    margin-bottom: 30px; }
  .achievements__show .btn {
    width: 200px; }

.user-labels {
  padding: 0 0 50px;
  background-color: #f3f4f2; }
  .user-labels--full {
    background: none; }
  .user-labels__header {
    text-align: left;
    font-size: 20px;
    line-height: 50px;
    border-bottom: 1px solid #dbdee1;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 40px; }
  .user-labels__container {
    overflow: hidden;
    height: 220px;
    transition: height 0.5s; }
  .user-labels__list {
    margin-left: -10px;
    margin-right: -10px; }
  .user-labels__item {
    float: left;
    width: 14%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 30px;
    text-align: center; }
    @media (max-width: 1199px) {
      .user-labels__item {
        width: 16%; } }
    @media (max-width: 991px) {
      .user-labels__item {
        width: 25%; } }
    @media (max-width: 767px) {
      .user-labels__item {
        width: 25%; } }
    @media (max-width: 567px) {
      .user-labels__item {
        width: 33%; } }
    @media (max-width: 479px) {
      .user-labels__item {
        width: 50%; } }
    @media (max-width: 320px) {
      .user-labels__item {
        width: 100%; } }

.tooltipster-base {
  box-shadow: none; }

.user-labels-item {
  min-height: 190px; }
  .user-labels-item.js-tooltipster {
    cursor: pointer; }
  .user-labels-item__icon {
    margin-bottom: 10px; }
  .user-labels-item__title {
    font-size: 15px; }
    @media (max-width: 768px) {
      .user-labels-item__title {
        font-size: 18px; } }
  .user-labels-item__caption {
    position: relative;
    font-size: 15px;
    min-height: 120px;
    padding: 10px 14px !important; }
    .tooltipster-content .user-labels-item__caption {
      display: block !important; }
    .user-labels-item__caption .user-labels-item__icon {
      position: relative;
      top: 9px;
      left: -5px;
      float: left;
      margin-bottom: 15px;
      margin-right: 15px; }
    .user-labels-item__caption .user-labels-item__text {
      padding: 15px 0;
      color: #333; }
      .user-labels-item__caption .user-labels-item__text .highlight {
        color: #00bbc5; }
  .user-labels-item--not-active .user-labels-item__title {
    opacity: .5; }

@media (max-width: 768px) {
  .nav-tabs--achievings .nav-tabs__item {
    width: 100%; } }

.settings {
  position: relative;
  margin-top: 50px; }
  .settings__message {
    padding: 10px 15px;
    border: 1px solid #87c54b; }
  .settings__wrapper {
    min-height: 350px; }
  .settings__nav {
    position: absolute;
    left: 0;
    padding: 10px 80px 50px 15px;
    top: 15px;
    border-right: 1px solid #777; }
  .settings__item {
    display: block !important;
    padding: 0.5em 0; }
    .settings__item:hover .settings__link, .settings__item:active .settings__link, .settings__item:focus .settings__link, .settings__item.active .settings__link {
      text-decoration: underline;
      color: #4a565e; }
  .settings__link {
    color: #008c97;
    text-decoration: none; }
    .settings__link:hover, .settings__link:active, .settings__link.active, .settings__link:focus {
      text-decoration: underline;
      color: #4a565e; }
  .settings__form {
    margin-top: 0;
    margin-bottom: 50px; }
    .settings__form .btn[type="submit"] {
      width: 200px; }
      @media (max-width: 768px) {
        .settings__form .btn[type="submit"] {
          margin-top: 25px;
          width: 100%; } }
    .settings__form .settings__subscribe .form__checkbox {
      position: absolute;
      top: 0;
      left: 15px; }
    .settings__form .settings__subscribe .icheck__label {
      padding-left: 25px;
      padding-top: 3px; }
    .settings__form--devices .settings__devices div, .settings__form--devices .settings__os div {
      margin-bottom: 10px;
      white-space: nowrap; }
    @media (max-width: 768px) {
      .settings__form--devices .form__section {
        margin-top: 0 !important; } }
  .settings__confirm-phone {
    margin-bottom: 0; }
    .settings__confirm-phone a {
      color: #2771a8; }
  .settings__photo {
    margin-right: 10px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%; }
    .settings__photo img {
      max-width: none;
      width: auto;
      position: relative;
      left: 50%;
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
      height: 100%; }
    .settings__photo span {
      display: block;
      position: relative;
      height: 100%;
      width: 100%;
      background-size: cover;
      background-position: center; }
    .settings__photo, .settings__photo-input {
      display: inline-block;
      vertical-align: middle; }
    .settings__photo-input input {
      position: absolute;
      width: 1px;
      height: 1px;
      z-index: -1; }
    .settings__photo-input label {
      cursor: pointer;
      color: #2771a8;
      text-decoration: underline; }
      .settings__photo-input label:hover {
        text-decoration: none; }

@media (max-width: 1175px) {
  .form__tooltip--settings.show, .user--main .user__badges-list .item:hover .form__tooltip--settings.tooltip {
    animation-name: fadeInUp; } }

.form__tooltip--settings {
  top: 0;
  left: 100%;
  width: 250px; }
  @media (max-width: 1175px) {
    .form__tooltip--settings {
      top: 135%;
      right: 15px;
      left: auto; }
      .form__tooltip--settings:before {
        right: 10px;
        left: auto;
        top: -6px;
        -ms-transform: rotate(135deg);
            transform: rotate(135deg); } }

.pika-label {
  position: relative; }
  .pika-label:hover {
    color: #ff8000; }
    .pika-label:hover select {
      color: #000; }

.autofill__list {
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 1000;
  list-style: none;
  background: #fff; }
  .autofill__list li {
    padding: 0.4em 1em;
    border: 1px solid #00717f;
    border-top: none;
    cursor: pointer; }
    .autofill__list li:hover {
      background: #00717f;
      color: #fff; }

.autofill__load {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  position: relative; }

@media (max-width: 1200px) {
  .settings__nav {
    padding: 10px 20px 50px 0; } }

@media (max-width: 992px) {
  .settings__wrapper {
    padding-top: 60px; }
  .settings__nav {
    position: static;
    margin-bottom: 30px;
    padding: 0;
    border-right: none; }
  .settings__item {
    padding: 0;
    margin-bottom: 5px;
    background: #f4f5f4; }
    .settings__item:hover .settings__link, .settings__item:active .settings__link, .settings__item.active .settings__link, .settings__item:focus .settings__link {
      text-decoration: none;
      color: #008c97; }
    .settings__item.active .settings__link:after {
      content: "-"; }
    .settings__item.active {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      padding-left: 15px;
      padding-right: 15px;
      background: transparent; }
      .settings__item.active .settings__link {
        background: #f4f5f4; }
  .settings__link {
    padding: 0.7em 1em;
    display: block;
    position: relative; }
    .settings__link:after {
      content: "+";
      font-size: 26px;
      float: right;
      line-height: 0.8; } }

.soc-net {
  margin-bottom: 50px; }
  .soc-net__item {
    position: relative;
    border-bottom: 1px solid #d5d5d6;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 130px; }
    .soc-net__item:last-child {
      border-bottom: none; }
    .soc-net__item .icon {
      margin-right: 5px; }
    .soc-net__item .title {
      display: inline-block;
      vertical-align: middle; }
  .soc-net__photo {
    width: 42px;
    height: 42px; }
  .soc-net__ctrl {
    display: block;
    position: absolute;
    right: 0;
    top: 25px;
    text-decoration: none;
    color: #4a565e;
    font-weight: 400; }
    .soc-net__ctrl--unbind, .soc-net__ctrl--unbind:hover, .soc-net__ctrl--unbind:active, .soc-net__ctrl--unbind:focus {
      color: #cf4263; }
    .soc-net__ctrl .icon {
      margin-right: 0;
      margin-left: 15px; }
    .soc-net__ctrl:hover, .soc-net__ctrl:active, .soc-net__ctrl:focus {
      text-decoration: underline; }

.license {
  margin-top: 50px;
  margin-bottom: 100px; }
  .license__inactive {
    padding: 60px 0 40px; }
  .license__table {
    padding: 0 15px;
    margin-bottom: 30px; }
    .license__table .row {
      background: #ebecea;
      padding-top: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #999; }
      .license__table .row:last-child {
        border-bottom: none; }
      @media (max-width: 768px) {
        .license__table .row {
          text-align: center;
          line-height: 2; } }
    .license__table-cell {
      margin-bottom: 10px; }
    .license__table-title {
      font-size: 20px;
      text-align: left;
      font-weight: bold;
      padding-top: 10px; }
  .license__additional {
    border-top: 1px solid rgba(66, 77, 86, 0.3);
    margin-top: 5px; }
    .license__additional-item {
      background-color: #f4f5f4;
      padding: 1px 20px; }
      .license__additional-item ul {
        padding: 0; }
    .license__additional-products {
      background-color: #f4f5f4;
      padding: 1px 20px; }
      .license__additional-products ul {
        padding: 0;
        margin-bottom: 0; }
  .license__item {
    padding-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #a4acb2; }
    .license__item:last-child {
      border-bottom: 0; }
  .license__img {
    margin-bottom: 20px; }
    @media (max-width: 768px) {
      .license__img {
        text-align: center; } }
  .license__expand {
    font-weight: 400;
    color: #4a565e;
    text-decoration: none;
    vertical-align: middle; }
    .license__expand:active, .license__expand:focus, .license__expand:hover {
      text-decoration: underline;
      color: #4a565e; }
    .license__expand:before {
      content: "";
      position: relative;
      top: 3px;
      display: inline-block;
      margin-right: 5px; }
      .csstransitions .license__expand:before {
        transition: transform 0.5s; }
  .license__hidden .license__container {
    height: 0;
    overflow: hidden;
    transition: height 0.2s; }
  .license__hidden .license__item {
    border-top: 1px solid #a4acb2; }
  .license__content {
    margin-bottom: 40px; }
    .license__content .title {
      margin-top: 0;
      margin-bottom: 15px;
      color: #008c97;
      font-size: 26px;
      font-weight: 700;
      text-align: left; }
      @media (max-width: 768px) {
        .license__content .title {
          text-align: center; } }
    .csstransitions .license__content._expanded .license__expand:before {
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg); }
  .license__data {
    height: auto;
    overflow: hidden;
    margin-bottom: 20px;
    transition: height 0.2s; }
    .license__data p {
      margin: 5px 0; }
  .license__download, .license__restore {
    line-height: 37px;
    margin-bottom: 15px;
    text-align: right; }
    .license__download a, .license__restore a {
      position: relative; }
    .license__download span, .license__restore span {
      display: inline-block;
      line-height: 1; }
      .license__download span:active, .license__download span:focus, .license__download span:hover, .license__restore span:active, .license__restore span:focus, .license__restore span:hover {
        color: #008c97;
        text-decoration: none; }
    @media (max-width: 1200px) {
      .license__download, .license__restore {
        text-align: center;
        line-height: normal; } }
  .license__btns .btn {
    width: 100%;
    padding: 0.6em;
    display: block; }
  .license__btns .item {
    position: relative;
    margin-bottom: 15px; }
  @media (max-width: 768px) {
    .license__btns .form__tooltip {
      position: static;
      display: block;
      width: 100%;
      border: none;
      margin: 5px 0;
      padding: 0;
      opacity: 1;
      transform: translate3d(0, 0, 0);
      transition: none; }
      .license__btns .form__tooltip:before {
        display: none; } }
  .license__generator {
    background: #00508c;
    padding: 35px 0;
    text-align: center; }
    .license__generator .text {
      font-size: 26px;
      margin-top: 0;
      margin-bottom: 20px;
      color: #fff; }
    .license__generator .form__select {
      margin-bottom: 30px;
      background: #fff; }
      @media (max-width: 768px) {
        .license__generator .form__select {
          margin-bottom: 18px; } }
  .license__request-test {
    background: #00508c;
    padding: 50px 0;
    text-align: center;
    color: #fff;
    position: relative;
    font-size: 20px;
    margin-bottom: 50px; }
    .license__request-test:after {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 26px 30px 0 30px;
      border-color: #004f8c transparent transparent transparent;
      position: absolute;
      bottom: -26px;
      left: 50%;
      margin-left: -30px; }
  .license__title {
    font-size: 26px;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 3px solid #008c97; }

.license-request-form .form__select .list {
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden; }

@keyframes button-translateX {
  from {
    transform: translateX(-500px); }
  to {
    transform: translateX(0px); } }

@keyframes button-translateX-rev {
  from {
    transform: translateX(500px); }
  to {
    transform: translateX(0px); } }

.b-comments .button-remove {
  animation: .4s ease-out 0s alternate button-translateX; }

.b-comments .button-close {
  animation: .4s ease-out 0s alternate button-translateX-rev; }

.b-comments {
  margin-bottom: 30px; }
  .b-comments .u-hide {
    display: none; }
  .b-comments .u-show {
    display: block; }
  .b-comments__quote {
    color: #939393;
    font-size: 14px;
    display: block; }
  .b-comments a {
    text-decoration: underline; }
  .b-comments .btn {
    white-space: normal; }
  .b-comments .icon {
    border-radius: 0; }

.b-comments__head {
  padding: 0 0 21px 0; }

.b-comments__title {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  float: left; }

.b-comments__count {
  float: right;
  font-size: 12px;
  color: #bdbdbd;
  margin: 7px 15px 0 0;
  padding: 0 0 0 23px;
  position: relative; }
  .b-comments__count .icon {
    position: absolute;
    left: 0;
    top: 3px; }

.b-comments__add {
  float: right; }
  .b-comments__add .btn {
    float: left; }

.b-comments__item {
  padding: 11px 0;
  position: relative;
  min-height: 50px; }

.b-comments__list {
  border-bottom: 1px solid #DFE3E7; }

.b-comments__item-branch {
  min-height: 57px; }
  .b-comments__item-branch .b-comments__ava {
    height: 53px;
    width: 53px; }
  .b-comments__item-branch .b-comments__reply-link {
    margin: 0 0 0 75px; }

.b-comments__ava {
  background-image: url("../img/default-user-photo.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  font-size: 0;
  line-height: 0;
  height: 43px;
  width: 43px;
  border: 2px solid #B3BECA;
  border-radius: 50%; }
  .b-comments__ava img {
    border-radius: 50%;
    height: 100%;
    width: 100%; }
  .b-comments__ava a {
    display: block;
    width: 100%;
    height: 100%; }
  .b-comments__ava:hover {
    border-color: #2771a8; }

.b-comments__ava-img img {
  border-radius: 50%; }

.b-comments__top {
  line-height: 21px;
  padding: 0 0 5px 0; }

.b-comments__name {
  font: bold 16px/21px; }
  .b-comments__name a:hover {
    color: #2771a8;
    text-decoration: none; }

.b-comments__date {
  font-size: 12px;
  color: #939393;
  margin: 0 0 0 17px; }

.b-comments__link {
  margin: 0 0 0 10px; }
  .b-comments__link a {
    color: #B2B2B2;
    font-size: 17px; }
    .b-comments__link a:hover {
      color: #2771a8;
      text-decoration: none; }

.hideComment {
  background-color: #d4d4d4; }
  .rgba .hideComment {
    background-color: rgba(147, 147, 147, 0.4); }
  .hideComment .b-comments__text {
    font-style: italic;
    opacity: .2; }
  .hideComment .b-comments__reply {
    display: none; }
  .hideComment .b-comments__bar .b-comments__edit {
    display: none; }
  .hideComment .b-comments__bar .edit {
    display: none; }

.hideComment.b-reply__group .b-comments__view, .hideComment.b-reply__group .view {
  display: none; }

.b-comments__bar {
  position: absolute;
  top: 12px; }
  .b-comments__bar a {
    font-size: 13px;
    color: #b2b2b2;
    display: inline-block;
    margin: 0 0 0 5px; }
    .b-comments__bar a:hover {
      color: #2771a8;
      text-decoration: none; }
  .b-comments__bar .e-active {
    color: #2771a8; }
  .b-comments__bar i {
    position: relative; }
  .b-comments__bar span {
    margin: 0 0 0 3px; }

.b-comment__remove > div {
  left: 0;
  margin: -21px 0 0;
  position: absolute;
  right: 0;
  top: 50%; }

.b-comments-loading {
  display: none;
  border-radius: 3px;
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100; }
  .b-comments-loading i {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -15px; }

.b-comment__remove {
  background-color: #d2d2d2;
  border-radius: 3px;
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  text-align: center;
  overflow: hidden; }
  .rgba .b-comment__remove {
    background-color: rgba(202, 202, 202, 0.9); }
  .b-comment__remove h2 {
    color: white;
    font-weight: normal;
    font-size: 20px;
    margin: 0 0 5px; }
  .b-comment__remove button {
    display: inline-block;
    font-size: 15px;
    margin: 0 15px 10px;
    position: relative; }

.b-comments__text {
  width: 100%;
  font-size: 16px;
  line-height: 22px; }

.b-comments__text-in img, .b-comments__text-in iframe {
  max-width: 100%; }

.b-comments__reply {
  color: #586672;
  font-size: 15px;
  line-height: 20px; }
  .b-comments__reply-link {
    color: #586672;
    text-decoration: underline;
    display: block;
    float: left;
    margin: 0 0 0 60px; }
    .b-comments__reply-link:hover {
      text-decoration: none; }
  .b-comments__reply:after {
    content: '';
    display: table;
    clear: both; }

.b-comments__item-branch {
  border-top: 1px solid #dfe3e7;
  margin-left: 0; }

.b-comments__nocomments {
  border-top: 1px solid #dfe3e7;
  padding: 15px 0 15px 0;
  font-size: 16px;
  line-height: 22px; }

.b-comments__action {
  padding: 10px 0 0 0; }
  .b-comments__action .button-green,
  .b-comments__action .btn {
    float: left; }

.b-comments__like {
  display: block;
  float: right;
  position: relative;
  text-align: right;
  line-height: 1;
  padding: 0 5px 0 0;
  text-decoration: none;
  font-size: 0;
  line-height: 17px; }
  .b-comments__like-img, .b-comments__like-active-img {
    right: 0;
    top: 0;
    width: 12px;
    transition: all 0.4s ease;
    -ms-transform: scale(1);
        transform: scale(1);
    display: inline-block;
    line-height: 0;
    vertical-align: bottom;
    fill: #b1b1b1; }
    .b-comments__like-img-svg, .b-comments__like-active-img-svg {
      width: 100%;
      height: 12px; }
  .b-comments__like-count {
    vertical-align: bottom;
    display: inline-block;
    margin: 0 0 0 5px;
    line-height: 0.75;
    overflow: visible;
    font-size: 13px; }
  .b-comments__like:hover, .b-comments__like:active {
    text-decoration: none; }
    .b-comments__like:hover .b-comments__like-img, .b-comments__like:active .b-comments__like-img {
      fill: #F6A90F; }
  .b-comments__like.b-comments__dislike .b-comments__like-img, .b-comments__like.b-comments__many_likes .b-comments__like-img {
    fill: #F6A90F; }
  .b-comments__like .b-comments__many_likes:hover .b-comments__like-img, .b-comments__like .b-comments__many_likes:active .b-comments__like-img {
    fill: #b1b1b1; }
  .b-comments__like .b-comments__many_likes:hover .b-comments__like-img, .b-comments__like .b-comments__many_likes:active .b-comments__like-img {
    fill: #F6A90F !important; }
  .b-comments__like.b-comments__scale .b-comments__like-img,
  .b-comments__like.b-comments__scale .b-comments__like-active-img {
    -ms-transform: scale(2);
        transform: scale(2);
    opacity: 0; }
  .b-comments__like-orange {
    color: #F6A90F; }

/*** reply ***/
.hide {
  display: none; }

.b-reply {
  display: none;
  margin-bottom: 20px;
  margin-top: 20px;
  max-width: 750px; }

.b-reply__title {
  font-size: 16px;
  margin: 0 0 14px 0; }

.b-reply__fields {
  margin: 0 0 16px 0; }

.b-reply__textarea {
  overflow-y: auto;
  height: 80px;
  font-size: 14px;
  border: 1px solid #d6d9dd;
  border-radius: 3px; }

.b-reply__textarea.e-active {
  box-shadow: 0 0 6px 2px rgba(198, 33, 33, 0.2);
  transition: all .4s ease-in; }

.b-reply__submit .btn--graphite {
  margin: 0 -1px 0 0;
  float: left; }

.b-reply__submit .btn--green {
  float: right;
  display: none; }

.b-reply__submit .comment-btn-disabled {
  cursor: default;
  opacity: 0.4;
  display: block; }

.b-reply__submit button {
  display: none; }

/*** /reply ***/
/*** Tinymce ***/
.mce-lettercount {
  position: absolute !important;
  top: 8px !important;
  right: 15px !important; }

.mce-lettererror {
  color: #C62121 !important; }

.comment-letter-error-count {
  height: 32px;
  float: right;
  text-align: center;
  line-height: 32px;
  background: #C62121;
  color: #ffffff;
  border-radius: 3px;
  margin: 0 0 0 5px;
  font-size: 14px;
  padding: 0 10px;
  border: 0;
  outline: none;
  display: block;
  font-weight: bold; }

.fancy-call {
  margin: 0 0 5px 5px; }

/*** Tinymce ***/
@media screen and (min-width: 1451px) {
  .b-comments__text-in {
    margin: 0 125px 0 0; }
  .b-comments__item-branch .b-comments__body {
    margin: 0 0 10px 75px; }
  .b-comments__item-branch .b-comments__ava {
    left: 5px; }
  .b-comments__body {
    margin: 0 0 10px 60px; }
  .b-comments__item .b-reply {
    margin-left: 60px;
    padding: 20px 0 0 0; }
  .b-comments__item-branch > .b-reply {
    margin-left: 75px; }
  .b-reply__group {
    padding: 0 0 0 75px; }
    .b-reply__group .b-reply__group {
      padding: 0 0 0 60px; }
      .b-reply__group .b-reply__group .b-reply__group .b-reply__group .b-reply__group {
        padding: 0; }
  .b-comments__ava {
    position: absolute;
    top: 11px;
    left: 0; }
  .b-comments__bar {
    right: 10px; }
  /*** reply ***/
  .b-reply__form {
    width: 100%; }
  .b-reply__textarea {
    width: 98%;
    padding: 1%; }
  .b-comments__reply {
    right: 10px;
    bottom: 12px; }
  /*** /reply ***/ }

@media screen and (min-width: 961px) and (max-width: 1450px) {
  .b-comments__text-in {
    margin: 0 125px 0 0; }
  .b-comments__item-branch .b-comments__body {
    margin: 0 0 10px 75px; }
  .b-comments__item-branch .b-comments__ava {
    left: 5px; }
  .b-comments__body {
    margin: 0 0 10px 60px; }
  .b-comments__item .b-reply {
    margin-left: 60px;
    padding: 20px 0 0 0; }
  .b-comments__item-branch > .b-reply {
    margin-left: 75px; }
  .b-reply__group {
    padding: 0 0 0 75px; }
    .b-reply__group .b-reply__group {
      padding: 0 0 0 60px; }
      .b-reply__group .b-reply__group .b-reply__group .b-reply__group {
        padding: 0; }
  .b-comments__ava {
    position: absolute;
    top: 11px;
    left: 0; }
  .b-comments__bar {
    right: 10px; }
    .b-comments__bar span {
      display: none; }
    .b-comments__bar a {
      padding: 0 5px; }
  /*** reply ***/
  .b-reply__form {
    width: 100%; }
  .b-reply__textarea {
    width: 98%;
    padding: 1%; }
  .b-comments__reply {
    right: 10px;
    bottom: 12px; }
  /*** /reply ***/ }

@media screen and (min-width: 769px) and (max-width: 960px) {
  .b-comments__text-in {
    margin: 0 125px 0 0; }
  .b-comments__item-branch .b-comments__body {
    margin: 0 0 10px 75px; }
  .b-comments__item-branch .b-comments__ava {
    left: 5px; }
  .b-comments__body {
    margin: 0 0 10px 60px; }
  .b-comments__item .b-reply {
    margin-left: 60px;
    padding: 20px 0 0 0; }
  .b-comments__item-branch > .b-reply {
    margin-left: 75px; }
  .b-reply__group {
    padding: 0 0 0 75px; }
    .b-reply__group .b-reply__group {
      padding: 0 0 0 60px; }
      .b-reply__group .b-reply__group .b-reply__group {
        padding: 0; }
  .b-comments__ava {
    position: absolute;
    top: 11px;
    left: 0; }
  .b-comments__bar {
    right: 10px; }
    .b-comments__bar span {
      display: none; }
    .b-comments__bar a {
      padding: 0 5px; }
  /*** reply ***/
  .b-reply__form {
    width: 100%; }
  .b-reply__textarea {
    width: 98%;
    padding: 1%; }
  .b-comments__reply {
    right: 10px;
    bottom: 12px; }
  /*** /reply ***/ }

@media screen and (min-width: 481px) and (max-width: 768px) {
  .b-comments__text-in {
    margin: 0; }
  .b-comments__item-branch .b-comments__body {
    margin: 0; }
  .b-comments__body {
    margin: 0; }
  .b-comments__item .b-reply {
    margin-left: 0;
    padding: 20px 0 0 0; }
  .b-comments__item-branch > .b-reply {
    margin-left: 0; }
  .b-comments__item {
    margin: 0; }
  .b-reply__group .b-comments__item {
    border-top: 1px dotted #DFE3E7; }
  .b-comments__ava {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto 5px; }
  .b-comments__bar {
    right: 5px; }
    .b-comments__bar span {
      display: none; }
    .b-comments__bar a {
      padding: 0 5px; }
  .b-comments__top {
    text-align: center; }
  .b-comments__name {
    display: block; }
  /*** reply ***/
  /*** reply ***/
  .b-reply__form {
    width: 100%; }
  .b-reply__textarea {
    width: 98%;
    padding: 1%; }
  .b-comments__reply {
    position: relative;
    right: 5px;
    bottom: 0;
    margin: 5px 0 5px 70px;
    text-align: right; }
  /*** /reply ***/ }

@media screen and (min-width: 0px) and (max-width: 480px) {
  .b-comments__text-in {
    margin: 0; }
  .b-comments__item-branch .b-comments__body {
    margin: 0; }
  .b-comments__body {
    margin: 0; }
  .b-comments__item .b-reply {
    margin-left: 0;
    padding: 20px 0 0 0; }
  .b-comments__item-branch > .b-reply {
    margin-left: 0; }
  .b-reply__group .b-comments__item {
    border-top: 1px dotted #DFE3E7; }
  .b-comments__item {
    margin: 0; }
  .b-comments__ava {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto 5px; }
  .b-comments__top {
    text-align: center; }
  .b-comments__name {
    display: block; }
  .b-read-also__head,
  .b-comments__title,
  .b-gallery__head {
    float: none !important;
    text-align: center;
    margin: 0 0 15px !important; }
  .b-comments__count {
    float: left !important; }
  .b-comments__bar {
    right: 5px; }
    .b-comments__bar span {
      display: none; }
    .b-comments__bar a {
      padding: 0 5px; }
  /*** reply ***/
  .b-reply__form {
    width: 100%; }
  .b-reply__textarea {
    width: 98%;
    padding: 1%; }
  .b-comments__reply {
    position: relative;
    right: 5px;
    bottom: 0;
    margin: 5px 0 5px 70px;
    text-align: right; }
  /*** /reply ***/ }

.rating {
  min-height: 30px;
  position: relative; }
  .rating [js-spinner] {
    background: none !important; }
  .rating__tbl {
    table-layout: fixed;
    width: 100%;
    font-size: 14px;
    text-align: left; }
  .rating__row:nth-child(2n) {
    background: #f7f8f7; }
  .rating__row--head {
    color: #b3b8bb;
    font-size: 12px; }
    .rating__row--head th {
      font-weight: 300;
      padding: 0.8em 0.5em; }
  .rating__row td {
    padding: 0.9em 0.5em; }
  .rating__place {
    text-align: center;
    width: 40px;
    color: #b3b8bb; }
  .rating__name {
    width: 79%; }
  .rating__photo {
    width: 40px;
    font-size: 0; }
    .rating__photo-wrap {
      display: block;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 50%;
      width: 32px;
      height: 32px; }
      .rating__photo-wrap img {
        max-width: none;
        width: auto;
        position: relative;
        height: 100%; }
        .csstransforms .rating__photo-wrap img {
          left: 50%;
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
  .rating__val {
    width: 70px;
    text-align: center; }

.intro {
  margin-top: 30px; }
  @media (min-width: 992px) {
    .intro {
      margin-bottom: 73px;
      margin-top: 80px; } }
  .intro p {
    line-height: 1.96; }
  .intro__title {
    font-size: 41px;
    line-height: 53px;
    font-family: "Fedra";
    text-align: center;
    margin: 0 auto 16px; }
    @media (max-width: 992px) {
      .intro__title {
        font-size: 32px;
        line-height: 40px; } }
  .intro__items {
    margin: 30px auto 0; }
    @media (min-width: 992px) {
      .intro__items {
        width: 940px;
        margin: 92px auto 0; } }
    .intro__items .item {
      display: block;
      text-align: center;
      color: #008c97;
      font-size: 18px;
      text-decoration: none; }
      .intro__items .item:before {
        content: "";
        display: block;
        margin: 0 auto 15px; }
        @media (min-width: 992px) {
          .intro__items .item:before {
            margin: 0 auto 41px; } }

@media (max-width: 768px) {
  .intro__items .item {
    margin-bottom: 30px; } }

.regpartner {
  width: 100%;
  background: #F4F5F4;
  margin-top: -53px; }
  .regpartner__wrap {
    margin-top: 30px; }
    @media (min-width: 992px) {
      .regpartner__wrap {
        margin-bottom: 86px;
        margin-top: 114px; } }
  .regpartner__title {
    font-size: 32px;
    font-family: "Fedra";
    text-align: center;
    margin: 0 auto 16px; }
  .regpartner__items {
    margin: 100px auto 0; }
    @media (min-width: 992px) {
      .regpartner__items {
        width: 940px;
        margin: 30px auto 0; } }
    .regpartner__items .item {
      display: block;
      text-align: center;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none; }
      .regpartner__items .item span {
        min-height: 25px;
        display: block; }
        @media (min-width: 992px) {
          .regpartner__items .item span {
            min-height: 75px; } }
      .regpartner__items .item p {
        font-style: normal;
        font-weight: normal;
        line-height: 20px;
        font-size: 13px;
        text-align: center;
        min-height: 80px; }
      .regpartner__items .item .btn {
        padding: 9px 49px;
        margin-top: 20px;
        font-style: normal;
        font-weight: normal; }
      .regpartner__items .item:before {
        content: "";
        display: block;
        margin: 0 auto 19px; }

@media (max-width: 768px) {
  .regpartner__items .item {
    margin-bottom: 30px; } }

.company-registration {
  padding-top: 40px;
  padding-bottom: 40px; }
  @media (min-width: 992px) {
    .company-registration {
      padding-top: 60px;
      padding-bottom: 60px; } }
  .company-registration__title {
    font-size: 16px;
    margin-bottom: 15px; }
    @media (min-width: 992px) {
      .company-registration__title {
        font-size: 20px;
        margin-bottom: 45px; } }

.saas {
  background-color: #f4f5f4;
  margin-top: -56px; }
  .saas__img {
    display: inline-block;
    background: url("../img/services.png") top center no-repeat;
    width: 100%;
    max-width: 660px;
    background-size: 100%;
    min-height: 340px; }
    @media (min-width: 992px) {
      .saas__img {
        min-height: 360px; } }
    @media (max-width: 414px) {
      .saas__img {
        min-height: 220px; } }
  .saas__head {
    position: relative;
    text-align: center;
    color: #fff; }
    .saas__head:before {
      content: '';
      position: absolute;
      bottom: -91px;
      left: 50%;
      margin-right: -50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      transition: bottom 0.2s 0.3s;
      border: 28px solid transparent;
      border-top: 33px solid #12646E; }
  .saas__title {
    font-family: 'Fedra';
    font-size: 43px;
    font-weight: bold;
    color: inherit;
    margin-top: 68px; }
  .saas__text {
    font-family: 'Fedra';
    font-weight: 300;
    font-size: 19px;
    color: inherit;
    margin-top: 32px;
    margin-bottom: 69px; }
  .saas .item:before {
    content: "";
    position: absolute;
    left: -27px;
    top: 6px; }

.saas--services .saas__head {
  background-color: #089ba7; }
  .saas--services .saas__head.u-arrow:after {
    border-top-color: #089ba7; }

.saas--subscribe .saas__head {
  background-color: #12646E; }
  .saas--subscribe .saas__head.u-arrow:after {
    border-top-color: #12646E; }

.saas__list {
  padding-top: 45px;
  padding-bottom: 9px;
  border-bottom: 2px solid; }
  .saas__list li {
    position: relative;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 27px; }
  @media (min-width: 992px) {
    .saas__list {
      padding-top: 85px;
      padding-bottom: 50px; } }

.saas__list .custom-list {
  list-style: none; }

.saas--subscribe .saas__list {
  background-color: #fff;
  border-bottom-color: #f4f5f4; }

.saas__schema {
  text-align: center;
  padding: 48px 0 35px; }

@media (min-width: 992px) {
  padding: 48px 0 77px; }

.saas__action {
  text-align: center;
  padding-top: 30px; }
  .saas__action .btn {
    padding: 10px 50px; }

.cloud {
  background-color: #f4f5f4;
  margin-top: -56px; }
  .cloud__img {
    display: inline-block;
    background: url("../img/subscribe.png") top center no-repeat;
    width: 100%;
    max-width: 660px;
    min-height: 340px;
    background-size: 100%; }
    @media (min-width: 992px) {
      .cloud__img {
        min-height: 360px; } }
    @media (max-width: 414px) {
      .cloud__img {
        min-height: 220px; } }
  .cloud__head {
    position: relative;
    text-align: center;
    color: #fff; }
    .cloud__head:before {
      content: '';
      position: absolute;
      bottom: -91px;
      left: 50%;
      margin-right: -50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      transition: bottom 0.2s 0.3s;
      border: 28px solid transparent;
      border-top: 33px solid #01B3BF; }
  .cloud__title {
    font-family: 'Fedra';
    font-size: 43px;
    font-weight: bold;
    color: inherit;
    margin-top: 68px; }
  .cloud__text {
    font-family: 'Fedra';
    font-weight: 300;
    font-size: 19px;
    color: inherit;
    margin-top: 32px;
    margin-bottom: 69px; }
  .cloud .item:before {
    content: "";
    position: absolute;
    left: -27px;
    top: 6px; }

.cloud--services .cloud__head {
  background-color: #089ba7; }
  .cloud--services .cloud__head.u-arrow:after {
    border-top-color: #089ba7; }

.cloud--subscribe .cloud__head {
  background-color: #01B3BF; }
  .cloud--subscribe .cloud__head.u-arrow:after {
    border-top-color: #01B3BF; }

.cloud__list {
  padding-top: 45px;
  padding-bottom: 9px;
  border-bottom: 2px solid; }
  .cloud__list li {
    position: relative;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 27px; }
  @media (min-width: 992px) {
    .cloud__list {
      padding-top: 85px;
      padding-bottom: 50px; } }

.cloud__list .custom-list {
  list-style: none; }

.cloud--subscribe .cloud__list {
  background-color: #fff;
  border-bottom-color: #f4f5f4; }

.cloud__schema {
  text-align: center;
  padding: 48px 0 35px; }

@media (min-width: 992px) {
  padding: 48px 0 77px; }

.cloud__action {
  text-align: center;
  padding-top: 30px; }
  .cloud__action .btn {
    padding: 10px 50px; }

.workers {
  position: relative; }
  .workers__tbl {
    margin: 20px 0 30px; }
    @media (max-width: 600px) {
      .workers__tbl {
        width: 555px; }
        .workers__tbl-wrapper {
          overflow-x: scroll; } }
  .workers__name {
    width: 30%; }
  .workers__position {
    width: 30%; }
    .workers__position .empty {
      width: auto;
      height: auto;
      overflow: auto; }
    .workers__position span {
      color: #008c97;
      cursor: pointer; }
  .workers__delete {
    position: relative;
    width: 52px; }
    .workers__delete .form__tooltip {
      width: auto;
      padding: 0.7em 0.9em 0.5em; }
      @media (min-width: 769px) {
        .workers__delete .form__tooltip {
          top: 8px; } }
      @media (max-width: 768px) {
        .workers__delete .form__tooltip {
          top: 95%;
          right: 10px;
          left: auto; } }
  .workers__invite {
    margin-top: 50px;
    margin-bottom: 70px; }

.support__title {
  font-size: 32px;
  font-family: "Fedra";
  text-align: center;
  margin: 50px auto 16px; }

.support__head {
  margin-bottom: 50px; }

.support__actions {
  margin: 60px auto; }
  @media (min-width: 992px) {
    .support__actions {
      width: 940px; } }
  .support__actions .item {
    display: block;
    text-align: center;
    color: #008c97;
    font-size: 20px;
    text-decoration: none; }
    .support__actions .item:hover, .support__actions .item:active, .support__actions .item:focus {
      text-decoration: underline; }
    .support__actions .item:before {
      content: "";
      display: block;
      margin: 0 auto 15px; }

.support__history {
  margin: 0 auto 50px;
  position: relative; }
  .support__history .tbl .item__creation-date, .support__history .tbl .item__change-date, .support__history .tbl .item__num {
    width: 10%; }
  .support__history .tbl .item__state, .support__history .tbl .item__responsible {
    width: 15%; }
  .support__history .tbl .item__theme {
    width: 20%; }
  .support__history .tbl .item__action {
    width: 10%; }
    .support__history .tbl .item__action a {
      position: relative; }
  .support__history .tbl .item__responsible a {
    color: #008c97; }
  .support__history .tbl__row {
    cursor: pointer; }
    .support__history .tbl__row td {
      transition: background .2s linear; }
    .support__history .tbl__row.current td {
      background: #ccc; }
    .support__history .tbl__row.current + .tbl__row td {
      background: #eee; }
    .support__history .tbl__row:hover td {
      background: #ccc; }

.support__content {
  background: #eceff2;
  height: auto; }
  .support__content--hidden {
    height: 5px; }

.support__check {
  padding-bottom: 50px; }

.support__letter {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px; }
  .support__letter .form__text, .support__letter .form__select {
    background: #fff; }

@media (max-width: 768px) {
  .support__actions .item {
    margin-bottom: 30px; }
  .support__history-table {
    overflow-x: scroll; }
    .support__history-table .tbl {
      width: 800px; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  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 {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "\2190"; }
    [dir="rtl"] .slick-prev:before {
      content: "\2192"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "\2192"; }
    [dir="rtl"] .slick-next:before {
      content: "\2190"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\2022";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

.corp-widget {
  position: absolute;
  z-index: 10;
  top: 80px;
  right: 0;
  background: #d7dada;
  padding-right: 30px;
  height: 56px;
  max-width: 300px; }
  .corp-widget__btn {
    cursor: pointer; }
    .corp-widget__btn:hover + .corp-widget__dd, .corp-widget__btn--active + .corp-widget__dd {
      pointer-events: auto;
      opacity: 1;
      -ms-transform: translateY(0);
          transform: translateY(0); }
  .corp-widget__dd {
    position: absolute;
    right: 0;
    top: 100%;
    -ms-transform: translateY(30px);
        transform: translateY(30px);
    transition: transform .2s ease-out, opacity .1s ease-out;
    opacity: 0;
    pointer-events: none; }
    .corp-widget__dd:before {
      right: 22px;
      top: -10px;
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 15px 10px 15px;
      border-color: transparent transparent #424d56 transparent; }
  .corp-widget__list {
    max-width: 450px; }
  .corp-widget__item {
    position: relative;
    display: block;
    width: 100%;
    transition: background .1s ease-out; }
    .corp-widget__list .corp-widget__item {
      height: 85px;
      background: #4a5257;
      border-bottom: 1px solid #3b3b3b; }
      .corp-widget__list .corp-widget__item:last-child {
        border-bottom: none; }
      .corp-widget__list .corp-widget__item:hover {
        background: #5b6368; }
      .corp-widget__list .corp-widget__item-text {
        line-height: 85px;
        color: #fff; }
    .corp-widget__action .corp-widget__item {
      background: #3b3b3b;
      height: 85px; }
      .corp-widget__action .corp-widget__item:hover {
        background: #2a2a2a; }
    .corp-widget__item-text {
      padding-left: 65px;
      padding-right: 50px;
      line-height: 56px; }
      .corp-widget__btn .corp-widget__item-text {
        position: relative;
        padding-right: 25px;
        color: #424d56; }
        .corp-widget__btn .corp-widget__item-text:after {
          top: 42%;
          right: 0;
          border: solid transparent;
          content: "";
          height: 0;
          width: 0;
          position: absolute;
          pointer-events: none;
          border-color: rgba(255, 255, 255, 0);
          border-top-color: #424d56;
          border-width: 7px; }
      .corp-widget__action .corp-widget__item-text {
        padding-right: 15px;
        line-height: 85px;
        font-size: 13px; }
        .corp-widget__action .corp-widget__item-text span {
          color: #fff;
          font-weight: 400; }
      .corp-widget__item-text span {
        display: block;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 600;
        font-size: 15px; }
    .corp-widget__item-icon, .corp-widget__item-delete {
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
    .corp-widget__item-delete {
      right: 15px; }
    .corp-widget__item-icon {
      left: 15px;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      overflow: hidden; }
      .corp-widget__item-icon img {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
      .corp-widget__item-icon--empty:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0; }
      .corp-widget__action .corp-widget__item-icon:before {
        content: "";
        position: absolute; }

@media (max-width: 1400px) {
  .corp-widget__btn .corp-widget__item-text {
    height: 56px; }
    .corp-widget__btn .corp-widget__item-text span {
      display: none; } }

@media (max-width: 1120px) {
  .corp-widget {
    max-width: none;
    width: 100%;
    top: 136px; }
    .corp-widget__btn .corp-widget__item-text span {
      display: block; }
  .page-header--has-company-widget {
    padding-bottom: 112px; } }

@media (max-width: 992px) {
  .corp-widget {
    top: 80px; }
  .page-header--has-company-widget {
    padding-bottom: 56px; } }

@media (max-width: 768px) {
  .corp-widget__dd, .corp-widget__list {
    max-width: none;
    width: 100%; } }

.eset-resourses-widget {
  position: relative;
  font-weight: 400;
  z-index: 9999; }
  .eset-resourses-widget * {
    box-sizing: border-box; }
  .eset-resourses-widget__control {
    position: relative; }
    .eset-resourses-widget__control-icon {
      display: block;
      padding: 4px;
      overflow: hidden;
      font-size: 0;
      line-height: 1;
      transition: .3s; }
      .eset-resourses-widget__control-icon:before {
        content: ""; }
      .eset-resourses-widget__control-icon:hover {
        opacity: 0.7; }
  .eset-resourses-widget__container {
    position: absolute;
    top: 100%;
    right: -18px;
    padding-top: 8px;
    -ms-transform: translateY(30px);
        transform: translateY(30px);
    opacity: 0;
    display: none;
    transition: opacity 0.1s ease-out, transform 0.1s ease-out; }
    .eset-resourses-widget__container.eset-resourses-widget__container--active {
      opacity: 1;
      -ms-transform: translateY(0);
          transform: translateY(0); }
  .eset-resourses-widget__content {
    width: 349px;
    background: #fff;
    color: #424d56;
    position: relative;
    box-shadow: -4px 4px 8px rgba(0, 0, 0, 0.2); }
    .eset-resourses-widget__content:before {
      content: "";
      position: absolute;
      top: -10px;
      right: 19px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 15px 10px 15px;
      border-color: transparent transparent #ffffff transparent; }
  .eset-resourses-widget__body {
    padding: 30px 20px 0px; }

.eset-resourses-widget-item {
  display: block;
  margin-bottom: 20px;
  min-width: 140px;
  color: inherit !important;
  font-size: 12px;
  text-align: center; }
  .eset-resourses-widget-item span {
    display: block; }
  .eset-resourses-widget-item__icon {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    transition: .3s; }
  .eset-resourses-widget-item__title {
    height: 36px; }
  .eset-resourses-widget-item:hover .eset-resourses-widget-item__icon {
    opacity: 0.7; }

.corp-inst {
  overflow-x: auto; }

.corp-inst__wrapper {
  min-width: 1140px; }

.corp-inst__product-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-bottom: 60px; }
  .corp-inst__product-list._right {
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: stretch;
        align-items: stretch; }

.corp-inst__product {
  position: relative;
  width: 220px;
  text-align: center; }
  .corp-inst__product._deactive {
    /*& a {
            cursor: default;
            pointer-events: none;

            &:hover {
                & span {
                    border-color: transparent;
                }
            }
        }*/ }
    .corp-inst__product._deactive > *:not(.corp-inst__product_action) {
      opacity: .4;
      cursor: default;
      pointer-events: none; }
  .corp-inst__product._circle {
    height: 220px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    padding-bottom: 30px; }
    .corp-inst__product._circle:before, .corp-inst__product._circle:after {
      width: 100%;
      height: 100%;
      top: -15px;
      left: 0;
      background: #E2F4FA;
      content: "";
      position: absolute;
      border-radius: 50%;
      z-index: -1; }
    .corp-inst__product._circle:after {
      background: none;
      border: 1px solid #069AD5; }
    .corp-inst__product._circle .corp-inst__inform {
      top: 30px;
      right: 30px; }
  .corp-inst__product._internet {
    width: 240px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 200px; }
    .corp-inst__product._internet:before {
      position: absolute;
      left: 0px;
      top: 90px;
      width: 30px;
      height: 2px;
      background: url("/corp/install/img/line-3.svg") no-repeat;
      z-index: -2;
      content: ""; }
    .corp-inst__product._internet:after {
      content: "";
      background: url(/corp/install/img/line-5.svg) no-repeat;
      width: 435px;
      height: 121px;
      position: absolute;
      bottom: -78px;
      left: -270px; }
  .corp-inst__product._box {
    padding: 20px 10px;
    background: #E2F4FA;
    border: 1px solid #069AD5;
    margin-left: 30px;
    border-radius: 7px;
    width: 196px; }
    .corp-inst__product._box._m-auto {
      margin-left: auto; }
    .corp-inst__product._box .corp-inst__inform {
      top: 10px;
      right: 10px; }
    .corp-inst__product._box-first {
      margin: 0 auto 0 0; }
      .corp-inst__product._box-first:before {
        content: "";
        position: absolute;
        top: -36px;
        left: 70px;
        background: url(/corp/install/img/line-3.svg) no-repeat;
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        width: 41px;
        height: 10px;
        z-index: -2; }
  .corp-inst__product._small {
    width: 170px;
    margin: 31px 10px 0; }
    .corp-inst__product._small > img {
      max-height: 40px; }
  .corp-inst__product .tooltip {
    max-width: calc(100% + 30px);
    min-width: 200px;
    padding: 10px 15px;
    line-height: 1.5;
    border-color: #424D56;
    background: #424D56;
    color: #fff; }
    .corp-inst__product .tooltip a {
      -ms-flex-pack: start;
          justify-content: flex-start;
      color: #fff;
      margin: 10px 0; }
    .corp-inst__product .tooltip:before {
      background: #424D56;
      border-color: #424D56;
      left: 50%; }

.corp-inst__product_title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: #006FAB; }
  .corp-inst__product_title._main {
    margin-top: 0;
    padding: 0 20px;
    font-size: 15px; }

.corp-inst__product_group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: #e6f5fb;
  border: 1px solid #03a5db;
  box-shadow: 0 0 1px #03a5db;
  padding: 30px 15px;
  border-radius: 7px; }
  .corp-inst__product_group._line-left:before {
    position: absolute;
    left: -70px;
    top: 110px;
    width: 80px;
    height: 3px;
    background: url(/corp/install/img/line-3.svg) no-repeat;
    z-index: -2;
    content: ""; }
  .corp-inst__product_group._line-bottom:after {
    position: absolute;
    left: -70px;
    bottom: -90px;
    content: "";
    width: 660px;
    height: 142px;
    background: url("/corp/install/img/line-4.svg") no-repeat;
    background-size: contain;
    z-index: -2; }
  .corp-inst__product_group:first-child {
    min-width: 380px; }
  .corp-inst__product_group:last-child {
    margin-left: auto; }
  .corp-inst__product_group .corp-inst__product {
    width: 170px;
    padding: 0 5px; }

.corp-inst__inform {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  display: none; }
  .corp-inst__inform._show {
    display: block; }

.corp-inst__product_action {
  position: relative; }
  .corp-inst__product_action a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    font-size: 14px;
    line-height: 14px; }
    .corp-inst__product_action a span {
      margin-left: 7px;
      border-bottom: 1px solid transparent;
      transition: .1s ease-in; }
    .corp-inst__product_action a:hover span {
      border-bottom: 1px solid;
      transition: .1s ease-in; }

/* ./info {page} */
.corp-inst__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  text-align: left;
  -ms-flex-direction: column;
      flex-direction: column; }

.corp-inst__menu {
  width: 100%; }
  .corp-inst__menu ul {
    width: 100%;
    padding: 0;
    list-style-type: none; }
    .corp-inst__menu ul li {
      border-bottom: 1px solid; }
      .corp-inst__menu ul li a {
        display: block;
        padding: 10px 20px;
        font-size: 15px;
        color: inherit; }
        .corp-inst__menu ul li a:hover {
          background: #f2f2f2; }
        .corp-inst__menu ul li a._active {
          background: #cdcdcd; }

.corp-inst__tab {
  width: 100%;
  padding: 30px 0 0; }

.corp-inst__image {
  display: block;
  text-align: center; }
  .corp-inst__image img {
    display: block;
    margin: 0 auto 15px; }

.corp-inst__contacts {
  margin-top: 70px;
  padding: 70px 0;
  border-top: 2px solid #ededed;
  line-height: 1.9; }

.corp-inst__contacts__text {
  color: #006FAB;
  font-weight: bold;
  text-transform: uppercase; }

.corp-inst__contacts__phone {
  padding: 0 20px;
  display: -ms-flexbox;
  display: flex; }
  .corp-inst__contacts__phone span:first-child {
    padding-right: 10px;
    text-transform: uppercase; }

.tooltip-box.show, .user--main .user__badges-list .item:hover .tooltip-box.tooltip {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  cursor: default; }

.tooltip[data-tooltip-schema-buy].show, .user--main .user__badges-list .item:hover .tooltip[data-tooltip-schema-buy] {
  z-index: 110; }

/* от этого нужно избавиться, я торопился ;( */
.corp-inst__wrapper .corp-inst__product-list:first-child > .corp-inst__product:first-child:after {
  content: "";
  position: absolute;
  right: -40px;
  top: 110px;
  background: url("/corp/install/img/line-1.svg") no-repeat;
  width: 91px;
  height: 10px; }

.corp-inst__wrapper .corp-inst__product-list:nth-child(2) > .corp-inst__product:first-child:after {
  content: "";
  position: absolute;
  top: -44px;
  right: -155px;
  background: url("/corp/install/img/line-3.svg") no-repeat;
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
  width: 41px;
  height: 10px;
  z-index: -2; }

/* / */
@media all and (min-width: 768px) {
  .corp-inst__info {
    -ms-flex-direction: row;
        flex-direction: row; }
  .corp-inst__menu {
    width: 200px; }
  .corp-inst__tab {
    width: calc(100% - 200px);
    padding: 0 0 0 30px; } }

@media all and (min-width: 992px) {
  .corp-inst__menu {
    width: 300px; }
  .corp-inst__tab {
    width: calc(100% - 300px); } }

.corp-inst__slider {
  position: relative;
  margin: 50px 0 70px; }
  .corp-inst__slider .slick-dots li button:before {
    font-size: 38px; }

.js-carousel {
  max-width: 80%;
  margin: 0 auto;
  text-align: center; }

.corp-inst__slide img {
  margin: 0 auto; }

.js-carousel__arrow-left {
  display: block;
  position: absolute;
  top: 50%;
  left: -5px;
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }
  .js-carousel__arrow-left svg {
    width: 60px;
    height: 70px;
    -ms-transform: rotate(180deg);
        transform: rotate(180deg); }
  .js-carousel__arrow-left:hover svg path {
    fill: #ccc; }

.js-carousel__arrow-right {
  display: block;
  position: absolute;
  top: 50%;
  right: -5px;
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }
  .js-carousel__arrow-right svg {
    width: 60px;
    height: 70px; }
  .js-carousel__arrow-right:hover svg path {
    fill: #ccc; }

.offers {
  padding: 30px 0; }
  .offers__header {
    margin-bottom: 40px; }
  .offers__img, .offers__content {
    z-index: 1;
    position: relative; }
  .offers__img {
    text-align: center; }
    .offers__img img {
      height: 160px; }
  .offers__content {
    position: absolute;
    width: 100%;
    padding: 0 30px;
    left: 0;
    bottom: 30px;
    text-align: center; }
    @media (min-width: 440px) {
      .offers__content {
        width: 390px;
        left: 50%;
        margin-left: -195px; } }
    @media (min-width: 768px) {
      .offers__content {
        width: 100%;
        left: 0;
        margin-left: 0; } }
    .offers__content .btn {
      width: 100%;
      padding-left: 7px;
      padding-right: 7px; }
  .offers__title {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: bold;
    color: #fff; }
  .offers__detail-content {
    padding-top: 30px;
    padding-bottom: 50px; }
    .offers__detail-content h2 {
      text-align: left;
      font-size: 16px;
      font-weight: bold; }
    .offers__detail-content img {
      position: relative;
      top: 10px;
      margin-right: 15px;
      margin-bottom: 5px; }
  .offers__item {
    width: 100%;
    position: relative;
    height: 400px;
    padding: 30px;
    margin-bottom: 30px; }
    .offers__item:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1;
      background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, rgba(80, 118, 148, 0) 50%, rgba(0, 0, 0, 0.3) 100%); }
    .offers__item--banner {
      overflow: hidden;
      height: 450px; }
      .offers__item--banner .offers__text {
        color: #fff; }
      .offers__item--banner .offers__title {
        font-weight: 500; }
      @media (min-width: 768px) {
        .offers__item--banner {
          height: 290px;
          padding: 0; }
          .offers__item--banner .offers__content, .offers__item--banner .offers__img {
            position: relative;
            float: left;
            width: 50%;
            padding: 30px 0; }
          .offers__item--banner .offers__title {
            text-align: left;
            font-size: 30px; }
          .offers__item--banner .offers__content {
            text-align: left;
            bottom: 0; }
            .offers__item--banner .offers__content .btn {
              width: auto;
              min-width: 250px;
              padding-left: 15px;
              padding-right: 15px; }
          .offers__item--banner .offers__img {
            padding: 0; }
            .offers__item--banner .offers__img img {
              height: 320px;
              position: relative;
              top: -20px; } }
      @media (min-width: 992px) {
        .offers__item--banner {
          height: 370px;
          padding: 0; }
          .offers__item--banner .offers__content {
            width: 65%; }
          .offers__item--banner .offers__img {
            width: 35%; }
          .offers__item--banner .offers__title {
            font-size: 40px;
            margin-top: 30px; }
          .offers__item--banner .offers__text {
            margin-bottom: 60px; }
          .offers__item--banner .offers__img {
            padding: 0; }
            .offers__item--banner .offers__img img {
              height: 450px;
              top: -40px;
              max-width: none; } }
    @media (min-width: 768px) {
      .offers__item--hor {
        display: table; }
        .offers__item--hor:before {
          background: linear-gradient(to right, rgba(125, 185, 232, 0) 0%, rgba(80, 118, 148, 0) 50%, rgba(0, 0, 0, 0.3) 100%); }
        .offers__item--hor .offers__content, .offers__item--hor .offers__img {
          position: relative;
          bottom: 0;
          display: table-cell;
          vertical-align: middle;
          width: 50%; }
        .offers__item--hor .offers__title {
          text-align: left;
          font-size: 26px; }
        .offers__item--hor .offers__content {
          text-align: left; }
          .col-md-8 .offers__item--hor .offers__content {
            padding: 0; }
          .offers__item--hor .offers__content .btn {
            width: 300px; }
            .col-md-8 .offers__item--hor .offers__content .btn {
              width: 220px; } }
        @media (min-width: 768px) and (min-width: 1200px) {
          .col-md-8 .offers__item--hor .offers__content .btn {
            width: 300px; } }
    @media (min-width: 768px) {
        .offers__item--hor .offers__img img {
          height: auto;
          width: 70%; } }
    @media (min-width: 992px) {
      .offers__item--hor .offers__img img {
        width: 50%; }
      .col-sm-12:not(.col-md-8) .offers__item--hor .offers__content {
        padding-right: 150px; } }

.bank-card {
  position: relative;
  margin-top: 40px; }
  .bank-card__header {
    font-size: 27px; }
  .bank-card .form__text, .bank-card .form__select {
    background: #fff; }
  .bank-card__front, .bank-card__back {
    position: relative;
    width: 405px;
    border-radius: 5px; }
  .bank-card__front {
    z-index: 1;
    background: #f4f5f4;
    border: 1px solid #e4e4e3;
    padding: 30px; }
  .bank-card__exp .form__select {
    visibility: visible !important;
    width: 100px;
    margin-bottom: 0; }
  .bank-card__exp .form__label {
    float: left;
    color: #008c97; }
  .bank-card__month {
    float: left;
    margin-left: 15px; }
  .bank-card__year {
    float: right; }
  .bank-card__back {
    position: absolute;
    right: 70px;
    top: -15px;
    background: #e7e9e7;
    padding: 110px 50px 25px 180px; }
    .bank-card__back:before {
      content: '';
      display: block;
      width: 100%;
      position: absolute;
      top: 25px;
      left: 0;
      height: 60px;
      background: #b7bdc0; }
  .bank-card__code-text {
    font-size: 12px;
    color: #949ca1;
    margin: 5px 0; }
  .bank-card__btns .btn {
    width: auto;
    margin-bottom: 10px; }
  .bank-card__widget {
    background: #f4f5f4;
    padding: 25px; }
    .bank-card__widget .icon, .bank-card__widget .bank-card__shown-num {
      display: inline-block;
      vertical-align: middle;
      margin-top: 10px; }
    .bank-card__widget .icon {
      border-radius: 0;
      margin-right: 15px; }
    .bank-card__widget .bank-card__btns {
      margin-left: 0; }
      .bank-card__widget .bank-card__btns .btn {
        width: 100%; }
        .bank-card__widget .bank-card__btns .btn:last-child {
          margin-bottom: 0; }
  .bank-card__note {
    font-size: 12px;
    color: #949ca1;
    margin-top: 30px; }
    .bank-card__note--security {
      position: relative;
      padding-right: 325px; }
      .bank-card__note--security:after {
        content: "";
        position: absolute;
        top: 5px;
        right: 75px; }

@media (max-width: 1200px) {
  .bank-card__back {
    right: 10px; }
  .bank-card__note--security:after {
    right: 15px; } }

@media (max-width: 992px) {
  .bank-card {
    margin-top: 30px; }
    .bank-card__header {
      text-align: center; }
    .bank-card__front, .bank-card__note--security {
      margin-left: 15px; }
    .bank-card__btns {
      text-align: center; } }

@media (max-width: 768px) {
  .bank-card {
    margin-top: 5px; }
    .bank-card__back, .bank-card__front {
      margin: 0 auto; }
    .bank-card__back {
      position: relative;
      right: auto;
      left: auto;
      margin-top: 30px; }
    .bank-card__widget .icon, .bank-card__widget .bank-card__shown-num {
      text-align: center;
      display: block;
      margin: 0 auto 20px; }
    .bank-card__btns .btn {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 250px !important; }
    .bank-card__note--security {
      padding: 0;
      margin-left: 0;
      text-align: center; }
      .bank-card__note--security:after {
        position: static;
        display: block;
        margin: 10px auto 0; } }

@media (max-width: 490px) {
  .bank-card__front, .bank-card__back {
    width: 100%; }
  .bank-card__back {
    padding-left: 70px;
    padding-right: 30px; }
  .bank-card__code {
    text-align: right; }
    .bank-card__code .form__placeholder, .bank-card__code-text {
      display: inline-block;
      width: 170px; }
  .bank-card__btns .btn {
    width: 100% !important; }
  .bank-card__exp .form__select {
    width: 90px; }
  .bank-card__exp .form__label {
    float: none; }
  .bank-card__month {
    margin-left: 0;
    margin-right: 15px; } }

.order__table-cell {
  margin-bottom: 10px; }

.order__items .item {
  padding: 15px 0 10px;
  border-bottom: 1px solid #aaa; }
  .order__items .item a {
    color: #008c97;
    text-decoration: none; }
    .order__items .item a:hover, .order__items .item a:active, .order__items .item a:focus {
      text-decoration: underline; }
  .order__items .item__name {
    padding-left: 0; }
  .order__items .item__code {
    padding-right: 0;
    text-align: right;
    white-space: nowrap; }
  .order__items .item__delete {
    padding-right: 0; }
  .order__items .item__head {
    padding-left: 1em;
    padding-right: 1em; }
  .order__items .item__price, .order__items .item__delete {
    text-align: right;
    /*line-height: 1;*/ }
  .order__items .item .rur {
    font-size: 22px;
    white-space: nowrap; }
  .order__items .item .icon-cross {
    cursor: pointer; }

.order__choose-paysystem {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  text-align: center;
  font-size: 0; }
  @media (min-width: 768px) {
    .order__choose-paysystem .item {
      width: 20%;
      padding-left: 7px;
      padding-right: 7px;
      display: inline-block;
      vertical-align: top;
      float: none; } }
  .order__choose-paysystem .item__in {
    display: block;
    min-height: 130px;
    border-radius: 2px;
    color: #4a565e;
    font-size: 0;
    text-align: center;
    background: #fff;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
    padding: 20px 8px 10px;
    transition: background .1s linear, color .1s linear;
    margin-bottom: 15px; }
    .order__choose-paysystem .item__in:hover, .order__choose-paysystem .item__in:active, .order__choose-paysystem .item__in:focus, .order__choose-paysystem .item__in.active {
      background: #939fa7;
      box-shadow: none; }
      .order__choose-paysystem .item__in:hover .item__name, .order__choose-paysystem .item__in:active .item__name, .order__choose-paysystem .item__in:focus .item__name, .order__choose-paysystem .item__in.active .item__name {
        color: #fff; }
  .order__choose-paysystem .item__img {
    height: 45px;
    display: inline-block;
    margin-bottom: 20px; }
  .order__choose-paysystem .item__name {
    display: block;
    font-size: 12px;
    color: #4a565e; }
  .order__choose-paysystem-desc {
    display: none; }
    .order__choose-paysystem-desc.active {
      display: block; }

.order__items, .order__action {
  margin-bottom: 20px;
  margin-top: 10px; }

.order__action .btn {
  width: 100%; }

.order__payment {
  margin-right: 10px; }
  .order__payment + a {
    color: #008c97;
    position: relative; }

.order__total {
  text-align: right;
  font-weight: 700;
  font-style: italic;
  padding-top: 10px; }
  .order__total .rur {
    font-size: 41px;
    font-style: normal;
    color: #008c97;
    margin-left: 10px; }
  .order__total .btn {
    width: 260px;
    font-style: normal; }
  .order__total--hor {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #aaa;
    text-align: left;
    font-weight: normal;
    font-style: normal; }
    .order__total--hor .rur {
      margin-left: 0;
      white-space: nowrap; }
    .order__total--hor .order__total-price, .order__total--hor .order__total-text, .order__total--hor .order__total-btn {
      line-height: 58px; }
    @media (max-width: 768px) {
      .order__total--hor .order__total-price {
        text-align: right; } }
    .order__total--hor .order__total-btn {
      text-align: right; }
    .order__total--hor + p {
      font-size: 12px;
      margin-top: 30px;
      color: #798389; }

@media (max-width: 768px) {
  .order {
    padding-left: 15px !important;
    padding-right: 15px !important; }
    .order__items .item {
      position: relative; }
      .order__items .item__price {
        text-align: left; }
  .modal-dialog--change-paysystem .btn[type="submit"] {
    width: 100%; } }

@media (max-width: 400px) {
  .order__items--paid {
    overflow-x: scroll; }
    .order__items--paid .tbl {
      width: 320px; }
  .order__items .item__name {
    width: 150px; } }

@media (min-width: 768px) {
  .modal-dialog--change-paysystem {
    width: 600px; }
    .modal-dialog--change-paysystem .btn[type="submit"] {
      width: 250px; } }

.poll-btn {
  z-index: 100;
  position: relative; }
  .poll-btn__quection {
    height: auto;
    width: 100%;
    text-align: center;
    background: rgba(135, 197, 75, 0.8);
    border-color: #87c54b;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 100;
    color: #fff;
    transition: all 1s ease-out 0.5s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }
    .poll-btn__quection .btn--white {
      color: #ffffff;
      border-color: #ffffff; }
    .poll-btn__quection .btn-pull {
      margin: 5px 0 5px 30px; }

.widget-ib__wrap {
  position: absolute;
  right: 0; }

.widget-ib {
  width: 80%;
  display: inline-block;
  text-align: left;
  margin-right: 40px; }
  @media (min-width: 768px) {
    .widget-ib {
      position: relative; } }
  @media (max-width: 1332px) {
    .widget-ib {
      margin-right: 0; } }
  @media (max-width: 1200px) {
    .widget-ib {
      margin-right: 45px; } }
  .widget-ib .ib-icon {
    background-image: url("ib.svg");
    width: 90px;
    height: 150px; }
  .widget-ib li {
    font-size: 14px; }
  .widget-ib__text {
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 16px !important;
    font-weight: 500; }
    .widget-ib__text:hover {
      color: #ffffff !important; }
    @media (max-width: 1200px) {
      .widget-ib__text {
        display: none; } }
    @media (max-width: 992px) {
      .widget-ib__text {
        display: block; } }
    @media (max-width: 555px) {
      .widget-ib__text {
        display: none; } }
  .widget-ib__icon {
    margin-right: 10px !important; }
    @media (max-width: 1332px) {
      .widget-ib__icon {
        margin-right: 5px !important; } }
    .widget-ib__icon img {
      max-width: none; }
  .widget-ib__toggle {
    display: block;
    position: relative;
    padding: 10px 0 0; }
    @media (max-width: 768px) {
      .widget-ib__toggle {
        padding: 3px 10px 0 0; } }
    .widget-ib__toggle ul {
      display: -ms-flexbox;
      display: flex;
      list-style-type: none; }
      .widget-ib__toggle ul li {
        margin: 0; }
    .widget-ib__toggle svg {
      fill: #c5c5c5; }
    .widget-ib__toggle:hover {
      color: #ffffff !important; }
      .widget-ib__toggle:hover svg {
        fill: #fff; }
    .widget-ib__toggle:active {
      color: #ffffff !important; }
    .widget-ib__toggle:focus {
      color: #ffffff !important; }
  .widget-ib__dropdown {
    position: absolute;
    right: 0;
    width: 100vw;
    min-height: 100px;
    transition: opacity 0.2s ease-out, top 0.2s ease-out, visibility 0.2s ease-out, transform 0.2s ease-out;
    -ms-transform-origin: right top 0;
        transform-origin: right top 0;
    top: 100%;
    z-index: 1000;
    -ms-transform: scale(1);
        transform: scale(1);
    opacity: 1;
    visibility: visible; }
    @media (min-width: 768px) {
      .widget-ib__dropdown {
        right: -40px;
        width: 310px; } }
    [data-expanded='true'] .widget-ib__dropdown {
      top: 50px;
      overflow: hidden;
      visibility: hidden;
      opacity: 0;
      z-index: -1;
      -ms-transform: scale(0.8);
          transform: scale(0.8); }

.widget-ib-dropdown {
  position: relative;
  margin-top: 11px;
  background-color: #4a5257; }
  .widget-ib-dropdown__list {
    overflow: auto;
    padding: 25px; }
    @media (max-width: 768px) {
      .widget-ib-dropdown__list {
        padding: 35px; } }
  .widget-ib-dropdown__note {
    font-size: 10px;
    line-height: 15px;
    margin-top: 10px; }
    .widget-ib-dropdown__note a {
      text-decoration: underline;
      color: #c5c5c5; }
    .widget-ib-dropdown__note a:hover {
      color: #c5c5c5;
      text-decoration: none; }
  .widget-ib-dropdown__link {
    font-size: 18px;
    color: #fff; }
    .widget-ib-dropdown__link:hover {
      color: #fff;
      text-decoration: underline; }
  .widget-ib-dropdown:before {
    content: '';
    position: absolute;
    top: -11px;
    left: 40px;
    width: 0;
    height: 0;
    margin: 0 0 0 -16px;
    transition: border-color 0.15s ease-out;
    border-width: 0 16px 11px;
    border-style: solid;
    border-color: transparent transparent #4a5257 transparent; }
    @media (min-width: 768px) {
      .widget-ib-dropdown:before {
        display: block; } }
    @media (max-width: 1332px) {
      .widget-ib-dropdown:before {
        top: -10px;
        right: 69px;
        left: inherit; } }

.widget-ib-item {
  position: relative;
  padding: 0 25px 0 35px;
  transition: background-color 0.15s ease-out; }
  @media (min-width: 768px) {
    .widget-ib-item {
      padding-left: 20px; } }
  .widget-ib-item__close {
    position: absolute;
    z-index: 100;
    top: 40px;
    right: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    opacity: 0.5;
    border: 1px solid #fff;
    border-radius: 50%; }
    @media (max-width: 767px) {
      .widget-ib-item__close {
        top: -20px; } }
  .widget-ib-item__close:hover {
    opacity: 1; }
  .widget-ib-item__close:after, .widget-ib-item__close:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transition: background-color 0.2s ease-out;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    border-radius: 4px;
    background-color: #fff; }
  .widget-ib-item__close:before {
    width: 1px;
    height: 14px;
    background-color: #fff; }
  .widget-ib-item__close:after {
    width: 14px;
    height: 1px;
    background-color: #fff; }
  .widget-ib-item__inner {
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    text-decoration: none;
    color: #fff;
    -ms-flex-align: center;
        align-items: center; }
  .widget-ib-item__image {
    width: 90px;
    border-radius: 5px;
    overflow: hidden; }
    .widget-ib-item__image img {
      max-width: calc(100% + 2px);
      object-fit: contain; }
  .widget-ib-item__description {
    display: -ms-flexbox;
    display: flex;
    width: 280px;
    padding-left: 25px;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto; }
    @media (max-width: 767px) {
      .widget-ib-item__description {
        -ms-flex-direction: column;
            flex-direction: column;
        width: 50px; }
        .widget-ib-item__description .price__wrapper {
          text-align: left; } }
  .widget-ib-item__text {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -ms-flex-positive: 1;
        flex-grow: 1;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    font-size: 14px; }
    .widget-ib-item__text h4 {
      font-size: 17px;
      line-height: 1.52941em;
      margin-bottom: 10px;
      font-weight: 500; }
  .widget-ib-item .price__wrapper {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    position: relative;
    text-align: right; }
    .widget-ib-item .price__wrapper .price--m {
      font-size: 25px;
      white-space: nowrap; }

.widget-ib-sum {
  min-height: 80px;
  padding: 20px 25px 15px 35px;
  background-color: #3b3b3b; }
  @media (min-width: 768px) {
    .widget-ib-sum {
      padding-left: 20px; } }
  .widget-ib-sum .btn {
    width: 100%;
    max-height: 36px;
    font-weight: 100;
    margin: 7px auto; }
    @media (max-width: 767px) {
      .widget-ib-sum .btn {
        -ms-flex-preferred-size: 45%;
            flex-basis: 45%; } }
    @media (max-width: 479px) {
      .widget-ib-sum .btn {
        margin-top: 20px;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        -ms-flex-order: 1;
            order: 1; } }
  .widget-ib-sum__text {
    display: -ms-flexbox;
    display: flex;
    padding-top: 9px;
    -ms-flex-align: baseline;
        align-items: baseline;
    -ms-flex: 1 1 0px;
        flex: 1 1 0;
    -ms-flex-pack: end;
        justify-content: flex-end; }
    @media (max-width: 479px) {
      .widget-ib-sum__text {
        -ms-flex-pack: justify;
            justify-content: space-between; } }
  .widget-ib-sum__text-desk {
    font-size: 14px;
    padding-right: 10px;
    font-weight: 100; }
  .widget-ib-sum .price__wrapper {
    min-width: initial;
    text-align: right;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-preferred-size: auto;
        flex-basis: auto; }
  .widget-ib-sum .price--m {
    font-size: 25px; }

@media (max-width: 767px) {
  .widget-ib-dropdown__close {
    position: absolute;
    display: block;
    top: -80px;
    width: 100%;
    height: 80px;
    padding: 20px;
    background-color: #3b3b3b; }
  .widget-ib-dropdown__close-icon {
    position: absolute;
    display: block;
    z-index: 100;
    top: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    border: 3px solid #fff;
    border-radius: 50%; }
    .widget-ib-dropdown__close-icon:after, .widget-ib-dropdown__close-icon:before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transition: background-color 0.2s ease-out;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      border-radius: 4px;
      background-color: #fff; }
    .widget-ib-dropdown__close-icon:before {
      width: 3px;
      height: 24px; }
    .widget-ib-dropdown__close-icon:after {
      width: 24px;
      height: 3px; } }

@media (max-width: 767px) {
  .hints-block__item {
    margin: 0 auto;
    float: none;
    width: 320px;
    max-width: 100%; } }

@media (min-width: 768px) {
  .hints-block {
    padding: 65px 10px; }
    .hints-block__title {
      font-size: 38px;
      padding-bottom: 70px; } }

@media (max-width: 991px) {
  .hints-block {
    padding: 30px 10px; }
    .hints-block__item {
      padding-bottom: 15px; }
    .hints-block__title {
      font-size: 32px;
      padding-bottom: 40px; }
    .hints-block__text {
      padding-bottom: 30px; } }

@media (min-width: 1366px) {
  .hints-block__title {
    font-size: 44px; } }

.hints-block {
  background: #F4F5F4;
  scroll-behavior: smooth; }
  .hints-block__item > a:hover {
    text-decoration: none; }
  .hints-block__icon {
    height: 100px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 15px; }
    .hints-block__icon.download {
      background-image: url("../img/download_icon.png"); }
    .hints-block__icon.hands {
      background-image: url("../img/hands_icon.png"); }
    .hints-block__icon.key {
      background-image: url("../img/key_icon.png"); }
    .hints-block__icon.reload {
      background-image: url("../img/reload_icon.png"); }
  .hints-block__sub-title {
    padding-bottom: 15px;
    text-align: center;
    line-height: normal;
    font-size: 19px;
    font-weight: 300;
    color: #008BA0; }
  .hints-block__text {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #3B3B3B; }
  .hints-block__title {
    color: #424D56;
    line-height: normal;
    text-align: center;
    font-weight: 200; }
