/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button {
  border: 0;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* MEDIA */
/* MEDIA MIXIN */
/*! likely socicons */
.likely,
.likely__widget {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  text-indent: 0 !important;
  list-style: none !important;
  font-weight: 400;
  font-family: Helvetica Neue, Arial, sans-serif;
}

.likely {
  display: inline-block;
}

.likely__widget {
  margin: 0;
  font-size: inherit;
}

.likely {
  opacity: 0;
  font-size: 0 !important;
}

.likely_visible {
  opacity: 1;
  -webkit-transition: opacity 0.1s ease-in;
  transition: opacity 0.1s ease-in;
}

.likely > * {
  display: inline-block;
  visibility: hidden;
}

.likely_visible > * {
  visibility: inherit;
}

.likely__widget {
  position: relative;
  white-space: nowrap;
}

.likely__button,
.likely__widget {
  display: inline-block;
}

.likely__button,
.likely__counter {
  text-decoration: none;
  text-rendering: optimizeLegibility;
  margin: 0;
  outline: 0;
}

.likely__button {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.likely__counter {
  display: none;
  position: relative;
  font-weight: 400;
}

.likely_ready .likely__counter {
  display: none;
}

.likely_ready .likely__counter_empty {
  display: none;
}

.likely__button,
.likely__counter,
.likely__icon,
.likely__widget {
  vertical-align: top;
}

.likely__widget {
  -webkit-transition: background 0.33s ease-out, color 0.33s ease-out,
    fill 0.33s ease-out;
  transition: background 0.33s ease-out, color 0.33s ease-out,
    fill 0.33s ease-out;
}

.likely__widget:active,
.likely__widget:focus,
.likely__widget:hover {
  -webkit-transition: none;
  transition: none;
  cursor: pointer;
}

@media (hover: none) {
  .likely__widget:active,
  .likely__widget:focus,
  .likely__widget:hover {
    -webkit-transition: background 0.33s ease-out, color 0.33s ease-out,
      fill 0.33s ease-out;
    transition: background 0.33s ease-out, color 0.33s ease-out,
      fill 0.33s ease-out;
    cursor: unset;
  }
}

.likely__icon {
  position: relative;
  text-align: left;
  display: inline-block;
}

.likely svg {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
}

.likely__button,
.likely__counter {
  line-height: inherit;
  cursor: inherit;
}

.likely__button:empty {
  display: none;
}

.likely__counter {
  text-align: center;
}

.likely .likely__widget {
  color: #000;
  background: rgba(231, 231, 231, 0.8);
}

.likely .likely__counter {
  background-size: 1px 1px;
  background-repeat: repeat-y;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.2) 0,
    rgba(0, 0, 0, 0) 0.5px,
    rgba(0, 0, 0, 0) 100%
  );
}

.likely-light .likely__widget {
  color: #fff;
  fill: #fff;
  background: rgba(236, 236, 236, 0.16);
  text-shadow: rgba(0, 0, 0, 0.2) 0 0 0.33em;
}

.likely-light .likely__counter {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.4) 0,
    rgba(255, 255, 255, 0) 0.5px,
    rgba(255, 255, 255, 0) 100%
  );
}

.likely__widget_facebook {
  fill: #425497;
}

.likely__widget_facebook:active,
.likely__widget_facebook:focus,
.likely__widget_facebook:hover {
  background: rgba(207, 212, 229, 0.8);
}

@media (hover: none) {
  .likely__widget_facebook:active,
  .likely__widget_facebook:focus,
  .likely__widget_facebook:hover {
    background: rgba(231, 231, 231, 0.8);
  }
}

.likely-light .likely__widget_facebook:active,
.likely-light .likely__widget_facebook:focus,
.likely-light .likely__widget_facebook:hover {
  text-shadow: #425497 0 0 0.25em;
  background: rgba(66, 84, 151, 0.7);
}

@media (hover: none) {
  .likely-light .likely__widget_facebook:active,
  .likely-light .likely__widget_facebook:focus,
  .likely-light .likely__widget_facebook:hover {
    text-shadow: rgba(0, 0, 0, 0.2) 0 0 0.33em;
    background: rgba(236, 236, 236, 0.16);
  }
}

.likely__widget_gplus {
  fill: #dd4241;
}

.likely__widget_gplus:active,
.likely__widget_gplus:focus,
.likely__widget_gplus:hover {
  background: rgba(246, 207, 207, 0.8);
}

@media (hover: none) {
  .likely__widget_gplus:active,
  .likely__widget_gplus:focus,
  .likely__widget_gplus:hover {
    background: rgba(231, 231, 231, 0.8);
  }
}

.likely-light .likely__widget_gplus:active,
.likely-light .likely__widget_gplus:focus,
.likely-light .likely__widget_gplus:hover {
  text-shadow: #dd4241 0 0 0.25em;
  background: rgba(221, 66, 65, 0.7);
}

@media (hover: none) {
  .likely-light .likely__widget_gplus:active,
  .likely-light .likely__widget_gplus:focus,
  .likely-light .likely__widget_gplus:hover {
    text-shadow: rgba(0, 0, 0, 0.2) 0 0 0.33em;
    background: rgba(236, 236, 236, 0.16);
  }
}

.likely__widget_linkedin {
  fill: #0077b5;
}

.likely__widget_linkedin:active,
.likely__widget_linkedin:focus,
.likely__widget_linkedin:hover {
  background: rgba(191, 221, 236, 0.8);
}

@media (hover: none) {
  .likely__widget_linkedin:active,
  .likely__widget_linkedin:focus,
  .likely__widget_linkedin:hover {
    background: rgba(231, 231, 231, 0.8);
  }
}

.likely-light .likely__widget_linkedin:active,
.likely-light .likely__widget_linkedin:focus,
.likely-light .likely__widget_linkedin:hover {
  text-shadow: #0077b5 0 0 0.25em;
  background: rgba(0, 119, 181, 0.7);
}

@media (hover: none) {
  .likely-light .likely__widget_linkedin:active,
  .likely-light .likely__widget_linkedin:focus,
  .likely-light .likely__widget_linkedin:hover {
    text-shadow: rgba(0, 0, 0, 0.2) 0 0 0.33em;
    background: rgba(236, 236, 236, 0.16);
  }
}

.likely__widget_odnoklassniki {
  fill: #f6903b;
}

.likely__widget_odnoklassniki:active,
.likely__widget_odnoklassniki:focus,
.likely__widget_odnoklassniki:hover {
  background: rgba(252, 227, 206, 0.8);
}

@media (hover: none) {
  .likely__widget_odnoklassniki:active,
  .likely__widget_odnoklassniki:focus,
  .likely__widget_odnoklassniki:hover {
    background: rgba(231, 231, 231, 0.8);
  }
}

.likely-light .likely__widget_odnoklassniki:active,
.likely-light .likely__widget_odnoklassniki:focus,
.likely-light .likely__widget_odnoklassniki:hover {
  text-shadow: #f6903b 0 0 0.25em;
  background: rgba(246, 144, 59, 0.7);
}

@media (hover: none) {
  .likely-light .likely__widget_odnoklassniki:active,
  .likely-light .likely__widget_odnoklassniki:focus,
  .likely-light .likely__widget_odnoklassniki:hover {
    text-shadow: rgba(0, 0, 0, 0.2) 0 0 0.33em;
    background: rgba(236, 236, 236, 0.16);
  }
}

.likely__widget_pinterest {
  fill: #bd081c;
}

.likely__widget_pinterest:active,
.likely__widget_pinterest:focus,
.likely__widget_pinterest:hover {
  background: rgba(238, 193, 198, 0.8);
}

@media (hover: none) {
  .likely__widget_pinterest:active,
  .likely__widget_pinterest:focus,
  .likely__widget_pinterest:hover {
    background: rgba(231, 231, 231, 0.8);
  }
}

.likely-light .likely__widget_pinterest:active,
.likely-light .likely__widget_pinterest:focus,
.likely-light .likely__widget_pinterest:hover {
  text-shadow: #bd081c 0 0 0.25em;
  background: rgba(189, 8, 28, 0.7);
}

@media (hover: none) {
  .likely-light .likely__widget_pinterest:active,
  .likely-light .likely__widget_pinterest:focus,
  .likely-light .likely__widget_pinterest:hover {
    text-shadow: rgba(0, 0, 0, 0.2) 0 0 0.33em;
    background: rgba(236, 236, 236, 0.16);
  }
}

.likely__widget_telegram {
  fill: #34abde;
}

.likely__widget_telegram:active,
.likely__widget_telegram:focus,
.likely__widget_telegram:hover {
  background: rgba(204, 234, 246, 0.8);
}

@media (hover: none) {
  .likely__widget_telegram:active,
  .likely__widget_telegram:focus,
  .likely__widget_telegram:hover {
    background: rgba(231, 231, 231, 0.8);
  }
}

.likely-light .likely__widget_telegram:active,
.likely-light .likely__widget_telegram:focus,
.likely-light .likely__widget_telegram:hover {
  text-shadow: #34abde 0 0 0.25em;
  background: rgba(52, 171, 222, 0.7);
}

@media (hover: none) {
  .likely-light .likely__widget_telegram:active,
  .likely-light .likely__widget_telegram:focus,
  .likely-light .likely__widget_telegram:hover {
    text-shadow: rgba(0, 0, 0, 0.2) 0 0 0.33em;
    background: rgba(236, 236, 236, 0.16);
  }
}

.likely__widget_twitter {
  fill: #00b7ec;
}

.likely__widget_twitter:active,
.likely__widget_twitter:focus,
.likely__widget_twitter:hover {
  background: rgba(191, 237, 250, 0.8);
}

@media (hover: none) {
  .likely__widget_twitter:active,
  .likely__widget_twitter:focus,
  .likely__widget_twitter:hover {
    background: rgba(231, 231, 231, 0.8);
  }
}

.likely-light .likely__widget_twitter:active,
.likely-light .likely__widget_twitter:focus,
.likely-light .likely__widget_twitter:hover {
  text-shadow: #00b7ec 0 0 0.25em;
  background: rgba(0, 183, 236, 0.7);
}

@media (hover: none) {
  .likely-light .likely__widget_twitter:active,
  .likely-light .likely__widget_twitter:focus,
  .likely-light .likely__widget_twitter:hover {
    text-shadow: rgba(0, 0, 0, 0.2) 0 0 0.33em;
    background: rgba(236, 236, 236, 0.16);
  }
}

.likely__widget_vkontakte {
  fill: #526e8f;
}

.likely__widget_vkontakte:active,
.likely__widget_vkontakte:focus,
.likely__widget_vkontakte:hover {
  background: rgba(211, 218, 227, 0.8);
}

@media (hover: none) {
  .likely__widget_vkontakte:active,
  .likely__widget_vkontakte:focus,
  .likely__widget_vkontakte:hover {
    background: rgba(231, 231, 231, 0.8);
  }
}

.likely-light .likely__widget_vkontakte:active,
.likely-light .likely__widget_vkontakte:focus,
.likely-light .likely__widget_vkontakte:hover {
  text-shadow: #526e8f 0 0 0.25em;
  background: rgba(82, 110, 143, 0.7);
}

@media (hover: none) {
  .likely-light .likely__widget_vkontakte:active,
  .likely-light .likely__widget_vkontakte:focus,
  .likely-light .likely__widget_vkontakte:hover {
    text-shadow: rgba(0, 0, 0, 0.2) 0 0 0.33em;
    background: rgba(236, 236, 236, 0.16);
  }
}

.likely__widget_whatsapp {
  fill: #25d366;
}

.likely__widget_whatsapp:active,
.likely__widget_whatsapp:focus,
.likely__widget_whatsapp:hover {
  background: rgba(200, 244, 216, 0.8);
}

@media (hover: none) {
  .likely__widget_whatsapp:active,
  .likely__widget_whatsapp:focus,
  .likely__widget_whatsapp:hover {
    background: rgba(231, 231, 231, 0.8);
  }
}

.likely-light .likely__widget_whatsapp:active,
.likely-light .likely__widget_whatsapp:focus,
.likely-light .likely__widget_whatsapp:hover {
  text-shadow: #25d366 0 0 0.25em;
  background: rgba(37, 211, 102, 0.7);
}

@media (hover: none) {
  .likely-light .likely__widget_whatsapp:active,
  .likely-light .likely__widget_whatsapp:focus,
  .likely-light .likely__widget_whatsapp:hover {
    text-shadow: rgba(0, 0, 0, 0.2) 0 0 0.33em;
    background: rgba(236, 236, 236, 0.16);
  }
}

.likely {
  margin: 0 -5px -10px;
}

.likely .likely__widget {
  line-height: 20px;
  font-size: 14px;
  border-radius: 3px;
  height: 22px;
  margin: 0 5px 10px;
}

.likely .likely__icon {
  width: 22px;
  height: 22px;
}

.likely .likely__button {
  padding: 1px 4px 1px 0;
}

.likely .likely__counter {
  padding: 1px 4px;
}

.likely-big {
  margin: 0 -6px -12px;
}

.likely-big .likely__widget {
  line-height: 28px;
  font-size: 18px;
  border-radius: 4px;
  height: 32px;
  margin: 0 6px 12px;
}

.likely-big .likely__icon {
  width: 32px;
  height: 32px;
}

.likely-big .likely__button {
  padding: 2px 6px 2px 0;
}

.likely-big .likely__counter {
  padding: 2px 6px;
}

.likely-big svg {
  left: 4px;
  top: 4px;
  width: 24px;
  height: 24px;
}

.likely-small {
  margin: 0 -4px -8px;
}

.likely-small .likely__widget {
  line-height: 14px;
  font-size: 12px;
  border-radius: 2px;
  height: 18px;
  margin: 0 4px 8px;
}

.likely-small .likely__icon {
  width: 18px;
  height: 18px;
}

.likely-small .likely__button {
  padding: 2px 3px 2px 0;
}

.likely-small .likely__counter {
  padding: 2px 3px;
}

.likely-small svg {
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
}

/*! Flickity v2.1.1
https://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;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 5px #19f;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: #333;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.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 .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- 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%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

@font-face {
  font-family: "Circe";
  src: url("../fonts/circe/Circe-Light.woff") format("woff"),
    url("../fonts/circe/Circe-Light.woff2") format("woff2"),
    url("../fonts/circe/Circe-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Circe";
  src: url("../fonts/circe/Circe-Regular.woff") format("woff"),
    url("../fonts/circe/Circe-Regular.woff2") format("woff2"),
    url("../fonts/circe/Circe-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Circe";
  src: url("../fonts/circe/Circe-ExtraBold.woff") format("woff"),
    url("../fonts/circe/Circe-ExtraBold.woff2") format("woff2"),
    url("../fonts/circe/Circe-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}

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

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

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

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

/* Media variables*/
/* Color variables*/
/* Other variables */
/* Wordpress Specific*/
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  margin: 0 10px 10px 0;
  float: left;
}

.alignright {
  margin: 0 0 10px 10px;
  float: right;
}

/* */
body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.45;
}

html,
body {
  position: relative;
}

.body_overflow {
  position: fixed;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #4275dc;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

button {
  background-color: transparent;
  padding: 0;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .wrapper {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .wrapper {
    width: 964px;
    padding: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .wrapper {
    width: 1286px;
  }
}

.wrapper_relative {
  position: relative;
}

h2.main-section-title {
  font-style: normal;
  font-weight: 800;
  font-size: 37px;
  line-height: 169.8%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
}

.deputy-card__name span {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 169.8%;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}

.assistive-text {
  display: none;
}

.logo {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

@media only screen and (min-width: 1024px) {
  .link:hover {
    color: #4275dc;
  }
}

.button {
  padding: 0;
  border: 0;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  cursor: pointer;
}

.button_round {
  padding: 0 32px;
  border-radius: 0px;
  height: 35px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 169.8%;
  letter-spacing: 0.15em;
}

@media only screen and (min-width: 768px) {
  .button_round {
    padding: 0 47px;
    border-radius: 0px;
    height: 44px;
  }
}

@media only screen and (min-width: 1366px) {
  .button_round {
    padding: 0 55px;
    height: 50px;
  }
}

.button_blue {
  background-color: #4275dc;
}

.button_blue:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (min-width: 1024px) {
  .button_blue:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #42aedc;
    -webkit-box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
    box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
  }
}

.button_link {
  display: inline-block;
  padding: 0 27px;
  line-height: 35px;
}

@media only screen and (min-width: 768px) {
  .button_link {
    padding: 0 25px;
    line-height: 44px;
  }
}

@media only screen and (min-width: 1366px) {
  .button_link {
    padding: 0 35px;
    line-height: 50px;
  }
}

.button_link .icon-pointer {
  margin-right: 7px;
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}

.button_disabled {
  background: #ccc !important;
}

.button__icon {
  display: inline-block;
  vertical-align: middle;
}

.button svg {
  fill: currentColor;
}

.button_small {
  font-size: 16px;
  line-height: 36px;
  padding: 0 22px;
  height: 36px;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .button_small {
    margin-top: 0;
  }
}

.button-non-active {
  background: #ededed;
  -webkit-box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.01);
  box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.01);
  color: white;
}

.button-non-active:hover {
  background: #ededed;
  -webkit-box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.01);
  box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.01);
  color: white;
}

.button-gradient {
  background-size: 300% 100%;
  -webkit-transition: background-position 0.8s;
  transition: background-position 0.8s;
  line-height: 1;
}

.button-gradient_orange {
  background: #f77638;
  -webkit-box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
  box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.button-gradient_orange:hover {
  background: #f79f38;
  -webkit-box-shadow: 0px 2px 7px rgba(88, 47, 27, 0.11);
  box-shadow: 0px 2px 7px rgba(88, 47, 27, 0.11);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.subscribe-fuckups form button {
  background: #393939;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.subscribe-fuckups form button:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #505050;
  -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.11);
}

.button-link {
  display: inline-block;
  color: #4275dc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media only screen and (min-width: 1024px) {
  .button-link:hover {
    color: #4275dc;
  }
  .button-link:hover .button-link__icon {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.button-link__icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 768px) {
  .button-link__icon {
    margin-left: 10px;
  }
}

.button-link svg {
  fill: currentColor;
}

.rounded-button-link {
  display: inline-block;
  border: 1px solid;
  border-radius: 15px;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  padding: 0 13px;
  -webkit-transition: border-color 0.5s;
  transition: border-color 0.5s;
}

@media only screen and (min-width: 1366px) {
  .rounded-button-link {
    padding: 0 15px;
  }
}

.rounded-button-link__icon {
  display: inline-block;
  margin-left: 12px;
}

.rounded-button-link .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rounded-button-link_primary {
  border-color: rgba(73, 102, 177, 0.15);
  color: #4966b1;
}

@media only screen and (min-width: 1024px) {
  .rounded-button-link_primary:hover {
    border-color: #4275dc;
  }
}

.rounded-button-link_light {
  color: currentColor;
  border: 1px solid rgba(255, 255, 255, 0.07);
  /* shadow */
  -webkit-box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
  box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
  border-radius: 110px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media only screen and (min-width: 1024px) {
  .rounded-button-link_light:hover {
    border-color: #fff;
    background: white;
    color: #282828;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}

.link-more {
  display: table;
  margin: 0 auto;
  padding: 0 27px;
  line-height: 35px;
}

@media only screen and (min-width: 768px) {
  .link-more {
    padding: 0 25px;
    line-height: 44px;
  }
}

@media only screen and (min-width: 1366px) {
  .link-more {
    padding: 0 35px;
    line-height: 50px;
    margin-top: 98px;
    padding-right: 50px;
  }
}

.dashed-link {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px dashed;
}

@media only screen and (min-width: 768px) {
  .dashed-link {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1024px) {
  .dashed-link:hover {
    color: #000;
  }
}

.dashed-link_center {
  display: table;
  margin: 0 auto;
}

.fuckup-screen {
  margin-bottom: 90px;
  margin-top: 115px;
}

.fuckup-screen__block-link-more {
  margin-top: 115px;
}

.last-posts {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .last-posts {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .last-posts {
    padding-left: 0;
  }
}

.last-posts__title {
  display: inline-block;
  position: relative;
  z-index: 2;
  margin: 0 0 38px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  font-weight: 400;
  line-height: 1;
  font-size: 20px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (min-width: 768px) {
  .last-posts__title {
    margin-bottom: 28px;
    font-size: 24px;
  }
}

@media only screen and (min-width: 1024px) {
  .last-posts__title {
    position: absolute;
    margin-bottom: 0;
    top: 0;
    left: calc((100% - 964px) / 2);
    margin-left: -7px;
    -webkit-transform: rotate(-90deg) translateX(-100%);
    transform: rotate(-90deg) translateX(-100%);
  }
}

@media only screen and (min-width: 1366px) {
  .last-posts__title {
    left: calc((100% - 1286px) / 2);
    margin-left: 0;
    font-size: 28px;
  }
}

@media only screen and (min-width: 1024px) {
  .last-posts__title:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.last-posts__title:after,
.last-posts__title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 127px;
  max-width: 100%;
  height: 2px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 1024px) {
  .last-posts__title:after,
  .last-posts__title:before {
    left: auto;
    right: 0;
  }
}

.last-posts__title:before {
  background-color: #4275dc;
}

.last-posts__title:after {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background: #4275dc;
  -webkit-transform-origin: top right;
  transform-origin: top right;
}

.last-posts__title a {
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  padding-bottom: 8px;
  color: #000;
}

.last-posts__slider {
  margin: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 1024px) {
  .last-posts__slider {
    margin-left: auto;
  }
}

@media only screen and (min-width: 1366px) {
  .last-posts__slider {
    margin-left: auto;
  }
}

.last-posts__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.last-posts .article-card {
  margin-right: 18px;
  margin-bottom: 60px;
}

@media only screen and (min-width: 768px) {
  .last-posts .article-card {
    margin-right: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .last-posts .article-card {
    margin-right: 30px;
  }
}

@media only screen and (min-width: 1366px) {
  .last-posts .article-card {
    margin-right: 43px;
  }
}

.text {
  font-weight: 300;
  line-height: 1.6;
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .text {
    line-height: 1.4;
    font-size: 18px;
  }
}

@media only screen and (min-width: 1024px) {
  .text {
    line-height: 1.4;
  }
}

@media only screen and (min-width: 1366px) {
  .text {
    line-height: 1.45;
  }
}

.hero {
  position: relative;
  padding-top: 132px;
  padding-bottom: 74px;
  z-index: 0;
  text-align: center;
  color: #fff;
  background: #272727;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .hero {
    padding-top: 170px;
    padding-bottom: 50px;
  }
}

.hero_overlay-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 117, 220, 0.8);
}

.hero_overlay-dark:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.hero__bg_blur {
  -o-object-position: center center;
  object-position: center center;
  -webkit-filter: blur(60px);
  filter: blur(60px);
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  margin: 0 auto 7px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  .hero__title {
    margin: 0 auto 10px;
    font-size: 40px;
  }
}

.hero__subtitle {
  margin: 0 auto;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  width: 600px;
  text-align: center;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  .hero__subtitle {
    font-size: 12px;
  }
}

@media only screen and (min-width: 1024px) {
  .hero__subtitle {
    font-size: 14px;
  }
}

.hero__subtitle_semitransparent {
  opacity: 0.5;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  color: #fff;
  list-style-type: none;
}

.navigation__item {
  font-size: 16px;
  -webkit-transition: -webkit-box-shadow 0.5s;
  transition: -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s;
  transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}

@media only screen and (min-width: 1024px) {
  .navigation__item {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1366px) {
  .navigation__item {
    font-size: 16px;
  }
}

.navigation__link {
  color: currentColor;
  text-decoration: none;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.custom-content {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

@media only screen and (min-width: 768px) {
  .custom-content {
    font-size: 18px;
    line-height: 1.45;
  }
}

.custom-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 7px;
}

.custom-content h2,
.custom-content h3,
.custom-content h4,
.custom-content h5,
.custom-content h6 {
  margin: 0;
  line-height: 1.2;
}

.custom-content h2,
.custom-content h3,
.custom-content h4,
.custom-content h5 {
  font-weight: 500;
}

.custom-content h2 {
  margin-bottom: 5px;
  font-size: 18px;
}

@media only screen and (min-width: 768px) {
  .custom-content h2 {
    margin-bottom: 14px;
    font-size: 24px;
  }
}

.custom-content h3 {
  margin-top: 18px;
  margin-bottom: 5px;
  font-size: 16px;
}

@media only screen and (min-width: 768px) {
  .custom-content h3 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 21px;
  }
}

.custom-content h4 {
  margin-top: 20px;
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .custom-content h4 {
    margin-top: 16px;
    margin-bottom: -1px;
    font-size: 18px;
  }
}

.custom-content h5 {
  margin-top: 10px;
  font-size: 12px;
}

@media only screen and (min-width: 768px) {
  .custom-content h5 {
    margin-top: 14px;
    margin-bottom: -1px;
    font-size: 16px;
  }
}

.custom-content h6 {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
}

@media only screen and (min-width: 768px) {
  .custom-content h6 {
    margin-top: 12px;
    margin-bottom: -1px;
    font-size: 16px;
  }
}

.custom-content p {
  margin: 5px 0;
}

@media only screen and (min-width: 768px) {
  .custom-content p {
    margin: 7px 0;
  }
}

.custom-content .wp-caption-text {
  margin: 0;
  opacity: 0.7;
  font-style: italic;
  font-size: smaller;
}

.custom-content a {
  color: #4275dc;
}

@media only screen and (min-width: 1024px) {
  .custom-content a:hover {
    color: #4275dc;
  }
}

.custom-content table {
  margin-bottom: 7px;
  line-height: 1.2;
}

.custom-content td {
  border: 1px solid #999;
  padding: 10px;
  background: #ddd;
}

.custom-content tr:nth-child(odd) td {
  background: #eee;
}

.custom-content th,
.custom-content tfoot td {
  padding: 10px;
  background: #bbb !important;
  border: 1px solid #999;
  font-weight: normal;
  text-transform: uppercase;
  text-align: left;
}

.custom-content ol,
.custom-content ul {
  margin: 7px 0;
}

.custom-content blockquote {
  font-style: italic;
}

.decoration {
  width: 1170px;
  height: 370px;
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}

@media only screen and (max-width: 767px) {
  .decoration {
    display: none;
  }
}

.decoration_left {
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  background: linear-gradient(165deg, #4275dc, #f5f5f5 50%);
}

.decoration_right {
  -webkit-transform: rotate(-15deg) scaleX(-1);
  transform: rotate(-15deg) scaleX(-1);
  background: linear-gradient(165deg, #4275dc, #f5f5f5 50%);
}

.flickity-viewport {
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.pagination {
  display: table;
  margin: 33px auto 65px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.pagination__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #e6e7e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 25px;
}

.pagination__container > * {
  padding: 17px 20px 18px;
}

@media only screen and (min-width: 768px) {
  .pagination__container > * {
    border-left: 1px solid #e6e7e8;
  }
}

.pagination__container > *:first-child {
  border-left: 0;
  padding-left: 22px;
}

.pagination__container > *:last-child {
  padding-right: 22px;
}

@media only screen and (max-width: 767px) {
  .pagination__container > *:not(.prev):not(.next) {
    display: none;
  }
}

.pagination a {
  color: inherit;
}

.pagination .current {
  color: #4275dc;
}

.pagination .icon {
  position: relative;
  top: -1px;
  width: 5px;
  height: 8px;
  fill: currentColor;
}

.pagination .prev,
.pagination .next {
  color: #4275dc;
}

.pagination .next .icon {
  margin-left: 11px;
}

.pagination .prev ~ .next {
  border-left: 1px solid #e6e7e8;
}

.pagination .prev .icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  margin-right: 11px;
}

.icon {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.icon_width-auto {
  width: auto;
  max-width: 100%;
  height: 100%;
}

.icon-link-arrow {
  width: 8px;
  height: 13px;
}

.icon-pointer {
  width: 18px;
  height: 21px;
}

.icon-logo {
  width: 100%;
  height: auto;
}

.burger {
  position: relative;
  top: 0;
  z-index: 1;
  width: 60px;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 768px) {
  .burger {
    width: 99px;
  }
}

@media only screen and (min-width: 1024px) {
  .burger {
    position: absolute;
    right: -36px;
    -webkit-transform: scale(0);
    transform: scale(0);
    width: 105px;
    opacity: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .burger:hover .burger__line {
    background-color: #4275dc;
  }
}

.burger__icon {
  position: relative;
  margin: auto;
  width: 20px;
  height: 9px;
  -webkit-transform: translateX(-2px);
  transform: translateX(-2px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 768px) {
  .burger__icon {
    width: 22px;
    height: 23px;
  }
}

.burger__line {
  position: absolute;
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: background-color 0.5s, top 0.5s, bottom 0.5s,
    -webkit-transform 0.5s;
  transition: background-color 0.5s, top 0.5s, bottom 0.5s,
    -webkit-transform 0.5s;
  transition: background-color 0.5s, top 0.5s, bottom 0.5s, transform 0.5s;
  transition: background-color 0.5s, top 0.5s, bottom 0.5s, transform 0.5s,
    -webkit-transform 0.5s;
}

@media only screen and (min-width: 768px) {
  .burger__line {
    width: 31px;
  }
}

.burger__line:nth-child(1) {
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

@media only screen and (min-width: 768px) {
  .burger__line:nth-child(1) {
    -webkit-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0);
  }
}

@media only screen and (min-width: 1024px) {
  .burger__line:nth-child(1) {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.burger__line:nth-child(2) {
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  bottom: 0;
}

@media only screen and (min-width: 768px) {
  .burger__line:nth-child(2) {
    bottom: 0;
    -webkit-transform: translate3d(0, -6px, 0);
    transform: translate3d(0, -6px, 0);
  }
}

@media only screen and (min-width: 1024px) {
  .burger__line:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 0;
  }
}

.burger_opened .burger__line:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger_opened .burger__line:nth-child(2) {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header-search {
  color: #fff;
  -webkit-transition: margin 0.5s;
  transition: margin 0.5s;
  z-index: 1;
  width: 59px;
}

@media only screen and (max-width: 767px) {
  .header-search {
    margin-left: auto;
  }
}

@media only screen and (min-width: 768px) {
  .header-search {
    width: 98px;
  }
}

@media only screen and (min-width: 1024px) {
  .header-search {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
}

.header-search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  width: 100%;
  height: 100%;
}

.header-search__field {
  position: absolute;
  -webkit-transform: scale(0);
  transform: scale(0);
  width: 0;
  right: 120px;
  height: 100%;
  border: 0;
  padding: 0 20px;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  outline: none;
  background-color: transparent;
  font-weight: 300;
  font-size: 14px;
  -webkit-transition: width 0.5s, opacity 0.5s, -webkit-transform 0s 0.5s;
  transition: width 0.5s, opacity 0.5s, -webkit-transform 0s 0.5s;
  transition: width 0.5s, opacity 0.5s, transform 0s 0.5s;
  transition: width 0.5s, opacity 0.5s, transform 0s 0.5s,
    -webkit-transform 0s 0.5s;
}

@media only screen and (min-width: 768px) {
  .header-search__field {
    right: 198px;
    padding: 0 28px;
    font-size: 21px;
  }
}

@media only screen and (min-width: 1024px) {
  .header-search__field {
    right: 158px;
  }
}

@media only screen and (min-width: 1366px) {
  .header-search__field {
    right: 168px;
    font-size: 24px;
  }
}

.header-search__field::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.header-search__field::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.header-search__field:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.header-search__field:-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.header-search__button {
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 1024px) {
  .header-search__button:hover .icon {
    fill: #f77638;
  }
}

.header-search__icon {
  display: block;
}

.header-search__icon_search {
  margin: 0 auto;
  width: 18px;
  height: 18px;
}

@media only screen and (min-width: 768px) {
  .header-search__icon_search {
    width: 24px;
    height: 24px;
  }
}

@media only screen and (min-width: 1024px) {
  .header-search__icon_search {
    margin: 0;
    -webkit-transform: translate3d(34px, 0px, 0);
    transform: translate3d(34px, 0px, 0);
  }
}

@media only screen and (min-width: 1366px) {
  .header-search__icon_search {
    -webkit-transform: translate3d(41px, 0px, 0);
    transform: translate3d(41px, 0px, 0);
  }
}

.header-search .icon {
  fill: currentColor;
  -webkit-transition: fill 0.5s;
  transition: fill 0.5s;
}

.header__column.socials-header {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.socials-header {
  position: relative;
  height: 100%;
  width: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  -webkit-transition: opacity 0.5s 0.5s;
  transition: opacity 0.5s 0.5s;
}

@media only screen and (max-width: 767px) {
  .socials-header {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .socials-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }
}

@media only screen and (min-width: 1024px) {
  .socials-header {
    margin-left: 0;
    width: 87px;
  }
}

@media only screen and (min-width: 1366px) {
  .socials-header {
    width: 100px;
  }
}

.socials-header:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width: 768px) {
  .socials-header:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 82px;
  }
}

@media only screen and (min-width: 1024px) {
  .socials-header:before {
    -webkit-transform: none;
    transform: none;
    width: 36px;
  }
}

@media only screen and (min-width: 1366px) {
  .socials-header:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 82px;
  }
}

.socials-header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.socials-header__item {
  display: block;
  position: absolute;
  color: #fff;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

@media only screen and (min-width: 1024px) {
  .socials-header__item:hover {
    color: #f77638;
  }
}

.socials-header__item_facebook {
  top: 15px;
  width: 17px;
  height: 17px;
}

@media only screen and (min-width: 768px) {
  .socials-header__item_facebook {
    top: 20px;
    right: auto;
    left: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .socials-header__item_facebook {
    top: 15px;
    margin: auto;
    right: 0;
    left: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .socials-header__item_facebook {
    right: auto;
    left: 20px;
  }
}

.socials-header__item_twitter {
  width: 20px;
  height: 17px;
}

@media only screen and (min-width: 768px) {
  .socials-header__item_twitter {
    right: 17px;
    bottom: 21px;
  }
}

@media only screen and (min-width: 1024px) {
  .socials-header__item_twitter {
    margin: auto;
    right: 0;
    bottom: 17px;
    left: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .socials-header__item_twitter {
    right: 17px;
    bottom: 21px;
    left: auto;
  }
}

.socials-header .icon {
  fill: currentColor;
  -webkit-transition: fill 0.5s;
  transition: fill 0.5s;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: absolute;
  z-index: 9000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #272727;
}

@media (max-width: 1023px) {
  .header .wrapper {
    padding-right: 0;
  }
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 59px;
}

@media only screen and (min-width: 768px) {
  .header__row {
    height: 98px;
  }
}

.header__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  width: 115px;
  height: 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .header__logo {
    width: 233px;
    width: 195px;
    height: 44px;
    -webkit-transform: translate3d(-3px, 0px, 0);
    transform: translate3d(-3px, 0px, 0);
    padding: 0 27px 0 0;
  }
}

@media only screen and (min-width: 1024px) {
  .header__logo {
    width: 195px;
  }
}

@media only screen and (min-width: 1366px) {
  .header__logo {
    width: 233px;
    -webkit-transform: translate3d(-2px, -2px, 0);
    transform: translate3d(-2px, -2px, 0);
  }
}

.header__navigation {
  height: 100%;
  -webkit-transition: opacity 0.5s 0.5s;
  transition: opacity 0.5s 0.5s;
  display: none;
}

@media only screen and (min-width: 1024px) {
  .header__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 622px;
  }
}

@media only screen and (min-width: 1366px) {
  .header__navigation {
    width: 883px;
  }
}

.header .navigation__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  height: 100%;
  cursor: pointer;
}

.header .navigation__item_current {
  -webkit-box-shadow: inset 0 3px 0 0 #f77638;
  box-shadow: inset 0 3px 0 0 #f77638;
}

@media only screen and (min-width: 1024px) {
  .header .navigation__item:hover {
    -webkit-box-shadow: inset 0 3px 0 0 #f77638;
    box-shadow: inset 0 3px 0 0 #f77638;
  }
  .header .navigation__item:hover .navigation__link {
    color: #f77638;
  }
}

.header .navigation__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  line-height: 1;
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
}

.header .navigation__link span {
  position: relative;
}

.header .navigation__link span:after {
  content: attr(data-posts-count);
  display: none;
  position: absolute;
  top: -11px;
  right: -3px;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #f77638;
}

@media only screen and (min-width: 1366px) {
  .header .navigation__link span:after {
    display: block;
  }
}

.header.search-opened .socials-header,
.header.search-opened .header__navigation {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

@media only screen and (max-width: 767px) {
  .header.search-opened .logo {
    opacity: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .header.search-opened .header-search {
    margin-left: -100px;
  }
}

.header.search-opened .header-search__field {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: width 0.5s, opacity 0.5s, -webkit-transform 0s;
  transition: width 0.5s, opacity 0.5s, -webkit-transform 0s;
  transition: width 0.5s, opacity 0.5s, transform 0s;
  transition: width 0.5s, opacity 0.5s, transform 0s, -webkit-transform 0s;
  width: calc(100% - 120px);
}

@media only screen and (min-width: 768px) {
  .header.search-opened .header-search__field {
    width: calc(100% - 425px);
  }
}

@media only screen and (min-width: 1024px) {
  .header.search-opened .header-search__field {
    width: calc(100% - 364px);
  }
}

@media only screen and (min-width: 1366px) {
  .header.search-opened .header-search__field {
    width: calc(100% - 403px);
  }
}

.header.search-opened .burger {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media only screen and (max-width: 767px) {
  .header.search-opened .burger__line:nth-child(1) {
    -webkit-transform: rotate(45deg) translate3d(0, -4px, 0);
    transform: rotate(45deg) translate3d(0, -4px, 0);
  }
}

@media only screen and (min-width: 768px) {
  .header.search-opened .burger__line:nth-child(1) {
    top: 0;
    -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
    transform: rotate(45deg) translate3d(0, 0, 0);
  }
}

@media only screen and (max-width: 767px) {
  .header.search-opened .burger__line:nth-child(2) {
    -webkit-transform: rotate(-45deg) translate3d(0, 4px, 0);
    transform: rotate(-45deg) translate3d(0, 4px, 0);
  }
}

@media only screen and (min-width: 768px) {
  .header.search-opened .burger__line:nth-child(2) {
    bottom: 0;
    -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
    transform: rotate(-45deg) translate3d(0, 0, 0);
  }
}

.header.search-opened .burger__icon {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.header.nav-opened {
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media only screen and (max-width: 767px) {
  .header.nav-opened .burger__line:nth-child(1) {
    -webkit-transform: rotate(45deg) translate3d(0, -4px, 0);
    transform: rotate(45deg) translate3d(0, -4px, 0);
  }
}

@media only screen and (min-width: 768px) {
  .header.nav-opened .burger__line:nth-child(1) {
    top: 0;
    -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
    transform: rotate(45deg) translate3d(0, 0, 0);
  }
}

@media only screen and (max-width: 767px) {
  .header.nav-opened .burger__line:nth-child(2) {
    -webkit-transform: rotate(-45deg) translate3d(0, 4px, 0);
    transform: rotate(-45deg) translate3d(0, 4px, 0);
  }
}

@media only screen and (min-width: 768px) {
  .header.nav-opened .burger__line:nth-child(2) {
    bottom: 0;
    -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
    transform: rotate(-45deg) translate3d(0, 0, 0);
  }
}

.header.nav-opened .burger__icon {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.header .wrapper {
  position: relative;
}

.footer {
  position: relative;
  z-index: 1;
  background-color: #1b1b1b;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding-bottom: 27px;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) {
  .footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.footer__row + .footer__row {
  border-top: 1px solid rgba(255, 255, 255, 0.071);
}

@media only screen and (min-width: 768px) {
  .footer__row:first-child {
    padding: 24px 0 22px;
  }
}

@media only screen and (min-width: 768px) {
  .footer__row:nth-child(2) {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 35px 0 55px;
  }
}

@media only screen and (min-width: 1024px) {
  .footer__row:nth-child(2) {
    padding: 36px 2px;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__row:nth-child(2) {
    padding: 42px 3px 46px;
  }
}

.footer__column + .footer__column {
  border-left: 0;
}

.footer__column.socials-header {
  width: 100px;
}

.footer__column.link-old-site {
  width: auto;
}

@media only screen and (max-width: 767px) {
  .footer__column {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .footer__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer__column + .footer__column {
    border-top: 1px solid rgba(255, 255, 255, 0.071);
  }
}

@media only screen and (min-width: 768px) {
  .footer__column + .footer__column {
    border-left: 1px solid rgba(255, 255, 255, 0.071);
  }
}

@media only screen and (min-width: 768px) {
  .footer__column:last-child {
    width: 100%;
    border-left: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__column:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.071);
  }
}

.footer__logo {
  display: block;
  margin: 0 auto;
  width: 120px;
  height: 25px;
  padding: 22px 0 18px;
}

@media only screen and (min-width: 768px) {
  .footer__logo {
    width: 185px;
    height: 39px;
    padding: 25px 25px 29px 0;
  }
}

@media only screen and (min-width: 1024px) {
  .footer__logo {
    padding: 25px 55px 29px 0;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__logo {
    padding: 25px 40px 29px 0;
  }
}

.footer__navigation {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 7px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 883px;
}

@media only screen and (min-width: 768px) {
  .footer__navigation {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: auto;
    padding: 0 17px;
  }
}

@media only screen and (min-width: 1024px) {
  .footer__navigation {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__navigation {
    width: 549px;
    padding: 0 40px 0 40px;
  }
}

.footer .navigation__link span:after {
  content: attr(data-posts-count);
  display: none;
  position: absolute;
  top: -11px;
  right: -3px;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  font-style: normal;
  font-weight: 800;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.13em;
  color: #f77638;
}

.footer .navigation__link span:after {
  display: block;
}

.footer .navigation__link span {
  position: relative;
}

.footer .navigation__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer .navigation__item {
  padding: 7px 14px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  height: 100%;
  cursor: pointer;
  font-size: 16px;
  -webkit-transition: -webkit-box-shadow 0.5s;
  transition: -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s;
  transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}

@media only screen and (min-width: 768px) {
  .footer .navigation__item {
    padding: 0 14px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 1024px) {
  .footer .navigation__item {
    padding: 0 22px;
  }
}

@media only screen and (min-width: 1366px) {
  .footer .navigation__item {
    padding: 0;
    font-size: 15px;
  }
}

.footer .navigation__item_current {
  color: #f77638;
}

.footer .navigation__item:hover {
  -webkit-box-shadow: inset 0 3px 0 0 #f77638;
  box-shadow: inset 0 3px 0 0 #f77638;
}

.footer .navigation__item:hover .navigation__link {
  color: rgba(255, 255, 255, 0.3);
}

.footer .navigation__item:hover + .navigation__item {
  border-left: 0;
}

@media only screen and (min-width: 1024px) {
  .footer .navigation__item:hover .navigation__link {
    color: #f77638;
  }
}

.footer__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.429;
  color: rgba(255, 255, 255, 0.2);
}

.footer__copy {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 18px;
  margin-bottom: 16px;
}

@media only screen and (min-width: 768px) {
  .footer__copy {
    margin-top: 0;
    margin-bottom: 18px;
  }
}

@media only screen and (min-width: 1024px) {
  .footer__copy {
    margin-right: 66px;
    margin-bottom: 0;
  }
}

.footer__details {
  margin-bottom: 15px;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .footer__details {
    margin-bottom: 18px;
  }
}

@media only screen and (min-width: 1024px) {
  .footer__details {
    margin-bottom: 0;
    width: 400px;
  }
}

@media only screen and (min-width: 1366px) {
  .footer__details {
    width: auto;
  }
}

.footer__details img {
  display: block;
  margin: 0 auto;
  width: 200px;
}

@media only screen and (min-width: 768px) {
  .footer__details img {
    margin: 0;
  }
}

.footer__dev {
  -webkit-transition: color #f77638;
  transition: color #f77638;
}

@media only screen and (min-width: 1024px) {
  .footer__dev {
    margin-left: auto;
  }
}

@media only screen and (min-width: 1024px) {
  .footer__dev:hover {
    color: #f77638;
  }
}

.footer__link-old-site {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer__row:nth-child(1) {
  padding: 0px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.071);
  border-bottom: 1px solid rgba(255, 255, 255, 0.071);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 98px;
}

.footer__column + .footer__column {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__column.socials-header {
  width: 100px;
}

.footer__column.link-old-site {
  width: auto;
}

.footer__column + .footer__column {
  border-left: 0;
}

@media only screen and (min-width: 1366px) {
  .header__navigation {
    width: 800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-transition: opacity 0.5s 0.5s;
    transition: opacity 0.5s 0.5s;
  }
}

.socials-footer {
  width: 100%;
  padding: 15px 0 20px;
}

@media only screen and (min-width: 768px) {
  .socials-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 21px;
    padding: 42px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.071);
  }
}

@media only screen and (min-width: 1024px) {
  .socials-footer {
    margin-top: 21px;
    padding: 42px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.071);
  }
}

@media only screen and (min-width: 1366px) {
  .socials-footer {
    margin-left: auto;
    margin-top: 8px;
    width: auto;
    padding: 0;
    border-top: 0;
  }
}

.socials-footer__title {
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

@media only screen and (min-width: 768px) {
  .socials-footer__title {
    margin-bottom: 0;
    margin-right: 21px;
    font-size: 16px;
  }
}

.socials-footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .socials-footer__items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 18px;
  }
}

.socials-footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.socials-footer__item + .socials-footer__item {
  margin-left: 24px;
}

@media only screen and (min-width: 768px) {
  .socials-footer__item + .socials-footer__item {
    margin-left: 28px;
  }
}

@media only screen and (min-width: 1024px) {
  .socials-footer__item:hover {
    color: #4275dc;
  }
  .socials-footer__item:hover .icon {
    fill: #4275dc;
  }
}

.socials-footer__icon {
  display: inline-block;
  margin-right: 12px;
}

.socials-footer__icon_facebook {
  width: 19px;
  height: 19px;
}

@media only screen and (min-width: 768px) {
  .socials-footer__icon_facebook {
    width: 23px;
    height: 23px;
  }
}

.socials-footer__icon_twitter {
  width: 23px;
  height: 19px;
}

@media only screen and (min-width: 768px) {
  .socials-footer__icon_twitter {
    width: 28px;
    height: 23px;
  }
}

.socials-footer .icon {
  fill: #4275dc;
  -webkit-transition: fill 0.5s;
  transition: fill 0.5s;
}

.select2-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir="rtl"]
  .select2-selection--single
  .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container
  .select2-search--inline
  .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

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

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border-radius: 4px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #999;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir="rtl"]
  .select2-selection--single
  .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"]
  .select2-selection--single
  .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled
  .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled
  .select2-selection--single
  .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered
  li {
  list-style: none;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice,
.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__placeholder,
.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-search--inline {
  float: right;
}

.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled
  .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled
  .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role="group"] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled="true"] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__group {
  padding-left: 0;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, white),
    to(#eeeeee)
  );
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic
  .select2-selection--single
  .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic
  .select2-selection--single
  .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic
  .select2-selection--single
  .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic
  .select2-selection--single
  .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, #eeeeee),
    to(#cccccc)
  );
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"]
  .select2-selection--single
  .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"]
  .select2-selection--single
  .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open
  .select2-selection--single
  .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above
  .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(white),
    color-stop(50%, #eeeeee)
  );
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below
  .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, #eeeeee),
    to(white)
  );
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic
  .select2-selection--multiple
  .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic
  .select2-selection--multiple
  .select2-selection__clear {
  display: none;
}

.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open
  .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above
  .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role="group"] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled="true"] {
  color: grey;
}

.select2-container--classic
  .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-wrapper.scroll--rtl {
  direction: rtl;
}

.scroll-element {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: none;
}

.scroll-element div {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e0e0e0;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c2c2c2;
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_track {
  left: -12px;
}

.scrollbar-inner
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_track {
  top: -12px;
}

.scrollbar-inner
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_size {
  left: -12px;
}

.scrollbar-inner
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_size {
  top: -12px;
}

/*************** SIMPLE OUTER SCROLLBAR ***************/
.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-outer > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-outer > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 12px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
  height: 8px;
  top: 2px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  width: 8px;
}

.scrollbar-outer > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-outer > .scroll-element .scroll-element_track {
  background-color: #eeeeee;
}

.scrollbar-outer > .scroll-element .scroll-element_outer,
.scrollbar-outer > .scroll-element .scroll-element_track,
.scrollbar-outer > .scroll-element .scroll-bar {
  border-radius: 8px;
}

.scrollbar-outer > .scroll-element .scroll-bar {
  background-color: #d9d9d9;
}

.scrollbar-outer > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2;
}

.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
  left: -12px;
  margin-left: 12px;
}

.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
  top: -12px;
  margin-top: 12px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
  min-width: 10px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
  min-height: 10px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-outer
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_track {
  left: -14px;
}

.scrollbar-outer
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_track {
  top: -14px;
}

.scrollbar-outer
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_size {
  left: -14px;
}

.scrollbar-outer
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_size {
  top: -14px;
}

/*************** SCROLLBAR MAC OS X ***************/
.scrollbar-macosx > .scroll-element,
.scrollbar-macosx > .scroll-element div {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-macosx > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-macosx > .scroll-element .scroll-element_track {
  display: none;
}

.scrollbar-macosx > .scroll-element .scroll-bar {
  background-color: #6c6e71;
  display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  border-radius: 7px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.scrollbar-macosx:hover > .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.scrollbar-macosx > .scroll-element.scroll-x {
  bottom: 0px;
  height: 0px;
  left: 0;
  min-width: 100%;
  overflow: visible;
  width: 100%;
}

.scrollbar-macosx > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0px;
  top: 0;
  width: 0px;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar {
  height: 7px;
  min-width: 10px;
  top: -9px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar {
  left: -9px;
  min-height: 10px;
  width: 7px;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer {
  left: 2px;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer {
  top: 2px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-macosx
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_size {
  left: -11px;
}

.scrollbar-macosx
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_size {
  top: -11px;
}

/*************** SCROLLBAR LIGHT ***************/
.scrollbar-light > .scroll-element,
.scrollbar-light > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-light > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-light > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-light > .scroll-element .scroll-element_outer {
  border-radius: 10px;
}

.scrollbar-light > .scroll-element .scroll-element_size {
  background: #dbdbdb;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#dbdbdb),
    to(#e8e8e8)
  );
  background: linear-gradient(to right, #dbdbdb 0%, #e8e8e8 100%);
  border-radius: 10px;
}

.scrollbar-light > .scroll-element.scroll-x {
  bottom: 0;
  height: 17px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-light > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 17px;
}

.scrollbar-light > .scroll-element .scroll-bar {
  background: #fefefe;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fefefe),
    to(#f5f5f5)
  );
  background: linear-gradient(to right, #fefefe 0%, #f5f5f5 100%);
  border: 1px solid #dbdbdb;
  border-radius: 10px;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-light > .scroll-content.scroll-scrolly_visible {
  left: -17px;
  margin-left: 17px;
}

.scrollbar-light > .scroll-content.scroll-scrollx_visible {
  top: -17px;
  margin-top: 17px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-bar {
  height: 10px;
  min-width: 10px;
  top: 0px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-bar {
  left: 0px;
  min-height: 10px;
  width: 10px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer {
  height: 12px;
  left: 2px;
  top: 2px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  top: 2px;
  width: 12px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-light
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_size {
  left: -19px;
}

.scrollbar-light
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_size {
  top: -19px;
}

.scrollbar-light
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_track {
  left: -19px;
}

.scrollbar-light
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_track {
  top: -19px;
}

/*************** SCROLLBAR RAIL ***************/
.scrollbar-rail > .scroll-element,
.scrollbar-rail > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-rail > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-rail > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-rail > .scroll-element .scroll-element_size {
  background-color: #999;
  background-color: rgba(0, 0, 0, 0.3);
}

.scrollbar-rail
  > .scroll-element
  .scroll-element_outer:hover
  .scroll-element_size {
  background-color: #666;
  background-color: rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  min-width: 100%;
  padding: 3px 0 2px;
  width: 100%;
}

.scrollbar-rail > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  padding: 0 2px 0 3px;
  right: 0;
  top: 0;
  width: 12px;
}

.scrollbar-rail > .scroll-element .scroll-bar {
  background-color: #d0b9a0;
  border-radius: 2px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* scrollbar height/width & offset from container borders */
.scrollbar-rail > .scroll-content.scroll-scrolly_visible {
  left: -17px;
  margin-left: 17px;
}

.scrollbar-rail > .scroll-content.scroll-scrollx_visible {
  margin-top: 17px;
  top: -17px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-bar {
  height: 10px;
  min-width: 10px;
  top: 1px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-bar {
  left: 1px;
  min-height: 10px;
  width: 10px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer {
  height: 15px;
  left: 5px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size {
  height: 2px;
  left: -10px;
  top: 5px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer {
  top: 5px;
  width: 15px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size {
  left: 5px;
  top: -10px;
  width: 2px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-rail
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_size {
  left: -25px;
}

.scrollbar-rail
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_size {
  top: -25px;
}

.scrollbar-rail
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_track {
  left: -25px;
}

.scrollbar-rail
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_track {
  top: -25px;
}

/*************** SCROLLBAR DYNAMIC ***************/
.scrollbar-dynamic > .scroll-element,
.scrollbar-dynamic > .scroll-element div {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-dynamic > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-x {
  bottom: 2px;
  height: 7px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 2px;
  top: 0;
  width: 7px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_outer {
  opacity: 0.3;
  border-radius: 12px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_size {
  background-color: #cccccc;
  opacity: 0;
  border-radius: 12px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.scrollbar-dynamic > .scroll-element .scroll-bar {
  background-color: #6c6e71;
  border-radius: 7px;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
  bottom: 0;
  height: 7px;
  min-width: 24px;
  top: auto;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
  left: auto;
  min-height: 24px;
  right: 0;
  width: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
  bottom: 0;
  top: auto;
  left: 2px;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
  left: auto;
  right: 0;
  top: 2px;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-dynamic
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_size {
  left: -11px;
}

.scrollbar-dynamic
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_size {
  top: -11px;
}

/* hover & drag */
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer {
  overflow: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.scrollbar-dynamic
  > .scroll-element:hover
  .scroll-element_outer
  .scroll-element_size,
.scrollbar-dynamic
  > .scroll-element.scroll-draggable
  .scroll-element_outer
  .scroll-element_size {
  opacity: 1;
}

.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar,
.scrollbar-dynamic
  > .scroll-element.scroll-draggable
  .scroll-element_outer
  .scroll-bar {
  height: 100%;
  width: 100%;
  border-radius: 12px;
}

.scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer,
.scrollbar-dynamic
  > .scroll-element.scroll-x.scroll-draggable
  .scroll-element_outer {
  height: 20px;
  min-height: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer,
.scrollbar-dynamic
  > .scroll-element.scroll-y.scroll-draggable
  .scroll-element_outer {
  min-width: 7px;
  width: 20px;
}

/*************** SCROLLBAR GOOGLE CHROME ***************/
.scrollbar-chrome > .scroll-element,
.scrollbar-chrome > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-chrome > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-chrome > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-chrome > .scroll-element .scroll-element_track {
  background: #f1f1f1;
  border: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-x {
  bottom: 0;
  height: 16px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-chrome > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 16px;
}

.scrollbar-chrome > .scroll-element .scroll-bar {
  background-color: #d9d9d9;
  border: 1px solid #bdbdbd;
  cursor: default;
  border-radius: 2px;
}

.scrollbar-chrome > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2;
  border-color: #a9a9a9;
}

.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
  border-color: #7e7e7e;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-chrome > .scroll-content.scroll-scrolly_visible {
  left: -16px;
  margin-left: 16px;
}

.scrollbar-chrome > .scroll-content.scroll-scrollx_visible {
  top: -16px;
  margin-top: 16px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar {
  height: 8px;
  min-width: 10px;
  top: 3px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar {
  left: 3px;
  min-height: 10px;
  width: 8px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer {
  border-left: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track {
  height: 14px;
  left: -3px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size {
  height: 14px;
  left: -4px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer {
  border-top: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track {
  top: -3px;
  width: 14px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
  width: 14px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-chrome
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_size {
  left: -19px;
}

.scrollbar-chrome
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_size {
  top: -19px;
}

.scrollbar-chrome
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_track {
  left: -19px;
}

.scrollbar-chrome
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_track {
  top: -19px;
}

.scrollbar-inner > .scroll-element.scroll-y {
  right: 5px;
  width: 1px;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.05);
}

.scrollbar-inner > .scroll-element .scroll-bar {
  opacity: 1;
  background-color: rgba(73, 102, 177, 0.5);
}

.scrollbar-inner > .scroll-element.scroll-y {
  top: 4px;
  max-height: calc(100% - 8px);
}

.select2-container {
  font-size: 16px;
  color: #000;
}

.select2-container--open .select2-dropdown--below:before {
  content: "";
  position: absolute;
  width: calc(100% + 55px);
  height: calc(100% + 53px);
  left: -43px;
  top: -40px;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0px 24px 65px 0px rgba(17, 44, 113, 0.25);
  box-shadow: 0px 24px 65px 0px rgba(17, 44, 113, 0.25);
  z-index: -1;
}

.select2-container--open .select2-dropdown--above:before {
  content: "";
  position: absolute;
  width: calc(100% + 55px);
  height: calc(100% + 53px);
  left: -43px;
  top: -20px;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0px 24px 65px 0px rgba(17, 44, 113, 0.25);
  box-shadow: 0px 24px 65px 0px rgba(17, 44, 113, 0.25);
}

.select2-container .select2-selection--single {
  outline: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 4px 4px 0 4px;
  border-color: #000 transparent transparent transparent;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 0 4px 4px 4px;
  border-color: transparent transparent #000 transparent;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  margin-left: 0;
  margin-top: -4px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 8px;
  line-height: inherit;
  color: currentColor;
}

.select2-container--default .select2-selection--single {
  border: 0;
  border-bottom: 1px solid #eff1f7;
  border-radius: 0;
}

.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above {
  border: none;
  border-radius: 0;
}

.select2-container--open.select2-container--default .select2-selection--single {
  border-color: transparent;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  color: currentColor;
  background-color: transparent;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  color: #4275dc;
  background-color: transparent;
}

.select2-results__option {
  padding: 5px 10px 5px 0;
  line-height: 1.2;
}

.select2-dropdown {
  z-index: 1111;
}

.select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  z-index: 1111;
  font-size: 16px;
  color: #000;
}

@media only screen and (min-width: 768px) {
  .select {
    display: block;
    width: auto;
  }
}

.select_opened {
  z-index: 1112;
}

.select__body {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

@media only screen and (min-width: 768px) {
  .select__body {
    width: 291px;
  }
}

@media only screen and (min-width: 1024px) {
  .select__body {
    width: 179px;
    width: 80%;
  }
}

.select__icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: 1px;
  margin-right: 6px;
  width: 22px;
  height: 22px;
}

@media only screen and (min-width: 768px) {
  .select__icon {
    margin-top: -3px;
    margin-right: 3px;
    width: 24px;
    height: 24px;
  }
}

.select.region .icon {
  fill: #4275dc;
}

.select.fraction .icon {
  fill: #4275dc;
}

.select-search__body {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  max-width: 100%;
}

@media only screen and (min-width: 768px) {
  .select-search__body {
    width: 291px;
  }
}

@media only screen and (min-width: 1024px) {
  .select-search__body {
    width: 720px;
  }
}

.select2-search--dropdown {
  position: relative;
  margin-bottom: 20px;
}

.select2-search--dropdown .select2-search__field {
  outline: none;
  border-radius: 7px;
}

.filter {
  border-radius: 5px;
}

.filter_opened .filter-button__arrow {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.filter_opened .filter__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.filter__panel {
  display: none;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 15px 20px;
  border-top: 1px solid #eff1f7;
  -webkit-box-shadow: yellowgreen;
  box-shadow: yellowgreen;
}

@media only screen and (min-width: 768px) {
  .filter__panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px 20px 20px 18px;
    border: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .filter__panel {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 35px 20px 18px;
  }
}

@media only screen and (min-width: 1366px) {
  .filter__panel {
    margin-right: 0;
    padding: 20px 0px;
  }
}

.filter__panel .filter .select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
}

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

.filter .small-search {
  margin: 0 0 18px;
  width: 100%;
}

.filter .small-search-element {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: calc((100% - 480px) / 2);
}

@media only screen and (min-width: 768px) {
  .filter .small-search {
    margin: 0 auto 0 0;
    width: 324px;
  }
}

@media only screen and (min-width: 1024px) {
  .filter .small-search {
    width: 222px;
  }
}

@media only screen and (min-width: 1366px) {
  .filter .small-search {
    width: 282px;
  }
}

.filter .small-search-single {
  margin: auto;
}

@media only screen and (min-width: 768px) {
  .filter .small-search-single {
    width: 320px;
  }
}

@media only screen and (min-width: 1024px) {
  .filter .small-search-single {
    width: 250px;
  }
}

@media only screen and (min-width: 1366px) {
  .filter .small-search-single {
    width: 420px;
  }
}

.filter .major-or-fraction {
  margin-left: 0px;
}

.filter .type-deputy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.filter .type-deputy div:nth-child(1) {
  margin-right: 32px;
}

.filter .type-deputy .major-or-fraction__item {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 169.8%;
  text-align: center;
  color: rgba(0, 0, 0, 0.15);
  padding-right: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.filter .type-deputy .major-or-fraction__item.active {
  color: #4275dc;
}

.filter .type-deputy .major-or-fraction__item:hover {
  color: #4275dc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (min-width: 768px) {
  .filter .select {
    margin-top: 8px;
    margin-bottom: 14px;
  }
}

@media only screen and (min-width: 1024px) {
  .filter .select {
    margin-top: 4px;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .filter .select {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .filter .select + .select {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .filter .select + .select {
    margin-left: 30px;
  }
}

.filter-button {
  display: none;
  height: 45px;
  padding: 0 17px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .filter-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.filter-button__icon {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 1px;
  color: #4275dc;
  background-color: currentColor;
}

.filter-button__icon:after,
.filter-button__icon:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
}

.filter-button__icon:after {
  bottom: -6px;
}

.filter-button__icon:before {
  top: -6px;
}

.filter-button__label {
  display: inline-block;
  margin-left: 9px;
  font-weight: 400;
  font-size: 16px;
}

.filter-button__arrow {
  display: inline-block;
  margin-left: auto;
  border-width: 4px 4px 0 4px;
  border-color: #000 transparent transparent transparent;
  border-style: solid;
}

.small-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 9px 14px 10px 17px;
  border-bottom: 1px solid #4275dc;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}

@media only screen and (min-width: 768px) {
  .small-search {
    padding: 9px 18px 10px 22px;
  }
}

.small-search__input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  background-color: transparent;
  color: currentColor;
}

.small-search__input::-webkit-input-placeholder {
  color: currentColor;
}

.small-search__input:-ms-input-placeholder {
  color: currentColor;
}

.small-search__input::-ms-input-placeholder {
  color: currentColor;
}

.small-search__input::placeholder {
  color: currentColor;
}

.small-search__input::-moz-placeholder {
  color: currentColor;
}

.small-search__input::-webkit-input-placeholder {
  color: currentColor;
}

.small-search__input:-ms-input-placeholder {
  color: currentColor;
}

.small-search__icon {
  display: inline-block;
  margin-left: 5px;
  width: 18px;
  height: 18px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.small-search .icon {
  fill: #4275dc;
}

.small-search_light {
  color: #fff;
  border-color: rgba(239, 241, 247, 0.15);
}

.small-search_light .icon {
  fill: currentColor;
}

.first-screen {
  background-color: #272727;
  padding: 100px 0 0px;
  text-align: center;
  color: #fff;
  position: relative;
}

.first-screen .zerro_corruption {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.first-screen .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

.first-screen__image.first-screen__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: 100%;
  width: 600px;
  z-index: 9001;
  margin-top: -15px;
}

.first-screen .first-screen-block {
  width: 608px;
  padding-top: 40px;
}

.first-screen .first-screen-block h2 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 27px;
  line-height: 169.8%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  color: white;
}

.first-screen .first-screen-block h2 span {
  color: #f77638;
}

.first-screen .first-screen-block__description {
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  color: #ffffff;
  width: 450px;
}

.first-screen .first-screen-block__link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  padding-bottom: 30px;
  color: #ffffff;
  font-size: 16px;
  line-height: 160.1%;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.first-screen .first-screen-block__link:after {
  -webkit-box-sizing: inherit;
  position: relative;
  box-sizing: inherit;
  border: solid #ffffff;
  border-width: 0px 1px 1px 0px;
  content: "";
  height: 4px;
  width: 4px;
  right: -11px;
  top: 11px;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.first-screen .first-screen-block__link:hover {
  color: #f77638;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.first-screen .first-screen-block__link:hover:after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-color: #f77638;
}

.first-screen .first-screen-block__block-button {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 43px 0 52px 0;
}

.first-screen .first-screen-block__block-button button {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  line-height: 169.8%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0 31px;
  height: 50px;
  margin-right: 30px;
}

.first-screen .first-screen-block__block-button button:nth-child(1) {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  line-height: 169.8%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0 40px;
  height: 50px;
  margin-right: 30px;
  background: #f77638;
  -webkit-box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
  box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.first-screen .first-screen-block__block-button button:nth-child(1):hover {
  background: #f79f38;
  -webkit-box-shadow: 0px 2px 7px rgba(88, 47, 27, 0.11);
  box-shadow: 0px 2px 7px rgba(88, 47, 27, 0.11);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.first-screen .button-gray {
  background: #393939;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.first-screen .button-gray:hover {
  background: #505050;
  -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.11);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.statistics-block {
  background: #1b1b1b;
  padding: 115px 0 100px;
  margin-top: 80px;
}

.statistics-block__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 15px 0 18px;
}

.statistics-block-item {
  width: 20%;
}

.statistics-block-item.deputy-item {
  width: 25%;
}

.statistics-block .statistics-block__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.statistics-block .statistics-block__items .statistics-deputy {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.statistics-block .statistics-block__title {
  font-weight: 900;
  font-size: 30px;
  line-height: 169.8%;
  opacity: 1;
  color: #ffffff;
  text-align: left;
  margin: 0 auto 110px;
}

.statistics-block .statistics-block-item {
  font-family: "Montserrat", sans-serif;
  padding: 0 15px 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 210px;
}

.statistics-block .statistics-block-item__number {
  font-style: normal;
  font-weight: bold;
  font-size: 70px;
  line-height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #f77638;
  min-height: 70px;
}

.statistics-block .statistics-block-item__number.deputy {
  color: #4275dc;
}

.statistics-block .statistics-block-item__label {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 160.1%;
  min-height: 70px;
  color: #ffffff;
}

.statistics-slider {
  background: #272727;
  overflow: hidden;
}

.statistics-slider .statistics-slider__wrapper {
  padding: 80px 10px;
  min-height: 60px;
}

.statistics-slider .statistics-slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 90px;
  width: 475px !important;
}

.statistics-slider .statistics-slider-item .statistics-slider-item__number {
  font-style: normal;
  font-weight: bold;
  font-size: 90px;
  line-height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #393939;
}

.statistics-slider .statistics-slider-item .statistics-slider-item__label {
  font-weight: 300;
  font-size: 16px;
  line-height: 160.1%;
  color: rgba(255, 255, 255, 0.2);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 150px;
  text-align: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 40px;
}

.button-orange {
  background: #f77638;
}

.button-arrow-down {
  position: relative;
}

.button-arrow-down:after {
  border: solid #4966b100;
  border-width: 5px;
  border-top: 5px solid #ffffff;
  content: "";
  height: 11px;
  right: 21px;
  position: absolute;
  width: 8px;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  bottom: 16px;
}

.button-underscore {
  position: relative;
}

.button-underscore:after {
  border: solid #fafafa;
  border-width: 0 0px 3px 0px;
  content: "";
  height: 3px;
  height: 16px;
  right: 36px;
  position: absolute;
  width: 9px;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.button-underscore-fraction-donate {
  position: relative;
  padding: 0px;
  width: 100%;
}

@media only screen and (max-width: 1365px) {
  .button-underscore-fraction-donate {
    width: 120%;
  }
}

@media only screen and (max-width: 1023px) {
  .button-underscore-fraction-donate {
    padding: 0px 20px;
    font-size: 11px;
    width: 90%;
  }
}

@media only screen and (max-width: 767px) {
  .button-underscore-fraction-donate {
    width: 85%;
    padding: 0px;
  }
}

.button-underscore-fraction-donate:after {
  border: solid #fafafa;
  border-width: 0 0px 3px 0px;
  content: "";
  height: 16px;
  right: 11px;
  position: absolute;
  width: 9px;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

@media only screen and (max-width: 1365px) {
  .button-underscore-fraction-donate:after {
    right: 10px;
  }
}

@media only screen and (max-width: 1023px) {
  .button-underscore-fraction-donate:after {
    right: 21px;
  }
}

@media only screen and (max-width: 767px) {
  .button-underscore-fraction-donate:after {
    right: 22px;
  }
}

.button-underscore-first-screen {
  position: relative;
}

.button-underscore-first-screen:after {
  border: solid #fafafa;
  border-width: 0px 0px 3px 0px;
  content: "";
  height: 0px;
  height: 20px;
  right: 24px;
  position: absolute;
  width: 9px;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.button-arrow-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.button-arrow-right:after {
  -webkit-box-sizing: inherit;
  position: relative;
  box-sizing: inherit;
  border: solid #ffffff;
  border-width: 0px 1px 1px 0px;
  content: "";
  height: 4px;
  width: 4px;
  right: -11px;
  top: 11px;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.intro {
  padding: 82px 0 47px;
  background-color: #4275dc;
  text-align: center;
  color: #fff;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .intro {
    padding: 125px 0 50px;
    line-height: 1.75;
  }
}

@media only screen and (min-width: 1024px) {
  .intro {
    padding: 125px 0 58px;
  }
}

@media only screen and (min-width: 1366px) {
  .intro {
    padding: 119px 0 34px;
    text-align: left;
  }
}

.intro__title {
  display: inline;
  padding-bottom: 1px;
  font-weight: 500;
  font-size: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

@media only screen and (min-width: 768px) {
  .intro__title {
    padding-bottom: 9px;
    font-size: 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .intro__title {
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1366px) {
  .intro__title {
    margin: 0 0 0 56px;
  }
}

.intro__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
}

@media only screen and (min-width: 1024px) {
  .intro__items {
    margin-top: 17px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width: 1366px) {
  .intro__items {
    margin-top: 2px;
  }
}

@media only screen and (min-width: 768px) {
  .intro__elections2019 {
    padding: 125px 0 140px;
    line-height: 1.75;
  }
}

@media only screen and (min-width: 1024px) {
  .intro__elections2019 {
    padding: 125px 0 148px;
  }
}

@media only screen and (min-width: 1366px) {
  .intro__elections2019 {
    padding: 119px 0 134px;
    text-align: left;
  }
}

.intro-item {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding: 10px 0;
  color: inherit;
}

@media only screen and (min-width: 768px) {
  .intro-item {
    padding: 10px 0 18px;
  }
}

@media only screen and (min-width: 1024px) {
  .intro-item {
    padding: 0 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
}

@media only screen and (min-width: 1366px) {
  .intro-item {
    padding: 25px 0 32px;
  }
}

@media only screen and (min-width: 1024px) {
  .intro-item:not(.intro-item_last):hover {
    color: #4275dc;
  }
}

.intro-item:not(.intro-item_last):hover .intro-item__icon {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.intro-item_last {
  border-radius: 10px;
  background-color: rgba(75, 118, 196, 0.6);
}

.intro-item_last:before {
  content: "";
  width: 23px;
  height: 23px;
  display: block;
  margin: auto;
  position: absolute;
  top: -21px;
  bottom: 0;
  left: -11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #496fbd;
  border-radius: 2px;
}

@media only screen and (max-width: 767px) {
  .intro-item_last:before {
    width: 18px;
    height: 18px;
    top: -16px;
    left: -8px;
  }
}

.intro-item_last .intro-item__text {
  display: block;
  font-weight: 500;
  text-align: center;
}

.intro-item__icon {
  margin-bottom: 4px;
  height: 128px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 768px) {
  .intro-item__icon {
    margin-bottom: 4px;
    height: 280px;
  }
}

@media only screen and (min-width: 1024px) {
  .intro-item__icon {
    margin-bottom: 4px;
    height: 225px;
  }
}

@media only screen and (min-width: 1366px) {
  .intro-item__icon {
    margin-bottom: 12px;
    height: 273px;
  }
}

.intro-item__text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  padding: 0px 10px 0 2px;
}

@media only screen and (min-width: 768px) {
  .intro-item__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 15%;
    font-size: 16px;
  }
}

@media only screen and (min-width: 1024px) {
  .intro-item__text {
    padding: 0 15px;
  }
}

@media only screen and (min-width: 1366px) {
  .intro-item__text {
    padding: 0 48px;
  }
}

.intro-item__number {
  display: block;
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .intro-item__number {
    margin-right: 10px;
  }
}

@media only screen and (min-width: 1024px) {
  .intro-item__number {
    margin-right: 10px;
  }
}

@media only screen and (min-width: 1366px) {
  .intro-item__number {
    margin-right: 23px;
  }
}

.articles-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin: 60px 0 0;
}

@media only screen and (min-width: 768px) {
  .articles-list {
    margin: 90px 0 0;
  }
}

@media (min-width: 600px) {
  .articles-list {
    margin: 90px 0 0;
  }
}

@media only screen and (min-width: 1024px) {
  .articles-list {
    margin: 90px -15px 0;
  }
}

@media only screen and (min-width: 1366px) {
  .articles-list {
    margin: 90px -22px 0;
  }
}

.articles-list:before,
.articles-list:after {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
}

.articles-list:after {
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
}

.articles-list:before {
  right: -1px;
  top: 0;
  width: 1px;
  height: 100%;
}

@media (max-width: 599px) {
  .articles-list .news-card,
  .articles-list .fuckup-card {
    width: 100%;
  }
}

.article-card-container {
  width: 100%;
  padding-bottom: 27px;
  padding-top: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: fade 0.8s;
  animation: fade 0.8s;
  text-align: center;
}

.article-card-container .article-more {
  display: none;
}

.article-card-container:first-child {
  padding-top: 0;
}

@media (min-width: 600px) {
  .article-card-container {
    width: 50%;
  }
  .article-card-container:nth-child(-n + 2) {
    padding-top: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .article-card-container {
    width: calc(100% / 3);
  }
  .article-card-container:nth-child(-n + 3) {
    padding-top: 0;
  }
}

.article-card {
  position: relative;
  display: inline-block;
  z-index: 1;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff center center;
  background-size: cover;
  text-align: left;
}

@media only screen and (min-width: 768px) {
  .article-card__date {
    padding-top: 26px;
  }
}

@media only screen and (min-width: 1024px) {
  .article-card__date {
    padding-top: 28px;
  }
}

@media only screen and (min-width: 1366px) {
  .article-card__date {
    padding-top: 26px;
  }
}

.article-card__wrapper {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 17px;
  padding-right: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .article-card__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 1366px) {
  .article-card__wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.article-card__date {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160.1%;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .article-card__date {
    margin: 0 0 4px;
  }
}

@media only screen and (min-width: 1024px) {
  .article-card__date {
    margin: 0 0 4px;
  }
}

@media only screen and (min-width: 1366px) {
  .article-card__date {
    margin: 0 0 6px;
  }
}

.article-card__title {
  margin: 0 0 8px;
  font: 500 16px/1.22 "Roboto", sans-serif;
}

.article-card__title .white-theme {
  color: white;
}

@media only screen and (min-width: 768px) {
  .article-card__title {
    margin: 0 0 13px;
    font-size: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .article-card__title {
    line-height: 1.2;
  }
}

@media only screen and (min-width: 1366px) {
  .article-card__title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.22;
  }
}

.article-card__title a {
  text-decoration: none;
  color: currentColor;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: color, border-color;
  transition: color, border-color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media only screen and (min-width: 1024px) {
  .article-card__title a:hover {
    color: rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(0, 0, 0, 0.05);
  }
}

.article-card__text {
  margin: 0;
}

.article-card_marked {
  background-color: #4275dc;
}

.article-card_with-background:before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.article-card_light {
  color: #fff;
}

.article-card_light .article-card__date {
  color: rgba(255, 255, 255, 0.3);
}

.article-card_light .article-card__title a {
  border-bottom-color: rgba(255, 255, 255, 0);
}

@media only screen and (min-width: 1024px) {
  .article-card_light .article-card__title a:hover {
    color: rgba(255, 255, 255, 0.6);
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }
}

.article-card_light .deputy-card-photo_small {
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1023px) {
  .article-card_light .button-link {
    color: inherit;
  }
}

.article-card_light .button-link:not(:hover) {
  color: inherit;
}

.article-card_light .news-card__footer {
  border-top: 1px solid rgba(239, 241, 247, 0.3);
}

.news-card {
  width: 240px;
  min-height: 293px;
}

@media only screen and (min-width: 768px) {
  .news-card {
    width: 100%;
    min-height: 400px;
  }
}

@media only screen and (min-width: 1024px) {
  .news-card {
    min-height: 402px;
  }
}

@media only screen and (min-width: 1366px) {
  .news-card {
    width: 400px;
  }
}

.news-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 46px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #eff1f7;
}

@media only screen and (min-width: 768px) {
  .news-card__footer {
    height: 64px;
  }
}

@media only screen and (min-width: 1024px) {
  .news-card__footer {
    height: 64px;
  }
}

@media only screen and (min-width: 1366px) {
  .news-card__footer {
    height: 61px;
  }
}

@media only screen and (max-width: 767px) {
  .news-card__link {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .news-card__link svg {
    width: 7px;
    height: 11px;
  }
}

.fuckup-card {
  width: 240px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 768px) {
  .fuckup-card {
    width: 300px;
  }
}

@media only screen and (min-width: 1366px) {
  .fuckup-card {
    width: 400px;
    max-height: 300px;
    height: 300px;
  }
}

.fuckup-card__members {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 13px -3px 30px;
}

@media only screen and (min-width: 768px) {
  .fuckup-card__members {
    margin-top: 22px;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 1024px) {
  .fuckup-card__members {
    margin-top: 22px;
  }
}

@media only screen and (min-width: 1366px) {
  .fuckup-card__members {
    margin-top: 27px;
  }
}

.fuckup-card__button {
  position: absolute;
  bottom: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
}

@media only screen and (min-width: 768px) {
  .fuckup-card__button {
    left: 18px;
  }
}

@media only screen and (min-width: 1024px) {
  .fuckup-card__button {
    left: 18px;
  }
}

@media only screen and (min-width: 1366px) {
  .fuckup-card__button {
    left: 27px;
  }
}

.deputy-card-photo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid;
  border-radius: 50%;
  -webkit-transition: border-color, -webkit-transform;
  transition: border-color, -webkit-transform;
  transition: transform, border-color;
  transition: transform, border-color, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.deputy-card-photo span {
  font-size: 14px;
  line-height: 160.1%;
  color: #000000;
  font-style: normal;
  font-weight: bold;
}

.deputy-card-photo .span-counter {
  background-color: white;
}

.deputy-card-photo_small {
  width: 50px;
  height: 50px;
  padding: 0px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}

@media only screen and (min-width: 1366px) {
  .deputy-card-photo_small {
    width: 50px;
    height: 50px;
    padding: 0px;
  }
}

.deputy-card-photo_small + .deputy-card-photo_small {
  margin-left: 3px;
}

@media only screen and (min-width: 768px) {
  .deputy-card-photo_small + .deputy-card-photo_small {
    margin-left: 4px;
  }
}

.deputy-card-photo_small:nth-child(6n) {
  margin-left: 0;
}

@media only screen and (min-width: 1024px) {
  .deputy-card-photo_small:hover {
    -webkit-transform: scale(1.17);
    transform: scale(1.17);
    border-color: rgba(0, 0, 0, 0);
  }
}

.deputy-card-photo__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #4275dc center center;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.map-container {
  display: none;
  position: relative;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .map-container {
    display: block;
    margin: -17px 0 0;
  }
}

.map-container__text {
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  .map-container__text {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.6;
  }
}

@media only screen and (min-width: 1366px) {
  .map-container__text {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.55;
  }
}

@media only screen and (min-width: 1366px) {
  .map-container + section {
    margin-top: -3px;
  }
}

@media only screen and (min-width: 768px) {
  .map-container__decoration_t-l {
    top: -195px;
    left: -110px;
  }
}

@media only screen and (min-width: 1024px) {
  .map-container__decoration_t-l {
    top: -214px;
    left: -110px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-container__decoration_t-l {
    top: -307px;
    left: -110px;
  }
}

@media only screen and (min-width: 1920px) {
  .map-container__decoration_t-l {
    top: -267px;
    left: -110px;
  }
}

.map-container__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  padding-top: 112px;
  opacity: 0;
  -webkit-transition: opacity 0.5s, left 0s 0.5s;
  transition: opacity 0.5s, left 0s 0.5s;
}

@media only screen and (min-width: 768px) {
  .map-container__overlay {
    padding-top: 116px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-container__overlay {
    padding-top: 190px;
  }
}

.map-container__show-list {
  display: none;
  margin: 20px auto 80px;
}

.map-container__show-list .button__icon {
  margin-right: 10px;
  margin-top: -3px;
}

.map {
  position: relative;
  margin: 0 auto;
  width: 708px;
}

@media only screen and (min-width: 1024px) {
  .map {
    width: 964px;
  }
}

@media only screen and (min-width: 1366px) {
  .map {
    width: 1286px;
  }
}

.map path,
.map ellipse,
.map polygon {
  -webkit-transition: fill 0.5s;
  transition: fill 0.5s;
}

.map g ellipse:hover {
  fill: #4275dc;
}

.map ellipse {
  fill: lightgreen;
}

.map .region,
.map .city {
  cursor: pointer;
  will-change: fill;
}

.map .region {
  fill: #4275dc;
}

.map .region:hover {
  fill: #42aedc;
}

.map .region_marked {
  fill: #4275dc;
}

.map .city:hover {
  fill: #42aedc;
}

.map_closed path,
.map_closed ellipse,
.map_closed polygon {
  fill: #f0f2f7;
}

.map_closed + .map-container__overlay {
  opacity: 1;
  left: 0;
  -webkit-transition: opacity 0.5s, left 0s;
  transition: opacity 0.5s, left 0s;
}

.map-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  width: 300px;
  border-radius: 7px;
  background-color: #fff;
  -webkit-box-shadow: 0px 24px 65px 0px rgba(17, 44, 113, 0.25);
  box-shadow: 0px 24px 65px 0px rgba(17, 44, 113, 0.25);
  text-align: left;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.map-info_visible {
  opacity: 1;
}

.map-info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.map-info__photo-container {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  padding: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #fcfcfc;
}

.map-info__progressbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .map-info__progressbar svg path:first-child {
    stroke: #e9e9e9;
  }
}

.map-info__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #5e6370 center center;
  background-size: cover;
}

@media only screen and (min-width: 768px) {
  .map-info__photo {
    -webkit-box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.25);
    box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.25);
  }
}

.map-info__details {
  padding-left: 9px;
}

.map-info__region {
  font-size: 12px;
  line-height: 1.2;
  color: #b6b8c2;
}

.map-info__name {
  font-size: 16px;
  line-height: 1.2;
}

.map-regions {
  -webkit-transition: -webkit-filter 0.5s;
  transition: -webkit-filter 0.5s;
  transition: filter 0.5s;
  transition: filter 0.5s, -webkit-filter 0.5s;
  will-change: filter;
}

.map-regions_blur {
  -webkit-filter: blur(5px) grayscale(75%);
  filter: blur(5px) grayscale(75%);
}

.map-cities {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0s 0.5s;
  transition: opacity 0.5s, -webkit-transform 0s 0.5s;
  transition: opacity 0.5s, transform 0s 0.5s;
  transition: opacity 0.5s, transform 0s 0.5s, -webkit-transform 0s 0.5s;
}

.map-cities_opened {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: opacity 0.5s, -webkit-transform 0s;
  transition: opacity 0.5s, -webkit-transform 0s;
  transition: opacity 0.5s, transform 0s;
  transition: opacity 0.5s, transform 0s, -webkit-transform 0s;
}

.map-cities__item {
  position: absolute;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0s 0.5s;
  transition: -webkit-transform 0s 0.5s;
  transition: transform 0s 0.5s;
  transition: transform 0s 0.5s, -webkit-transform 0s 0.5s;
  will-change: transform;
}

.map-cities__item_opened {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0s;
  transition: -webkit-transform 0s;
  transition: transform 0s;
  transition: transform 0s, -webkit-transform 0s;
}

.map-cities__item_opened .map-cities__svg {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.map-cities__item_opened .map-cities__close {
  opacity: 1;
  -webkit-transition: opacity 0.5s 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s 0.5s;
  transition: transform 0.5s, opacity 0.5s 0.5s, -webkit-transform 0.5s;
}

.map-cities__item_dnipro {
  top: 80px;
  left: 365px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_dnipro {
    top: 155px;
    left: 540px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_dnipro {
    top: 250px;
    left: 755px;
  }
}

.map-cities__item_donetsk {
  top: 105px;
  left: 460px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_donetsk {
    top: 185px;
    left: 670px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_donetsk {
    top: 290px;
    left: 940px;
  }
}

@media (max-width: 1365px) {
  .map-cities__item_donetsk .map-cities__close {
    right: auto;
    left: -50px;
  }
}

.map-cities__item_zaporizhzhia {
  top: 115px;
  left: 375px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_zaporizhzhia {
    top: 200px;
    left: 550px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_zaporizhzhia {
    top: 300px;
    left: 775px;
  }
}

.map-cities__item_kyiv {
  top: -20px;
  left: 220px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_kyiv {
    top: 15px;
    left: 335px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_kyiv {
    top: 65px;
    left: 490px;
  }
}

.map-cities__item_kremenchuk {
  top: 50px;
  left: 360px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_kremenchuk {
    top: 100px;
    left: 510px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_kremenchuk {
    top: 180px;
    left: 710px;
  }
}

.map-cities__item_kryvyj-rih {
  top: 105px;
  left: 360px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_kryvyj-rih {
    top: 190px;
    left: 510px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_kryvyj-rih {
    top: 290px;
    left: 710px;
  }
}

.map-cities__item_lviv {
  top: -10px;
  left: 0;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_lviv {
    top: 35px;
    left: 45px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_lviv {
    top: 85px;
    left: 95px;
  }
}

.map-cities__item_luhansk {
  top: 60px;
  left: 510px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_luhansk {
    top: 125px;
    left: 740px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_luhansk {
    top: 220px;
    left: 1030px;
  }
}

@media (max-width: 1365px) {
  .map-cities__item_luhansk .map-cities__close {
    right: auto;
    left: -50px;
  }
}

.map-cities__item_mykolaiv {
  top: 155px;
  left: 295px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_mykolaiv {
    top: 260px;
    left: 435px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_mykolaiv {
    top: 390px;
    left: 605px;
  }
}

.map-cities__item_mariupol {
  top: 140px;
  left: 455px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_mariupol {
    top: 230px;
    left: 660px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_mariupol {
    top: 360px;
    left: 920px;
  }
}

.map-cities__item_odesa {
  top: 160px;
  left: 260px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_odesa {
    top: 300px;
    left: 380px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_odesa {
    top: 435px;
    left: 535px;
  }
}

.map-cities__item_kharkiv {
  top: 0;
  left: 405px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_kharkiv {
    top: 40px;
    left: 595px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_kharkiv {
    top: 100px;
    left: 830px;
  }
}

.map-cities__item_kherson {
  top: 165px;
  left: 285px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_kherson {
    top: 270px;
    left: 430px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_kherson {
    top: 410px;
    left: 610px;
  }
}

.map-cities__item_cherkasy {
  top: 25px;
  left: 270px;
}

@media only screen and (min-width: 1024px) {
  .map-cities__item_cherkasy {
    top: 80px;
    left: 410px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-cities__item_cherkasy {
    top: 150px;
    left: 580px;
  }
}

.map-cities__svg {
  -webkit-transform: scale(0);
  transform: scale(0);
  max-width: 230px;
  width: auto;
  height: 250px;
  stroke-width: 0.5px;
  stroke: #ffffff;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.map-cities__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: -5px;
  right: -50px;
  width: 40px;
  height: 40px;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
  background-color: #fff;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 1024px) {
  .map-cities__close:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .map-cities__close:hover:before {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0);
  }
}

.map-cities__close:before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  -webkit-transition: border-color 0.5s, -webkit-transform 0.5s;
  transition: border-color 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, border-color 0.5s;
  transition: transform 0.5s, border-color 0.5s, -webkit-transform 0.5s;
}

.map-cities__close svg {
  width: 15px;
  height: 15px;
}

uah {
  display: inline;
  font-family: "Montserrat", sans-serif;
}

uah:before {
  content: "\20B4";
}

.statistics {
  background-color: #4275dc;
  color: #fff;
  padding: 42px 0 19px;
}

@media only screen and (min-width: 768px) {
  .statistics {
    padding: 182px 0 17px;
  }
}

@media only screen and (min-width: 1024px) {
  .statistics {
    padding: 182px 0 124px;
  }
}

@media only screen and (min-width: 1366px) {
  .statistics {
    padding: 254px 0 168px;
  }
}

@media only screen and (min-width: 1920px) {
  .statistics {
    padding: 238px 0 146px;
  }
}

@media only screen and (min-width: 1920px) {
  .statistics__wrapper {
    width: 1646px;
    margin: 0 auto;
  }
}

.statistics__title {
  margin: 0 auto 30px;
  font-weight: 400;
  font-size: 20px;
  opacity: 0.1;
}

@media only screen and (min-width: 768px) {
  .statistics__title {
    margin: 0 auto 55px;
    font-size: 24px;
  }
}

@media only screen and (min-width: 1366px) {
  .statistics__title {
    font-size: 28px;
    margin: 0 auto 55px;
  }
}

@media only screen and (min-width: 1920px) {
  .statistics__title {
    margin: 0 auto 77px;
    text-align: center;
  }
}

.statistics__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 1024px) {
  .statistics__items {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width: 768px) {
  .statistics_small {
    padding: 82px 0 17px;
  }
}

@media only screen and (min-width: 1024px) {
  .statistics_small {
    padding: 82px 0 104px;
  }
}

@media only screen and (min-width: 1366px) {
  .statistics_small {
    padding: 98px 0 108px;
  }
}

@media only screen and (min-width: 1920px) {
  .statistics_small {
    padding: 98px 0 108px;
  }
}

.statistics-item {
  position: relative;
  margin-bottom: 51px;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width: 768px) {
  .statistics-item {
    margin-bottom: 58px;
    width: 50%;
    padding: 30px 15px 0 19px;
  }
}

@media (max-width: 1023px) {
  .statistics-item:nth-child(-n + 2):after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .statistics-item:nth-child(-n + 2):after {
    bottom: -30px;
  }
}

@media only screen and (min-width: 1024px) {
  .statistics-item {
    margin-bottom: 0;
    width: auto;
    padding: 44px 15px 0 19px;
  }
}

@media only screen and (min-width: 1366px) {
  .statistics-item {
    padding: 12px 15px 0 30px;
  }
}

@media only screen and (min-width: 1920px) {
  .statistics-item {
    padding: 0 15px 0 30px;
  }
}

.statistics-item__number {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 0.9;
}

@media only screen and (min-width: 768px) {
  .statistics-item__number {
    margin-bottom: 25px;
    font-size: 60px;
    line-height: 0.75;
  }
}

@media only screen and (min-width: 1024px) {
  .statistics-item__number {
    margin-bottom: 25px;
    font-size: 50px;
  }
}

@media only screen and (min-width: 1366px) {
  .statistics-item__number {
    margin-bottom: 32px;
    font-size: 70px;
  }
}

@media only screen and (min-width: 1920px) {
  .statistics-item__number {
    font-size: 100px;
  }
}

.statistics-item__label {
  margin-bottom: 21px;
  font-weight: 300;
  font-size: 12px;
}

@media only screen and (min-width: 768px) {
  .statistics-item__label {
    margin-bottom: 24px;
    width: 70%;
    font-size: 16px;
    line-height: 1.65;
  }
}

@media only screen and (min-width: 1024px) {
  .statistics-item__label {
    margin-bottom: 30px;
    width: 70%;
  }
}

@media only screen and (min-width: 1366px) {
  .statistics-item__label {
    margin-bottom: 52px;
    width: auto;
    font-size: 18px;
    line-height: 1.45;
  }
}

.statistics-item__emoji {
  width: 56px;
  line-height: 1;
}

@media only screen and (min-width: 768px) {
  .statistics-item__emoji {
    width: 70px;
  }
}

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

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.deputy-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 29px;
  padding: 12px 23px 16px 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: unset;
  box-shadow: unset;
  border-radius: 5px;
  background-color: #fff;
  -webkit-animation: fade 0.8s;
  animation: fade 0.8s;
}

@media only screen and (min-width: 768px) {
  .deputy-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
    width: calc(100% / 3);
    padding: 23px 12px 15px;
    border-radius: 0;
    text-align: center;
    background-color: transparent;
  }
}

@media only screen and (min-width: 1024px) {
  .deputy-card {
    width: 20%;
    padding: 23px 15px;
  }
}

@media only screen and (min-width: 1366px) {
  .deputy-card {
    padding: 30px 22px 39px;
  }
}

.deputy-card__progress {
  position: absolute;
  top: 78px;
  left: 18px;
  font-size: 10px;
  line-height: 1;
  color: rgba(35, 49, 85, 0.3);
}

@media only screen and (min-width: 768px) {
  .deputy-card__progress {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 7px;
    font-size: 12px;
  }
}

@media only screen and (min-width: 1366px) {
  .deputy-card__progress {
    margin-bottom: 6px;
  }
}

.deputy-card__photo-container {
  position: relative;
  display: block;
  width: 59px;
  height: 59px;
  padding: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #fcfcfc;
}

@media only screen and (min-width: 768px) {
  .deputy-card__photo-container {
    margin: 0 auto 16px;
    width: 164px;
    height: 164px;
    padding: 12px;
  }
}

@media only screen and (min-width: 1366px) {
  .deputy-card__photo-container {
    margin: 0 auto 18px;
  }
}

.deputy-card__progressbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .deputy-card__progressbar svg path:first-child {
    stroke: #e9e9e9;
  }
}

.deputy-card__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #5e6370 center center;
  background-size: cover;
}

.deputy-card__panel {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: -5px;
  padding: 0px 0 0 13px;
}

@media only screen and (min-width: 768px) {
  .deputy-card__panel {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    position: relative;
    margin-top: 0;
    padding: 0 0 63px;
    border-radius: 5px;
    background-color: #fff;
  }
}

@media only screen and (min-width: 1366px) {
  .deputy-card__panel {
    padding-bottom: 65px;
  }
}

@media only screen and (min-width: 768px) {
  .deputy-card__panel:before {
    content: "";
    width: 14px;
    height: 14px;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: transparent;
    border-radius: 3px;
  }
}

.deputy-card__main-info {
  padding-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .deputy-card__main-info {
    padding: 7px 0 10px;
  }
}

.deputy-card__name {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
}

.deputy-card__name a {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  color: inherit;
  -webkit-transition: color, border-color;
  transition: color, border-color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media only screen and (min-width: 1024px) {
  .deputy-card__name a:hover {
    color: rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(0, 0, 0, 0.05);
  }
}

.deputy-card__region {
  font-size: 12px;
  color: #b6b8c2;
}

.deputy-card__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #eff1f7;
  padding: 9px 0 12px;
}

@media only screen and (min-width: 768px) {
  .deputy-card__left {
    display: block;
    padding: 11px 0 12px;
  }
}

@media only screen and (min-width: 1366px) {
  .deputy-card__left {
    padding: 11px 0 10px;
  }
}

.deputy-card__left-sum {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #4275dc;
}

@media only screen and (min-width: 768px) {
  .deputy-card__left-sum {
    font-size: 28px;
  }
}

.deputy-card__left-label {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin-left: 8px;
  font-size: 10px;
  color: #b6b8c2;
}

@media only screen and (max-width: 767px) {
  .deputy-card__left-label {
    line-height: 1.2;
  }
}

@media only screen and (min-width: 768px) {
  .deputy-card__left-label {
    margin-left: 0;
    font-size: 12px;
  }
}

.deputy-card__button {
  position: absolute;
  bottom: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (min-width: 768px) {
  .deputy-card__button {
    left: 50%;
    bottom: 0;
    margin-bottom: 19px;
    border-radius: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .deputy-card__button {
    margin-bottom: 15px;
  }
}

.deputies {
  position: relative;
  margin: 28px 0 68px;
}

@media only screen and (min-width: 768px) {
  .deputies {
    margin: 0 0 77px;
  }
}

@media only screen and (min-width: 1024px) {
  .deputies {
    margin: 0 0 113px;
  }
}

@media only screen and (min-width: 1366px) {
  .deputies {
    margin: 50px 0 151px;
  }
}

.deputies__wrapper {
  padding: 19px 0 0;
}

@media only screen and (min-width: 768px) {
  .deputies__wrapper {
    padding: 50px 0 0;
  }
}

@media only screen and (min-width: 1024px) {
  .deputies__wrapper {
    padding: 40px 0 0;
  }
}

@media only screen and (min-width: 1366px) {
  .deputies__wrapper {
    padding: 47px 0 0;
  }
}

@media only screen and (min-width: 768px) {
  .deputies__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
  }
  .deputies__list:before,
  .deputies__list:after {
    content: "";
    position: absolute;
    display: block;
    z-index: 1;
    background: #fff;
  }
  .deputies__list:after {
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .deputies__list:before {
    right: -1px;
    top: 0;
    width: 1px;
    height: 100%;
  }
}

.deputies__button {
  display: table;
  margin: 56px auto 0;
}

@media only screen and (min-width: 768px) {
  .deputies__button {
    margin: 50px auto 0;
  }
}

@media only screen and (min-width: 1024px) {
  .deputies__button {
    margin: 24px auto 0;
  }
}

@media only screen and (min-width: 1366px) {
  .deputies__button {
    margin: 32px auto 0;
    padding-right: 50px;
  }
}

.deputies__decoration_t-r {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .deputies__decoration_t-r {
    display: block;
    right: -1000px;
    top: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .deputies__decoration_t-r {
    right: -365px;
    top: -45px;
  }
}

@media only screen and (min-width: 1920px) {
  .deputies__decoration_t-r {
    right: -365px;
    top: -70px;
  }
}

@media only screen and (min-width: 768px) {
  .deputies__decoration_b-l {
    bottom: -220px;
    left: -390px;
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
  }
}

@media only screen and (min-width: 1024px) {
  .deputies__decoration_b-l {
    bottom: -145px;
    left: -350px;
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
  }
}

@media only screen and (min-width: 1366px) {
  .deputies__decoration_b-l {
    bottom: 105px;
    left: -350px;
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
  }
}

@media only screen and (min-width: 1920px) {
  .deputies__decoration_b-l {
    bottom: 80px;
    left: -200px;
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .deputies .deputy-card:nth-child(-n + 3) {
    padding-top: 0;
  }
}

.last-fuckups {
  margin: 34px 0 0;
}

@media only screen and (min-width: 768px) {
  .last-fuckups {
    margin: 68px 0 50px;
  }
}

@media only screen and (min-width: 1024px) {
  .last-fuckups {
    margin: 128px 0 47px;
  }
}

@media only screen and (min-width: 1366px) {
  .last-fuckups {
    margin: 128px 0 74px;
  }
}

.last-news__decoration_t-r {
  display: none;
}

@media only screen and (min-width: 1366px) {
  .last-news__decoration_t-r {
    display: block;
    right: -550px;
    top: -205px;
  }
}

@media only screen and (min-width: 1920px) {
  .last-news__decoration_t-r {
    right: -480px;
    top: -190px;
  }
}

.last-news + section {
  margin-top: -2px;
}

@media only screen and (min-width: 768px) {
  .last-news + section {
    margin-top: -161px;
  }
}

@media only screen and (min-width: 1366px) {
  .last-news + section {
    margin-top: -171px;
  }
}

@media only screen and (min-width: 768px) {
  .deputies-page .hero {
    padding-bottom: 94px;
  }
}

@media only screen and (min-width: 1366px) {
  .deputies-page .hero {
    padding-bottom: 74px;
  }
}

.deputies-page .deputies {
  margin-top: 0;
}

.deputies-page .deputies__wrapper {
  padding-top: 30px;
}

@media only screen and (min-width: 768px) {
  .deputies-page .deputies__wrapper {
    padding-top: 71px;
  }
}

.deputies-page .deputies__decoration_t-l {
  top: 320px;
  left: -250px;
}

.deputies-page .filter {
  margin-top: -22px;
}

@media only screen and (min-width: 768px) {
  .deputies-page .filter {
    margin-top: -71px;
  }
}

@media only screen and (min-width: 1024px) {
  .deputies-page .filter {
    margin-top: -39px;
  }
}

.fuckups-page .filter {
  margin-top: -22px;
}

@media only screen and (min-width: 768px) {
  .fuckups-page .filter {
    margin-top: -71px;
  }
}

@media only screen and (min-width: 1024px) {
  .fuckups-page .filter {
    margin-top: -39px;
  }
}

.post-type-archive-fuckups {
  background: #272727;
}

.post-type-archive-fuckups .hero {
  padding-top: 180px;
  padding-bottom: 290px;
}

.post-type-archive-fuckups .hero__title {
  margin: 0 auto 10px;
  font-weight: 800;
  font-size: 37px;
  line-height: 169.8%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.post-type-archive-fuckups .hero__subtitle {
  width: 825px;
  margin: auto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  color: #ffffff;
}

.post-type-archive-fuckups .fuckups {
  position: relative;
  -webkit-transform: translateY(-240px);
  transform: translateY(-240px);
  margin-bottom: -240px;
}

.post-type-archive-fuckups .footer {
  background: #272727;
}

.post-type-archive-fuckups .pagination__container {
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 169.8%;
  text-align: center;
  color: #ffffff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  margin-top: 90px;
  margin-bottom: 70px;
}

.post-type-archive-fuckups .pagination__container > * {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.post-type-archive-fuckups .pagination__container:hover {
  border-radius: 25px;
}

.post-type-archive-fuckups .pagination__container .page-numbers.current {
  color: #4275dc;
}

.post-type-archive-fuckups .pagination__container .page-numbers:hover {
  color: #4275dc;
}

.post-type-archive-fuckups .pagination__container > *:first-child {
  border-left: none;
}

.post-type-archive-fuckups .pagination__container > *:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.post-type-archive-fuckups .fuckup-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-type-archive-fuckups .pagination__container > * {
  color: #ffffff;
}

.post-type-archive-fuckups .articles-list:before,
.post-type-archive-fuckups .articles-list:after {
  background: unset;
}

.fuckups {
  position: relative;
}

.fuckups__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fuckups__decoration_t-l {
  top: 320px;
  left: -320px;
}

.footer.post-type-archive-fb-posts {
  background: #272727;
}

.footer {
  position: relative;
  z-index: 1;
  background-color: #1b1b1b;
}

.publication__inner {
  margin: 0 auto -60px;
  -webkit-transform: translateY(-103px);
  transform: translateY(-103px);
  width: 100%;
  max-width: 643px;
  border-radius: 7px;
  background-color: #fff;
  -webkit-box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.25);
  box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.25);
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .publication__inner {
    -webkit-transform: translateY(-184px);
    transform: translateY(-184px);
    margin: 0 auto -110px;
  }
}

@media only screen and (min-width: 1024px) {
  .publication__inner {
    margin: 0 auto -90px;
  }
}

.publication__thumb {
  position: relative;
  width: 100%;
  height: 186px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .publication__thumb {
    height: 397px;
  }
}

.publication__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.publication__content {
  padding: 0 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .publication__content {
    padding: 0 30px;
  }
}

.publication__content_no-socials {
  padding: 14px;
}

@media only screen and (min-width: 768px) {
  .publication__content_no-socials {
    padding: 30px;
  }
}

.publication__body {
  position: relative;
}

.publication__decoration_t-l {
  top: 125px;
  left: -250px;
}

.publication__decoration_c-r {
  top: calc(50% - 200px);
  right: -350px;
}

.publication__decoration_b-l {
  bottom: 230px;
  left: -250px;
  -webkit-transform: rotate(-7deg);
  transform: rotate(-7deg);
}

@media only screen and (min-width: 1024px) {
  .publication .hero {
    padding-top: 172px;
    padding-bottom: 241px;
  }
}

.publication .likely {
  margin: 21px 0 17px;
}

@media only screen and (min-width: 768px) {
  .publication .likely {
    margin: 36px 0 42px;
  }
}

@media only screen and (max-width: 767px) {
  .publication .likely .likely__widget {
    margin: 0 8px 10px 0;
    height: 19px;
    font-size: 12px;
  }
}

@media only screen and (min-width: 768px) {
  .publication .likely .likely__widget {
    margin: 0 8px 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  .publication .likely .likely__button {
    padding: 0 3px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .publication .likely .likely__icon {
    width: 19px;
    height: 19px;
  }
}

@media only screen and (max-width: 767px) {
  .publication .likely svg {
    width: 14px;
    height: 14px;
  }
}

.single-fuckups .footer,
.single-news .footer {
  background: #272727;
}

.single-fuckups .deputies__button,
.single-news .deputies__button {
  margin: 32px auto 55px;
  padding-right: 50px;
}

.single-fuckups .hero__title,
.single-news .hero__title {
  font-weight: 900;
  font-size: 32px;
  line-height: 139.8%;
  text-align: center;
  text-transform: none;
  color: #ffffff;
}

.single-fuckups .hero__subtitle,
.single-news .hero__subtitle {
  padding-bottom: 25px;
  color: rgba(255, 255, 255, 0.42);
}

.single-fuckups .fuckup__body.fuckup-content .wrapper,
.single-news .fuckup__body.fuckup-content .wrapper {
  width: 1034px;
}

.single-fuckups .fuckup__body,
.single-news .fuckup__body {
  font-size: 18px;
  line-height: 160.1%;
  color: #000000;
}

.single-fuckups .fuckup__body.fuckup-content,
.single-news .fuckup__body.fuckup-content {
  position: relative;
  background: #272727;
}

.single-fuckups .fuckup__body.fuckup-content.fuckup-sharing,
.single-news .fuckup__body.fuckup-content.fuckup-sharing {
  padding-bottom: 80px;
}

.single-fuckups .fuckup__body.fuckup-content.fuckup-sharing .wrapper,
.single-news .fuckup__body.fuckup-content.fuckup-sharing .wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 63px 105px;
}

.single-fuckups .fuckup__body.fuckup-content.fuckup-sharing .fuckup__sharing,
.single-news .fuckup__body.fuckup-content.fuckup-sharing .fuckup__sharing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-fuckups
  .fuckup__body.fuckup-content.fuckup-sharing
  .fuckup__sharing
  .sharing-title,
.single-news
  .fuckup__body.fuckup-content.fuckup-sharing
  .fuckup__sharing
  .sharing-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 169.8%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  padding-right: 40px;
}

.single-fuckups
  .fuckup__body.fuckup-content.fuckup-sharing
  .fuckup__sharing
  .sharing-block
  a,
.single-news
  .fuckup__body.fuckup-content.fuckup-sharing
  .fuckup__sharing
  .sharing-block
  a {
  padding-right: 35px;
}

.single-fuckups .fuckup__body.fuckup-content .wrapper,
.single-news .fuckup__body.fuckup-content .wrapper {
  background: white;
  padding: 85px 105px 30px;
}

.single-fuckups .custom-content.fuckup__content h2:first-child,
.single-news .custom-content.fuckup__content h2:first-child {
  margin-top: 0px;
}

.single-fuckups .fuckup-card__members,
.single-news .fuckup-card__members {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-fuckups .fuckup-card__members.fuckup-card__second-block,
.single-news .fuckup-card__members.fuckup-card__second-block {
  margin-bottom: -50px;
  margin-top: -20px;
}

.single-fuckups .fuckup-card__members .deputy-card-photo_small,
.single-news .fuckup-card__members .deputy-card-photo_small {
  background: white;
  border: none;
}

.single-fuckups .mt-5,
.single-news .mt-5 {
  margin-top: 5px;
}

.single-fuckups .mt-10,
.single-news .mt-10 {
  margin-top: 10px;
}

.single-fuckups .mt-15,
.single-news .mt-15 {
  margin-top: 15px;
}

.single-fuckups .mt-20,
.single-news .mt-20 {
  margin-top: 20px;
}

.single-fuckups .mt-25,
.single-news .mt-25 {
  margin-top: 25px;
}

.single-fuckups .mt-30,
.single-news .mt-30 {
  margin-top: 30px;
}

.single-fuckups .mt-35,
.single-news .mt-35 {
  margin-top: 35px;
}

.single-fuckups .mt-40,
.single-news .mt-40 {
  margin-top: 40px;
}

.single-fuckups .mt-45,
.single-news .mt-45 {
  margin-top: 45px;
}

.single-fuckups .mt-50,
.single-news .mt-50 {
  margin-top: 50px;
}

.single-fuckups .mt-55,
.single-news .mt-55 {
  margin-top: 55px;
}

.single-fuckups .mb-5,
.single-news .mb-5 {
  margin-bottom: 5px;
}

.single-fuckups .mb-10,
.single-news .mb-10 {
  margin-bottom: 10px;
}

.single-fuckups .mb-15,
.single-news .mb-15 {
  margin-bottom: 15px;
}

.single-fuckups .mb-20,
.single-news .mb-20 {
  margin-bottom: 20px;
}

.single-fuckups .mb-25,
.single-news .mb-25 {
  margin-bottom: 25px;
}

.single-fuckups .mb-30,
.single-news .mb-30 {
  margin-bottom: 30px;
}

.single-fuckups .mb-35,
.single-news .mb-35 {
  margin-bottom: 35px;
}

.single-fuckups .mb-40,
.single-news .mb-40 {
  margin-bottom: 40px;
}

.single-fuckups .mb-45,
.single-news .mb-45 {
  margin-bottom: 45px;
}

.single-fuckups .mb-50,
.single-news .mb-50 {
  margin-bottom: 50px;
}

.single-fuckups .mb-55,
.single-news .mb-55 {
  margin-bottom: 55px;
}

.single-fuckups .fuckups-collected-funds-distribution,
.single-news .fuckups-collected-funds-distribution {
  color: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  font-weight: 200;
}

.single-fuckups
  .fuckups-collected-funds-distribution
  .punishment-progress__left-sum,
.single-news
  .fuckups-collected-funds-distribution
  .punishment-progress__left-sum {
  font-size: 18px;
}

.fuckup .hero {
  padding-bottom: 150px;
}

@media only screen and (min-width: 768px) {
  .fuckup .hero {
    padding-bottom: 155px;
    padding-top: 240px;
  }
}

.fuckup__body {
  position: relative;
}

.fuckup__inner {
  margin: 0 auto -120px;
  -webkit-transform: translateY(-103px);
  transform: translateY(-103px);
  width: 100%;
  border-radius: 7px;
  background-color: #fff;
  -webkit-box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.25);
  box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.25);
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .fuckup__inner {
    margin: 0 auto -210px;
    -webkit-transform: translateY(-184px);
    transform: translateY(-184px);
  }
}

@media only screen and (min-width: 1024px) {
  .fuckup__inner {
    max-width: 643px;
  }
}

.fuckup__thumb {
  position: relative;
  width: 100%;
  height: 186px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .fuckup__thumb {
    height: 347px;
  }
}

.fuckup__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.fuckup__content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fuckup__content h2 {
  margin-bottom: 22px;
  margin-top: 35px;
  text-align: left;
  font-weight: 800;
  font-size: 30px;
  line-height: 160.1%;
}

.fuckup__content ul li {
  position: relative;
}

.fuckup__content ul li:before {
  position: absolute;
  top: 10px;
  left: -39px;
  width: 15px;
  height: 5px;
  content: "";
  background: #f77638;
}

.fuckup__content ol,
.fuckup__content ul {
  list-style: none;
}

.fuckup__button {
  position: relative;
  z-index: 1;
  display: block;
  margin: 40px auto 21px;
}

.not-majoritarian {
  margin-top: 82px;
  height: 70px;
  padding-bottom: 50px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .not-majoritarian {
    height: 150px;
    margin-top: 82px;
    padding-bottom: 50px;
  }
}

.not-majoritarian__title {
  position: relative;
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
  color: #4275dc;
}

@media only screen and (min-width: 768px) {
  .not-majoritarian__title {
    font-size: 24px;
  }
}

.not-majoritarian__title:before {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.07);
}

@media only screen and (min-width: 768px) {
  .not-majoritarian__title:before {
    content: "";
  }
}

.not-majoritarian__button {
  display: inline-block;
  background-color: #fff;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .not-majoritarian__button {
    padding: 0 35px;
  }
}

.not-majoritarian__button span {
  display: inline-block;
  border-bottom: 1px dashed rgba(73, 102, 177, 0.4);
}

.not-majoritarian__button svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 5px;
  width: 8px;
  height: 12px;
  fill: currentColor;
}

.not-majoritarian .fuckup-members__title {
  display: none;
  margin-top: 0;
}

.not-majoritarian .deputies {
  opacity: 0.15;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.not-majoritarian_opened {
  overflow: visible;
}

.not-majoritarian_opened .deputies {
  opacity: 1;
}

.not-majoritarian .deputy-card__panel {
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .not-majoritarian .deputy-card__panel {
    display: block;
  }
}

.fuckup-members__title {
  margin: 71px auto 40px;
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .fuckup-members__title {
    font-size: 28px;
  }
}

.fuckup-members__label {
  margin: 30px auto 42px;
  text-align: center;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.5);
}

.fuckup-members .not-majoritarian .deputies {
  margin: 0;
}

.fuckup-members .not-majoritarian .deputies__wrapper {
  padding: 0;
}

.sort-panel {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  line-height: 1.2;
  font-size: 15px;
}

@media only screen and (min-width: 1366px) {
  .sort-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sort-panel__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.3);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.sort-panel__item_sortable {
  cursor: pointer;
}

@media only screen and (min-width: 1024px) {
  .sort-panel__item_sortable:hover {
    color: #fff;
  }
}

.sort-panel__item.asc,
.sort-panel__item.desc {
  color: #fff;
}

.sort-panel__item.desc .sort-panel__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sort-panel__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: 11px;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
}

.sort-panel__icon .icon {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 6px;
  height: 10px;
  fill: #fff;
}

.reports-page {
  background: #4275dc;
}

.reports-page .small-search {
  margin: 44px auto 0;
  max-width: 644px;
  width: 100%;
  padding-left: 27px;
}

.reports-page .small-search__input {
  width: 100%;
}

.reports-page__decoration_t-l {
  background-image: -ms-linear-gradient(
    -53deg,
    #5170c2 0%,
    #4d6bba 17%,
    #4966b1 55%
  );
}

.report-card {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.05);
  box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.05);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-animation: fade 0.8s;
  animation: fade 0.8s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding: 22px 0 22px 0;
  height: 260px;
  position: relative;
}

@media only screen and (max-width: 1365px) {
  .report-card .report-card-link {
    width: 100%;
    padding: 0px 40px;
  }
}

@media only screen and (max-width: 1365px) {
  .report-card {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }
}

.report-card:hover {
  -webkit-box-shadow: 0 24px 65px 0 rgba(78, 88, 115, 0.19);
  box-shadow: 0 24px 65px 0 rgba(78, 88, 115, 0.19);
  -webkit-animation: fade 0.4s;
  animation: fade 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@media only screen and (min-width: 768px) {
  .report-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.report-card + .report-card {
  margin-top: 20px;
}

@media only screen and (min-width: 1366px) {
  .report-card + .report-card {
    margin-top: 30px;
  }
}

.report-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.report-card__item .report-card__label {
  font-size: 12px;
  line-height: 169.8%;
  color: rgba(0, 0, 0, 0.4);
}

.report-card__part {
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .report-card__part {
    padding: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .report-card__part {
    padding: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .report-card__part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 0;
  }
}

.report-card__part_left {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  background-color: #ffffff;
}

@media only screen and (min-width: 1024px) {
  .report-card__part_left .report-card-title {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .report-card__part_left .label-sum-count {
    margin-bottom: -5px;
  }
}

@media only screen and (min-width: 1024px) {
  .report-card__part_left {
    width: 100%;
    min-width: auto;
  }
}

@media only screen and (min-width: 1366px) {
  .report-card__part_left {
    width: 47%;
    min-width: auto;
  }
}

.report-card__part_right {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media only screen and (min-width: 1366px) {
  .report-card__part_right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 49%;
  }
}

@media only screen and (min-width: 1024px) {
  .report-card__part_right {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0px 0px 0px 40px;
    margin-bottom: 25px;
    margin-top: 25px;
  }
}

.report-card__part_right .report-card__item {
  width: 50%;
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
  font-size: 23px;
  line-height: 160.1%;
  color: #1d1d1b;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 1366px) {
  .report-card__part_right .report-card__item {
    width: 50%;
    padding: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

.report-card__part_right .report-card__item.report-period,
.report-card__part_right .report-card__item.report-vote {
  border-bottom: none;
}

.report-card__part_right .report-card__item svg {
  width: 23px;
  height: 23px;
  margin-right: 10px;
}

.report-card__part_right .report-card__item .report-card__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.report-card__part_right .report-card__item.report-period {
  font-size: 16px;
}

.report-card__column {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100px;
}

.report-card__title {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  color: #000;
}

@media only screen and (min-width: 768px) {
  .report-card__title {
    font-size: 24px;
  }
}

.report-card__title:hover span {
  color: rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.report-card__title h3 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

.report-card__title h3 span {
  font-weight: 800;
  font-size: 18px;
  line-height: 160.1%;
  color: #1d1d1b;
}

.report-card__title span {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: color, border-color;
  transition: color, border-color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.report-card__label {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(19, 27, 50, 0.2);
  line-height: 1.25;
}

@media only screen and (min-width: 768px) {
  .report-card__label {
    font-size: 15px;
    line-height: 1;
    font-size: 12px;
    line-height: 169.8%;
    color: rgba(0, 0, 0, 0.4);
  }
}

.reports__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reports .sort-panel__item:nth-child(1) {
  padding: 0 0 0 33px;
  width: 32.4%;
}

.reports .sort-panel__item:nth-child(2) {
  padding: 0 0 0 22px;
  width: 21.5%;
}

.reports .sort-panel__item:nth-child(3) {
  padding: 0 0 0 17px;
  width: 16%;
}

.reports .sort-panel__item:nth-child(4) {
  padding: 0 0 0 24px;
  width: 15%;
}

@media only screen and (min-width: 1366px) {
  .reports .report-card__column_deputy {
    width: 46.1%;
    padding: 8px 25px 0;
  }
}

@media only screen and (min-width: 1366px) {
  .reports .report-card__column_link {
    width: 30.9%;
    padding: 0 24px;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (min-width: 1366px) {
  .reports .report-card__column_sum {
    width: 49.1%;
  }
}

@media only screen and (min-width: 1366px) {
  .reports .report-card__column_coverage {
    padding: 0 20px 0 10px;
  }
}

.campaigns {
  margin-top: 19px;
}

@media only screen and (min-width: 768px) {
  .campaigns {
    margin-top: 31px;
  }
}

@media only screen and (min-width: 1366px) {
  .campaigns {
    margin-top: 56px;
  }
}

.campaigns__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.campaigns__list.more-load .report-card.article-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.campaigns__list .report-card.article-more {
  display: none;
}

.campaigns .sort-panel {
  margin-bottom: 17px;
}

.campaigns .sort-panel__item:nth-child(1) {
  padding: 0 0 0 20px;
  width: 33.5%;
}

.campaigns .sort-panel__item:nth-child(2) {
  padding: 0 0 0 19px;
  width: 16.6%;
}

.campaigns .sort-panel__item:nth-child(3) {
  padding: 0 0 0 19px;
  width: 17%;
}

.campaigns .sort-panel__item:nth-child(4) {
  padding: 0 0 0 31px;
  width: 16.5%;
}

.campaigns .sort-panel__item:nth-child(5) {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 22px;
}

.campaigns .report-card .deputy-card-photo_small {
  z-index: 11;
}

.campaigns .report-card .deputy-card-tittle {
  font-weight: 800;
  font-size: 12px;
  line-height: 169.8%;
  text-align: center;
  text-transform: capitalize;
  color: #1d1d1b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.campaigns .report-card .deputy-card-logo-faction {
  border: none;
  border-radius: 0;
}

.campaigns .report-card .deputy-card-logo-faction span {
  border: none;
  border-radius: 0;
}

.campaigns .report-card .deputy-count-fuckups {
  border: 1px solid rgba(0, 0, 0, 0.07);
  left: -15px;
  z-index: 10;
}

.campaigns .report-card .deputy-count-fuckups span {
  font-weight: 800;
  font-size: 14px;
  line-height: 169.8%;
  text-align: center;
  color: #f77638;
  background: #ffffff center center;
}

.campaigns .report-card .faction-count-fuckups {
  border: 1px solid rgba(0, 0, 0, 0.07);
  left: 0px;
  z-index: 10;
}

.campaigns .report-card .faction-count-fuckups span {
  font-weight: 800;
  font-size: 14px;
  line-height: 169.8%;
  text-align: center;
  color: #f77638;
  background: #ffffff center center;
}

.campaigns .report-card .fuckup-card__members {
  margin-top: 27px;
  margin-bottom: 0px;
}

.campaigns .report-card__column_title {
  line-height: 1.22;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0px 40px;
}

@media only screen and (min-width: 1366px) {
  .campaigns .report-card__column_title {
    line-height: 1.22;
  }
}

@media only screen and (min-width: 1366px) {
  .campaigns .report-card__column_link {
    width: 230px;
    padding: 0 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    line-height: 169.8%;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    position: absolute;
    bottom: 30px;
    left: 40px;
  }
}

@media only screen and (min-width: 1366px) {
  .campaigns .report-card__column_sum {
    width: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }
}

.campaigns .report-card__column_statistics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 70%;
}

@media only screen and (max-width: 1365px) {
  .campaigns .report-card__column_statistics {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
  }
}

@media only screen and (min-width: 1366px) {
  .campaigns .report-card__column_coverage {
    padding: 0 20px 0 10px;
  }
}

.report-card-deputy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

@media only screen and (min-width: 1366px) {
  .report-card-deputy {
    margin-bottom: 0;
  }
}

.report-card-deputy__info {
  margin-left: 10px;
}

@media only screen and (min-width: 1024px) {
  .report-card-deputy__info {
    margin-left: 18px;
  }
}

.report-card-deputy__link {
  margin: 6px 4px 0 0;
}

.report-card-deputy .deputy-card-photo {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 60px;
  height: 60px;
  padding: 2px;
  border-color: rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) {
  .report-card-deputy .deputy-card-photo {
    width: 110px;
    height: 110px;
    padding: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .report-card-deputy .deputy-card-photo:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    border-color: rgba(0, 0, 0, 0);
  }
}

.report-card-link__title {
  display: block;
  color: #000;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.2;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

@media only screen and (min-width: 1024px) {
  .report-card-link__title:hover {
    color: rgba(0, 0, 0, 0.6);
  }
}

.report-card-link .button {
  padding: 0 25px;
  height: 35px;
  line-height: 35px;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

.report-card-link .button__icon {
  margin-right: 6px;
  vertical-align: unset;
}

.report-card-link .button .icon {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  width: 12px;
  height: 12px;
}

.report-card-date {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.43;
}

@media only screen and (min-width: 768px) {
  .report-card-date {
    font-size: 18px;
    line-height: 1.444;
  }
}

@media only screen and (min-width: 1366px) {
  .report-card-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    padding: 0 10px;
  }
}

.report-card-sum,
.report-card-coverage {
  font-weight: 500;
  font-size: 40px;
  color: #4275dc;
  line-height: 1;
}

@media only screen and (min-width: 1366px) {
  .report-card-sum,
  .report-card-coverage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.report-card-sum {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 11px;
  font-weight: 800;
  font-size: 38px;
  line-height: 169.8%;
  text-align: center;
  color: #4275dc;
}

@media only screen and (min-width: 768px) {
  .report-card-sum {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 1366px) {
  .report-card-sum {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .report-card-sum uah {
    margin-top: 1px;
    margin-left: 10px;
  }
}

.report-card-coverage {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 1366px) {
  .report-card-coverage {
    padding-top: 0;
    border-top: 0;
  }
}

.report-card-title {
  margin-bottom: 16px;
}

@media only screen and (min-width: 1366px) {
  .report-card-title {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.deputy-card-single {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .deputy-card-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
  }
}

.deputy-card-single__title {
  font-weight: 500;
  line-height: 1.2;
}

.deputy-card-single__link {
  margin: 4px 4px 0 0;
}

.deputy-card-single-info {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  width: 50%;
}

.deputy-card-single-info .article__sharing {
  margin-top: 25px;
  margin-left: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.deputy-card-single-info .article__sharing-title {
  position: absolute;
  right: -111px;
  top: 8px;
}

.deputy-card-single-info .article__sharing:hover #icon-sharing {
  fill: #ff0600;
}

.deputy-card-single-info__statistics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 11px;
}

.deputy-card-single-info__statistics .rounded-button-link_light {
  width: 160px;
  height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
}

.deputy-card-single-info__statistics .count-fuckups,
.deputy-card-single-info__statistics .count-campaigns {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 169.8%;
  text-align: center;
}

.deputy-card-single-info__statistics .deputy-card svg {
  width: 18px;
  height: 18px;
  max-width: unset;
  max-height: unset;
}

.deputy-card-single-info__statistics .deputy-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.deputy-card-single-info__statistics .deputy-card__campaigns .icon-campaigns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.deputy-card-single-info__statistics
  .deputy-card__campaigns
  .icon-campaigns
  svg {
  fill: #4966b1;
}

.deputy-card-single-info__statistics .deputy-card__campaigns .icon-fuckups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.deputy-card-single-info__statistics .deputy-card__campaigns .count-campaigns {
  color: #4275dc;
}

.deputy-card-single-info__statistics .deputy-card__fuckups .icon-fuckups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.deputy-card-single-info__statistics .deputy-card__fuckups .icon-fuckups svg {
  fill: #f77638;
}

.deputy-card-single-info__statistics .deputy-card__fuckups .count-fuckups {
  color: #f77638;
}

.deputy-card-single-info:nth-child(1) {
  border-left: unset;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.deputy-card-single-info:nth-child(1) .deputy-card__info.fraction {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  right: -40px;
  top: -6px;
  overflow: hidden;
  background: white;
}

.deputy-card-single-info:nth-child(1) .deputy-card__info.fraction img {
  width: 35px;
}

.deputy-card-single-info:nth-child(1) .deputy-card__info.fraction a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .deputy-card-single-info {
    padding: 9px 0 0 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
  }
}

.deputy-card-single-info__list {
  margin-top: 20px;
  line-height: 1.2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  vertical-align: top;
  width: 100%;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .deputy-card-single-info__list {
    margin-top: 36px;
    border: 0;
  }
}

.deputy-card-single-info__list tr {
  vertical-align: top;
}

.deputy-card-single-info__list tr + tr td {
  padding-top: 14px;
}

@media only screen and (min-width: 768px) {
  .deputy-card-single-info__list tr + tr td {
    padding-top: 10px;
  }
}

.deputy-card-single-info__list tr td:last-child {
  width: 100%;
}

.deputy-card-single-info__list tr:first-child td {
  padding-top: 20px;
}

@media only screen and (min-width: 768px) {
  .deputy-card-single-info__list tr:first-child td {
    padding-top: 0;
  }
}

.deputy-card-single-info__icon:last-child,
.deputy-card-single-info__label:last-child,
.deputy-card-single-info__title:last-child {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 200%;
  color: #ffffff;
}

.deputy-card-single-info__icon {
  display: inline-block;
  margin-top: 1px;
  margin-bottom: 16px;
  margin-right: 7px;
  line-height: 0;
  width: 13px;
}

@media only screen and (min-width: 768px) {
  .deputy-card-single-info__icon {
    margin-top: 3px;
    margin-bottom: 14px;
  }
}

.deputy-card-single-info__label {
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.4);
}

@media only screen and (min-width: 768px) {
  .deputy-card-single-info__label {
    margin-right: 16px;
  }
}

.deputy-card-single-info__label,
.deputy-card-single-info__title {
  margin-bottom: 14px;
}

@media only screen and (min-width: 768px) {
  .deputy-card-single-info__label,
  .deputy-card-single-info__title {
    margin-bottom: 11px;
  }
}

.deputy-card-single-info__label {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 200%;
  color: #ffffff;
}

.deputy-card-single-info__title {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 200%;
  color: #ffffff;
}

.deputy-card-single-info .icon {
  max-width: 20px;
  max-height: 20px;
}

.punishment-progress {
  margin: 0 auto -34px;
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px);
  width: 100%;
  padding: 16px 9px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 0 0 7px 7px;
  -webkit-box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.25);
  box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.25);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.punishment-progress .progressbar-block {
  width: 100%;
  /* margin: auto; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.punishment-progress .progressbar-block .collected_funds .progressbar__label {
  margin-right: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 169.8%;
  text-align: center;
  color: #4275dc;
}

.punishment-progress .progressbar-block .required_funds .progressbar__label {
  margin-left: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 169.8%;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}

@media only screen and (min-width: 768px) {
  .punishment-progress {
    margin: 0 auto -49px;
    padding: 22px 28px 0;
    -webkit-transform: translateY(-91px);
    transform: translateY(-91px);
  }
}

@media only screen and (min-width: 1024px) {
  .punishment-progress {
    max-width: 644px;
  }
}

@media only screen and (min-width: 1366px) {
  .punishment-progress {
    -webkit-transform: translateY(-91px);
    transform: translateY(-91px);
    max-width: 1030px;
  }
}

.punishment-progress__title {
  margin-bottom: 9px;
  font-weight: 800;
  font-size: 18px;
  line-height: 169.8%;
  text-align: center;
  color: #272727;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .punishment-progress__title {
    margin-bottom: 14px;
    font-size: 20px;
  }
}

.punishment-progress__left-sum {
  margin-left: 3px;
  font-weight: 800;
  color: #4275dc;
  font-size: 23px;
  line-height: 169.8%;
  text-align: center;
}

.punishment-progress__button {
  margin-top: -2px;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

@media only screen and (min-width: 768px) {
  .punishment-progress__button {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 1366px) {
  .punishment-progress__button {
    margin-top: 4px;
  }
}

.progressbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 25px;
  border-radius: 0px;
  background: #ededed;
  overflow: hidden;
  width: 70%;
}

@media only screen and (min-width: 768px) {
  .progressbar {
    height: 15px;
    background-position: -2px 4px;
  }
}

.progressbar__filler {
  line-height: 25px;
}

@media only screen and (min-width: 768px) {
  .progressbar__filler {
    line-height: 50px;
  }
}

.progressbar__filler_main {
  background-color: #4275dc;
  color: #fff;
}

.progressbar__filler_space {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 0;
  color: #4275dc;
}

.progressbar__text {
  display: none;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media only screen and (min-width: 768px) {
  .progressbar__text {
    -webkit-transform: none;
    transform: none;
  }
}

.progressbar__text_visible {
  display: inline-block;
}

.progressbar__label {
  margin-left: 1px;
  font-weight: 500;
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .progressbar__label {
    font-size: 24px;
  }
}

.progressbar__label_fade {
  color: #8498cd;
}

.subscribe-fuckups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}

.subscribe-fuckups.home-subscribe {
  margin-top: 35px;
}

.subscribe-fuckups.home-subscribe #subscr_form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.subscribe-fuckups.home-subscribe #subscr_submit,
.subscribe-fuckups.home-subscribe #subscr_email {
  width: 65%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.subscribe-fuckups .subscr_form__response {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.subscribe-fuckups h2 {
  font-weight: 800;
  font-size: 18px;
  line-height: 169.8%;
  text-align: center;
  color: #272727;
}

.subscribe-fuckups form {
  width: 600px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.subscribe-fuckups form input {
  width: 400px;
  padding: 10px 0 10px 22px;
  text-align: start;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.subscribe-fuckups form input::-webkit-input-placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 169.8%;
  color: rgba(39, 39, 39, 0.3);
}

.subscribe-fuckups form input:-ms-input-placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 169.8%;
  color: rgba(39, 39, 39, 0.3);
}

.subscribe-fuckups form input::-ms-input-placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 169.8%;
  color: rgba(39, 39, 39, 0.3);
}

.subscribe-fuckups form input::placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 169.8%;
  color: rgba(39, 39, 39, 0.3);
}

.subscribe-fuckups form button {
  width: 200px;
  font-weight: 800;
  font-size: 12px;
  line-height: 169.8%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-box-shadow: 0px 13px 18px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 13px 18px rgba(0, 0, 0, 0.11);
  padding: 15px 0;
  position: relative;
}

.subscribe-fuckups form button:after {
  border: solid #fafafa;
  border-width: 0 0px 3px 0px;
  content: "";
  height: 22px;
  right: 23px;
  position: absolute;
  width: 9px;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.popup .subscribe-fuckups form button:after {
  right: 115px;
}

.deputy__body {
  position: relative;
}

.deputy__title {
  margin: 0;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
}

@media only screen and (min-width: 768px) {
  .deputy__title {
    font-size: 28px;
  }
}

.deputy__title_light {
  color: #fff;
}

.deputy__fuckups {
  margin-top: 34px;
}

@media only screen and (min-width: 768px) {
  .deputy__fuckups {
    padding-bottom: 61px;
    margin-top: 68px;
  }
}

@media only screen and (min-width: 1024px) {
  .deputy__fuckups {
    padding-bottom: 50px;
    margin-top: 128px;
  }
}

@media only screen and (min-width: 1366px) {
  .deputy__fuckups {
    padding-bottom: 18px;
  }
}

.deputy__campaigns {
  padding: 43px 0 56px;
  background-color: #fcfcfc;
}

@media only screen and (min-width: 768px) {
  .deputy__campaigns {
    padding: 70px 0 67px;
  }
}

@media only screen and (min-width: 1024px) {
  .deputy__campaigns {
    padding: 70px 0 97px;
  }
}

@media only screen and (min-width: 1366px) {
  .deputy__campaigns {
    padding: 70px 0 113px;
  }
}

.deputy .hero {
  padding-top: 70px;
  padding-bottom: 97px;
}

@media only screen and (min-width: 768px) {
  .deputy .hero {
    padding-top: 130px;
    padding-bottom: 120px;
  }
}

.deputy .hero .fraction-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 320px;
}

.deputy .hero .fraction-logo img {
  width: 100%;
  padding: 20px;
  background: white;
  border-radius: 5px;
}

.deputy .hero .deputy-card-photo {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin: 0 auto 12px;
  width: 194px;
  height: 194px;
  border-color: rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width: 768px) {
  .deputy .hero .deputy-card-photo {
    margin: 0;
    width: 250px;
    height: 250px;
  }
}

@media only screen and (min-width: 1366px) {
  .deputy .hero .deputy-card-photo {
    width: 250px;
    height: 250px;
  }
}

.deputy .deputy-card-single {
  margin: 0 auto;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .deputy .deputy-card-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 1030px;
  }
}

.deputy .deputy-card-single__title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  line-height: 139.8%;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0 0 11px;
  font-size: 20px;
}

@media only screen and (min-width: 768px) {
  .deputy .deputy-card-single__title {
    margin: 0 0 16px;
    font-size: 35px;
  }
}

.deputy .articles-wrapper {
  margin-top: 37px;
  margin-bottom: 75px;
}

.deputy .articles-list {
  margin-top: 36px;
}

.deputy .articles-list.more-load .article-card-container.article-more {
  display: block;
}

.deputy .articles-list .article-card-container.article-more {
  display: none;
}

.articles-list__btn-more-post {
  width: 100%;
}

.campaign__body {
  position: relative;
  padding-bottom: 43px;
  background: #fcfcfc;
}

@media only screen and (min-width: 768px) {
  .campaign__body {
    padding-bottom: 65px;
  }
}

@media only screen and (min-width: 1366px) {
  .campaign__body {
    padding-bottom: 130px;
  }
}

.campaign__decoration_t-l {
  top: 220px;
  left: -300px;
}

.campaign-hero {
  padding-top: 134px;
  padding-bottom: 115px;
  text-align: left;
}

.campaign-hero__part {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 1024px) {
  .campaign-hero__part {
    width: 50%;
  }
}

.campaign-hero__part_left {
  margin-bottom: 20px;
}

@media only screen and (min-width: 1024px) {
  .campaign-hero__part_left {
    margin-bottom: 0;
    padding: 11px 20px 0 0;
  }
}

@media only screen and (min-width: 1366px) {
  .campaign-hero__part_left {
    padding: 11px 60px 0 0;
  }
}

.campaign-hero__part_right {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.campaign-hero__part_right .article__sharing {
  margin-top: 25px;
  margin-left: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.campaign-hero__part_right .article__sharing-title {
  position: absolute;
  right: -111px;
  top: 8px;
}

.campaign-hero__part_right .article__sharing:hover #icon-sharing {
  fill: #ff0600;
}

.campaign-hero__part_right .deputy-card-photo-fb {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-width: 75px;
  height: 75px;
  padding: 0px;
  border-radius: 50%;
}

.campaign-hero__part_right .deputy-card-single {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.campaign-hero__part_right .deputy-card-single-info {
  width: 100%;
}

.campaign-hero__part_right .deputy-card-single-info__statistics {
  margin-top: 35px;
  margin-bottom: 35px;
}

.campaign-hero__part_right .deputy-card-single__title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  font-size: 22px;
  line-height: 139.8%;
  text-transform: capitalize;
  padding-left: 18px;
}

.campaign-hero__part_right .deputy-card-single .deputy-card__fraction {
  max-width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.campaign-hero__part_right
  .deputy-card-single
  .deputy-card__fraction
  .deputy-card__link
  img {
  border: 0;
  width: 70%;
  margin: auto;
}

.campaign-hero__part_right
  .deputy-card-single
  .deputy-card__fraction
  .deputy-card__link
  .icon-fuckups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 1024px) {
  .campaign-hero__part_right {
    padding: 8px 0 0 20px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media only screen and (min-width: 1366px) {
  .campaign-hero__part_right {
    padding: 8px 0 0 38px;
  }
}

.campaign-hero__title {
  margin-bottom: 17px;
  font-weight: 900;
  font-size: 26px;
  line-height: 139.8%;
  color: #ffffff;
  width: 100%;
}

.campaign-hero__text {
  position: relative;
  overflow: hidden;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 170%;
  color: #ffffff;
  text-align: justify;
}

.campaign-hero__text:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(66, 117, 220, 0)),
    color-stop(rgba(66, 117, 220, 0.7)),
    to(#4275dc)
  );
  background: linear-gradient(
    rgba(66, 117, 220, 0),
    rgba(66, 117, 220, 0.7),
    #4275dc
  );
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.3s, -webkit-transform 0s 0.3s;
  transition: opacity 0.3s, -webkit-transform 0s 0.3s;
  transition: opacity 0.3s, transform 0s 0.3s;
  transition: opacity 0.3s, transform 0s 0.3s, -webkit-transform 0s 0.3s;
}

.campaign-hero__text_cropped:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
}

.campaign-hero__text p {
  margin: 0 0 10px;
}

.campaign-hero__more {
  margin-top: 2px;
  font-weight: 500;
  font-size: 15px;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  cursor: pointer;
}

@media only screen and (min-width: 1024px) {
  .campaign-hero__more:hover {
    color: #4275dc;
  }
}

.campaign-hero__more .icon {
  display: inline-block;
  position: relative;
  top: -1px;
  margin-left: 3px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 5px;
  height: 8px;
  fill: currentColor;
}

@media only screen and (min-width: 1024px) {
  .campaign-hero .hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1020px;
  }
}

@media only screen and (max-width: 767px) {
  .campaign-hero .deputy-card-single {
    text-align: center;
  }
}

.campaign-hero .deputy-card-single .deputy-card-photo {
  margin: 0 auto 12px;
  width: 194px;
  height: 194px;
  padding: 9px;
  border-color: rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width: 768px) {
  .campaign-hero .deputy-card-single .deputy-card-photo {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 218px;
    height: 218px;
    padding: 8px;
  }
}

.campaign-hero .deputy-card-single__title {
  margin: 0 0 5px;
  line-height: 1.22;
  font-size: 24px;
}

.campaign-hero .deputy-card-single-info {
  margin-left: 0;
  padding: 5px 0 0 21px;
  border: 0;
}

@media only screen and (max-width: 767px) {
  .campaign-hero .deputy-card-single-info__list {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media only screen and (min-width: 768px) {
  .campaign-hero .deputy-card-single-info__list {
    margin-top: 22px;
  }
}

.campaign-statistics {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-87px);
  transform: translateY(-87px);
  background: #ffffff;
  -webkit-box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
  box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
}

@media only screen and (min-width: 768px) {
  .campaign-statistics {
    padding: 23px 32px;
  }
}

@media only screen and (min-width: 768px) {
  .campaign-statistics__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.campaign-statistics__item {
  padding: 11px 20px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  .campaign-statistics__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    padding: 0 20px 11px;
  }
}

.campaign-statistics__item + .campaign-statistics__item {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 768px) {
  .campaign-statistics__item + .campaign-statistics__item {
    border-top: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }
}

.campaign-statistics__label {
  margin-bottom: 8px;
  line-height: 1;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.3);
}

.campaign-statistics__value {
  line-height: 1.2;
  font-size: 40px;
  color: #4275dc;
}

.campaign-statistics__value_small {
  margin-top: 14px;
  font-size: 16px;
}

.campaign-statistics__link {
  display: table;
  margin: -14px auto 0;
  -webkit-transform: translateY(calc(50% + 10px));
  transform: translateY(calc(50% + 10px));
}

@media only screen and (min-width: 768px) {
  .campaign-statistics__link {
    margin: -27px auto 0;
    -webkit-transform: translateY(calc(50% + 23px));
    transform: translateY(calc(50% + 23px));
  }
}

.campaign-statistics__link .icon {
  margin-right: 7px;
  width: 17px;
  height: 17px;
}

.campaign-fb {
  border-radius: 3px;
  background-color: #fff;
  -webkit-box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.05);
  box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.05);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .campaign-fb {
    border-radius: 7px;
  }
}

.campaign-fb-slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.campaign-fb-slider__items.flickity-enabled {
  height: 285px;
}

.campaign-fb-slider__item {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 1024px) {
  .campaign-fb-slider__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.campaign-fb-slider__part {
  padding-top: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .campaign-fb-slider__part {
    padding-top: 33px;
  }
}

@media only screen and (min-width: 1024px) {
  .campaign-fb-slider__part {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    width: 50%;
    padding-bottom: 50px !important;
  }
}

@media only screen and (min-width: 1366px) {
  .campaign-fb-slider__part {
    padding-top: 30px;
    padding-bottom: 68px !important;
  }
}

.campaign-fb-slider__part + .campaign-fb-slider__part {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

@media only screen and (min-width: 1024px) {
  .campaign-fb-slider__part + .campaign-fb-slider__part {
    border-top: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
  }
}

.campaign-fb-slider__wrap {
  padding: 0 13px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .campaign-fb-slider__wrap {
    padding: 0 26px;
  }
}

@media only screen and (min-width: 1024px) {
  .campaign-fb-slider__wrap {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 1366px) {
  .campaign-fb-slider__wrap {
    padding: 0 40px;
  }
}

.campaign-fb-slider__heading {
  width: 100%;
  padding: 23px 0 14px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

@media only screen and (min-width: 768px) {
  .campaign-fb-slider__heading {
    padding: 15px 0 16px;
    font-size: 15px;
  }
}

@media only screen and (min-width: 1024px) {
  .campaign-fb-slider__heading {
    text-align: center;
  }
}

.campaign-fb-slider__title {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
}

@media only screen and (min-width: 768px) {
  .campaign-fb-slider__title {
    font-size: 24px;
  }
}

@media only screen and (min-width: 1024px) {
  .campaign-fb-slider__title {
    margin-bottom: 12px;
  }
}

@media only screen and (min-width: 1366px) {
  .campaign-fb-slider__title {
    font-size: 28px;
  }
}

.campaign-fb-slider iframe {
  width: 100%;
}

.campaign-fb-reactions {
  padding-bottom: 22px;
}

@media only screen and (min-width: 768px) {
  .campaign-fb-reactions {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .campaign-fb-reactions {
    padding-bottom: 0;
  }
}

.campaign-fb-reactions__wrap {
  overflow: hidden;
}

.campaign-fb-reactions__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1px -1px 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}

.campaign-fb-reaction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding: 9px 0 6px 7px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.07);
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.07);
}

@media only screen and (min-width: 768px) {
  .campaign-fb-reaction {
    width: calc(100% / 4);
    padding: 18px 0 19px 22px;
  }
}

@media only screen and (min-width: 1024px) {
  .campaign-fb-reaction {
    padding: 35px 0 33px 11px;
  }
}

@media only screen and (min-width: 1366px) {
  .campaign-fb-reaction {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 22px 0 28px 19px;
  }
}

.campaign-fb-reaction__icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 32px;
  height: 32px;
}

@media only screen and (min-width: 768px) {
  .campaign-fb-reaction__icon {
    width: 45px;
    height: 45px;
  }
}

@media only screen and (min-width: 1366px) {
  .campaign-fb-reaction__icon {
    width: 63px;
    height: 63px;
  }
}

.campaign-fb-reaction__text {
  margin-left: 10px;
}

@media only screen and (min-width: 768px) {
  .campaign-fb-reaction__text {
    margin-left: 7px;
  }
}

@media only screen and (min-width: 1366px) {
  .campaign-fb-reaction__text {
    margin-left: 12px;
  }
}

.campaign-fb-reaction__label {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

@media only screen and (min-width: 1366px) {
  .campaign-fb-reaction__label {
    font-size: 12px;
    line-height: 1.45;
  }
}

.campaign-fb-reaction__number {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .campaign-fb-reaction__number {
    font-size: 28px;
  }
}

.campaign-fb-slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

@media only screen and (min-width: 1024px) {
  .campaign-fb-slider-nav {
    position: absolute;
    width: 100%;
    bottom: 0;
  }
}

.campaign-fb-slider-nav__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #4275dc;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .campaign-fb-slider-nav__button {
    margin: 0 18px;
    width: 50px;
    height: 50px;
  }
}

.campaign-fb-slider-nav__button_prev {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.campaign-fb-slider-nav__button .icon {
  width: 10px;
  height: 15px;
  fill: #fff;
}

@media only screen and (min-width: 768px) {
  .campaign-fb-slider-nav__button .icon {
    width: 13px;
    height: 21px;
  }
}

.punishers {
  padding: 70px 0 105px;
  background-color: #fcfcfc;
}

.punishers__title {
  margin: 0 auto 30px;
  text-align: center;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 60px;
  -webkit-animation: fade 0.8s;
  animation: fade 0.8s;
}

.punishers__title.pop-up {
  color: #fff;
}

.punishers__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.punishers__list.more-load .punisher-card.article-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.punishers__list .punisher-card.article-more {
  display: none;
}

.punishers .sort-panel__item:nth-child(1) {
  width: 35%;
  padding: 0 10px 0 31px;
}

.punishers .sort-panel__item:nth-child(3) {
  margin-left: auto;
  padding-right: 32px;
}

.punisher-card {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0;
  min-height: 75px;
  border-radius: 5px;
  line-height: 1.2;
  background-color: #fff;
  -webkit-box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.05);
  box-shadow: 0 24px 65px 0 rgba(17, 44, 113, 0.05);
  margin-top: 10px;
  width: 48%;
}

@media only screen and (min-width: 768px) {
  .punisher-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
  }
}

.punisher-card__column {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.punisher-card__mail {
  margin-bottom: 15px;
  padding: 0 10px 0 20px;
  font-weight: 500;
  word-break: break-word;
}

@media only screen and (min-width: 768px) {
  .punisher-card__mail {
    margin-bottom: 0;
    width: 40%;
  }
}

@media only screen and (min-width: 1024px) {
  .punisher-card__mail {
    width: 50%;
    padding: 0 10px 0 31px;
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 160.1%;
    color: #1d1d1b;
  }
}

.punisher-card__date {
  margin-bottom: 15px;
  font-weight: normal;
  font-size: 16px;
  line-height: 160.1%;
  color: #1d1d1b;
}

@media only screen and (min-width: 768px) {
  .punisher-card__date {
    margin-bottom: 0;
  }
}

.punisher-card__sum {
  font-weight: 500;
  color: #4275dc;
}

@media only screen and (min-width: 768px) {
  .punisher-card__sum {
    margin-left: auto;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .punisher-card__sum {
    font-weight: 800;
    font-size: 23px;
    line-height: 169.8%;
    text-align: center;
  }
}

.search-results__body {
  padding: 52px 0 0;
  overflow: hidden;
}

.search-results__part {
  padding-top: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.search-results__part + .search-results__part {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin-top: 50px;
}

.search-results__part_blue {
  margin-top: 50px;
  padding-bottom: 83px;
  background-color: #4275dc;
}

.search-results__part_blue .search-results__title {
  color: #fff;
}

.search-results__part_blue .button {
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.search-results__title {
  margin: 0;
  font-weight: 800;
  font-size: 37px;
  line-height: 169.8%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 70px;
}

.search-results__more {
  margin-top: 14px;
}

.search-results__reports {
  margin: 47px 0 24px;
  padding: 0;
  list-style-type: none;
}

.search-results .hero {
  padding-bottom: 0;
  overflow: visible;
}

@media only screen and (min-width: 1366px) {
  .search-results .hero {
    padding-top: 160px;
  }
}

.search-results .articles-list {
  margin-top: 36px;
}

.search-results .deputies {
  margin: 0 !important;
}

.main-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 11px 20px 14px 20px;
  border: 1px solid #eff1f7;
  border-radius: 40px;
  font-size: 18px;
  color: #000;
  background-color: #fff;
}

@media only screen and (min-width: 1024px) {
  .main-search {
    padding: 21px 27px 24px 60px;
    font-size: 24px;
  }
}

.main-search__input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  text-align: center;
  font-weight: 300;
  background-color: transparent;
  color: currentColor;
}

.main-search__input::-webkit-input-placeholder {
  color: currentColor;
}

.main-search__input:-ms-input-placeholder {
  color: currentColor;
}

.main-search__input::-ms-input-placeholder {
  color: currentColor;
}

.main-search__input::placeholder {
  color: currentColor;
}

.main-search__input::-moz-placeholder {
  color: currentColor;
}

.main-search__input::-webkit-input-placeholder {
  color: currentColor;
}

.main-search__input:-ms-input-placeholder {
  color: currentColor;
}

.main-search__icon {
  display: inline-block;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

@media only screen and (min-width: 1024px) {
  .main-search__icon {
    width: 33px;
    height: 33px;
  }
}

.main-search .icon {
  fill: #4275dc;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9000;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #272727;
  opacity: 0;
  text-align: center;
  -webkit-transition: left 0s 0.5s, opacity 0.5s;
  transition: left 0s 0.5s, opacity 0.5s;
}

@media only screen and (min-width: 1024px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile__navigation {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  .nav-mobile__navigation {
    margin-top: 0;
  }
}

.nav-mobile .navigation__item {
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
  opacity: 0;
  line-height: 1.438;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.nav-mobile .navigation__link {
  display: inline-block;
  padding: 13px 20px;
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  .nav-mobile .navigation__link {
    padding: 8px 20px;
  }
}

.nav-mobile__socials {
  position: absolute;
  bottom: 18px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  .nav-mobile__socials {
    bottom: 10px;
  }
}

.nav-mobile .socials-header {
  display: block !important;
  width: 100%;
  height: auto;
  text-align: center;
}

.nav-mobile .socials-header:before {
  -webkit-transform: rotate(-59deg);
  transform: rotate(-59deg);
  width: 85px;
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  .nav-mobile .socials-header:before {
    width: 55px;
  }
}

.nav-mobile .socials-header__item {
  display: inline-block;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 25px;
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  .nav-mobile .socials-header__item {
    padding: 10px 25px;
  }
}

.nav-mobile_opened {
  opacity: 1;
  left: 0;
  -webkit-transition: left 0s, opacity 0.5s;
  transition: left 0s, opacity 0.5s;
}

.nav-mobile_opened .navigation__item {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.nav-mobile_opened .navigation__item:nth-of-type(1) {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.nav-mobile_opened .navigation__item:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.nav-mobile_opened .navigation__item:nth-of-type(3) {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.nav-mobile_opened .navigation__item:nth-of-type(4) {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.nav-mobile_opened .navigation__item:nth-of-type(5) {
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
}

.nav-mobile_opened .navigation__item:nth-of-type(6) {
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

.nav-mobile_opened .navigation__item:nth-of-type(7) {
  -webkit-transition-delay: 700ms;
  transition-delay: 700ms;
}

.nav-mobile_opened .navigation__item:nth-of-type(8) {
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

.nav-mobile_opened .navigation__item:nth-of-type(9) {
  -webkit-transition-delay: 900ms;
  transition-delay: 900ms;
}

.nav-mobile_opened .navigation__item:nth-of-type(10) {
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9999;
  width: 100%;
  height: 100%;
  padding: 0 20px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(39, 39, 39, 0.95);
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: left 0s 0.5s, opacity 0.5s;
  transition: left 0s 0.5s, opacity 0.5s;
}

@media only screen and (min-width: 768px) {
  .popup {
    padding: 0 30px 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .popup {
    padding: 0 0 50px;
  }
}

.popup__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin: 12px auto 17px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 1024px) {
  .popup__close {
    margin-bottom: 0;
    margin-top: 45px;
    margin-right: 8%;
    width: 52px;
    height: 52px;
  }
}

@media only screen and (min-width: 1024px) {
  .popup__close:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .popup__close:hover:before {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0);
  }
}

.popup__close:before {
  content: "";
  position: absolute;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  top: -4px;
  left: -4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  -webkit-transition: border-color 0.5s, -webkit-transform 0.5s;
  transition: border-color 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, border-color 0.5s;
  transition: transform 0.5s, border-color 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 1024px) {
  .popup__close:before {
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    top: -6px;
    left: -6px;
  }
}

.popup__close svg {
  width: 13px;
  height: 13px;
}

@media only screen and (min-width: 1024px) {
  .popup__close svg {
    width: 18px;
    height: 17px;
  }
}

.popup__inner {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  max-width: 85vw;
  border-radius: 0;
  width: 100%;
  background-color: #fff;
  margin: auto;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.popup__inner_full-width {
  max-width: none;
  background-color: transparent;
}

.popup__inner_wide {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 1024px) {
  .popup__inner_wide {
    max-width: 900px;
  }
}

@media only screen and (min-width: 1366px) {
  .popup__inner_wide {
    max-width: 1070px;
  }
}

.popup__wrapper {
  padding: 0 20px;
}

@media only screen and (min-width: 1366px) {
  .popup__wrapper {
    padding: 0 90px;
  }
}

.popup__wrapper-wide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media only screen and (min-width: 768px) {
  .popup__wrapper-wide {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.popup__title {
  font-weight: 500;
  font-size: 20px;
}

@media only screen and (min-width: 1024px) {
  .popup__title {
    font-size: 30px;
  }
}

.popup__line-through {
  position: relative;
  margin-bottom: 10px;
}

@media only screen and (min-width: 1024px) {
  .popup__line-through {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 1366px) {
  .popup__line-through {
    margin-bottom: 30px;
  }
}

.popup__line-through:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 1024px) {
  .popup__line-through:before {
    content: "";
  }
}

.popup__line-through span {
  display: inline-block;
  background-color: #fff;
  font-weight: 800;
  font-size: 26px;
  line-height: 139.8%;
  text-align: center;
  color: #000000;
}

@media only screen and (min-width: 1024px) {
  .popup__line-through span {
    padding: 0 24px;
  }
}

@media only screen and (min-width: 1024px) {
  .popup__line-through .right-pad {
    padding: 0 24px 0 0;
  }
}

.popup__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
}

@media only screen and (min-width: 1024px) {
  .popup__text {
    font-size: 18px;
  }
}

.popup_active {
  opacity: 1;
  left: 0;
  -webkit-transition: left 0s, opacity 0.5s;
  transition: left 0s, opacity 0.5s;
}

.popup_active .popup__inner {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.popup input[type="number"] {
  -moz-appearance: textfield;
}

.popup-punishers {
  padding: 0;
}

.popup-punishers .punishers {
  background-color: transparent;
}

.popup-donate__heading {
  margin-top: 14px;
}

@media only screen and (min-width: 1024px) {
  .popup-donate__heading {
    margin-top: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.popup-donate__heading-wide {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .popup-donate__heading-wide {
    width: 350px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .popup-donate__heading-wide {
    width: 320px;
    padding-right: 35px;
  }
}

@media only screen and (min-width: 1366px) {
  .popup-donate__heading-wide {
    width: 340px;
  }
}

.popup-donate__details {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(42, 56, 81, 0.6);
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .popup-donate__details {
    width: 50%;
    padding: 26px 0 10px 20px;
    line-height: 1.6;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    border-left: 1px solid rgba(71, 100, 179, 0.1);
  }
}

.popup-donate__details p {
  margin: 0;
}

.popup-donate__details p + p {
  margin-top: 10px;
}

.popup-donate__details-item {
  padding-bottom: 10px;
}

@media only screen and (min-width: 1024px) {
  .popup-donate__details-item {
    padding-bottom: 18px;
  }
}

.popup-donate__details-item p {
  line-height: 1.375;
  color: rgba(0, 0, 0, 0.302);
  margin: 0;
}

@media only screen and (min-width: 1366px) {
  .popup-donate__details-item p {
    font-size: 12px;
    line-height: 170%;
  }
}

.popup-donate__details-item:last-child {
  padding-bottom: 0;
}

.popup-donate__details-title {
  font-size: 13px;
}

@media only screen and (min-width: 1024px) {
  .popup-donate__details-title {
    font-size: 16px;
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 1366px) {
  .popup-donate__details-title {
    font-weight: 800;
    font-size: 18px;
    line-height: 160.1%;
  }
}

.popup-donate__icon {
  margin-bottom: 10px;
  height: 118px;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .popup-donate__icon {
    width: 50%;
    margin-bottom: 0;
    height: 146px;
  }
}

.popup-donate .popup__inner {
  padding: 19px 0 35px;
}

@media only screen and (min-width: 1024px) {
  .popup-donate .popup__inner {
    padding: 32px 0 40px;
  }
}

.popup-donate .popup__inner_wide {
  padding: 20px 30px 20px;
}

@media only screen and (min-width: 1024px) {
  .popup-donate .popup__inner_wide {
    padding: 20px 40px 20px;
  }
}

@media only screen and (min-width: 1366px) {
  .popup-donate .popup__inner_wide {
    padding: 32px 80px 40px;
  }
}

.donate-form {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .donate-form {
    margin-bottom: 0;
    width: 340px;
  }
}

@media only screen and (min-width: 1024px) {
  .donate-form {
    width: 430px;
  }
}

@media only screen and (min-width: 1366px) {
  .donate-form {
    margin-top: 0;
    width: 470px;
  }
}

.donate-form__guarantee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 1024px) {
  .donate-form__guarantee {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 0px 10px 0px;
    font-size: 13px;
  }
}

.donate-form__guarantee svg {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 9px;
  width: 21px;
  height: 28px;
}

.donate-form__button {
  -webkit-box-shadow: 0 0 0 20px #fff;
  box-shadow: 0 0 0 20px #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 169.8%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

.donate-form .button-underscore-donate {
  float: left;
  position: relative;
}

.donate-form .button-underscore-donate:after {
  border: solid #fafafa;
  border-width: 0 0px 3px 0px;
  content: "";
  height: 23px;
  right: 36px;
  position: absolute;
  width: 9px;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.input + .input {
  margin-top: 10px;
}

@media only screen and (min-width: 1024px) {
  .input + .input {
    margin-top: 20px;
  }
}

.input:last-child {
  margin-bottom: 16px;
}

@media only screen and (min-width: 1024px) {
  .input:last-child {
    margin-bottom: 20px;
  }
}

.input__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.86;
  color: rgba(0, 0, 0, 0.302);
}

@media only screen and (min-width: 1024px) {
  .input__label {
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 12px;
    line-height: 170%;
    text-align: left;
  }
}

.input__field {
  width: 100%;
  padding: 0;
  height: 37px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-radius: 17px;
  outline: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  text-align: left;
  padding-left: 33px;
}

@media only screen and (min-width: 1024px) {
  .input__field {
    height: 62px;
    border-radius: 0px;
    font-size: 24px;
    color: #e5e5e5;
  }
}

.input__field::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #e5e5e5;
}

.input__field::-moz-placeholder {
  /* Firefox 19+ */
  color: #e5e5e5;
}

.input .summ-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 768px) {
  .input .summ-btns {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.input
  .summ-btns
  button.button.button_round.button-gradient.button-gradient_orange {
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  border: 1px solid rgba(0, 0, 0, 0.07);
  color: #4275dc;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: white;
  border-radius: 0;
}

.input
  .summ-btns
  button.button.button_round.button-gradient.button-gradient_orange:hover {
  color: white;
  background: #4275dc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.input .summ-btns .button_round {
  font-size: 16px;
  height: 35px;
  padding: 0 20px;
  line-height: 35px;
  margin: 5px 0;
}

@media only screen and (min-width: 768px) {
  .input .summ-btns .button_round {
    margin: 0;
  }
}

.number-picker {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #4275dc;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: bold;
  font-size: 18px;
  padding-left: 0;
}

@media only screen and (min-width: 1024px) {
  .number-picker {
    width: 100%;
    font-size: 26px;
  }
}

.number-picker__input {
  width: 50px;
  padding: 0;
  border: 0;
  outline: none;
  text-align: center;
  background-color: transparent;
}

@media only screen and (min-width: 1024px) {
  .number-picker__input {
    width: 77px;
    color: #4275dc;
  }
}

.number-picker__input::-webkit-inner-spin-button,
.number-picker__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-picker__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.number-picker__button .svg_number-picker {
  stroke: #4275dc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.number-picker__button:hover .svg_number-picker path {
  stroke: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.number-picker__button:hover {
  background: #4275dc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (min-width: 1024px) {
  .number-picker__button {
    width: 40px;
    height: 60px;
  }
}

@media only screen and (min-width: 1024px) {
  .number-picker__button svg {
    width: 20px;
    height: 20px;
  }
}

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

.popup-thanks__icon {
  margin-bottom: 10px;
  height: 118px;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .popup-thanks__icon {
    height: 201px;
    margin-bottom: 14px;
  }
}

.popup-thanks__divider {
  margin: 25px 0 35px;
  height: 1px;
  border: 0;
  background-color: rgba(0, 0, 0, 0.04);
}

@media only screen and (min-width: 1024px) {
  .popup-thanks__divider {
    margin: 34px 0 43px;
  }
}

@media only screen and (min-width: 1024px) {
  .popup-thanks .popup__title {
    margin-bottom: 15px;
  }
}

.popup-thanks .popup__inner {
  padding: 19px 0 35px;
}

@media only screen and (min-width: 1024px) {
  .popup-thanks .popup__inner {
    padding: 40px 0 45px;
    max-width: 650px;
  }
}

.popup-socials {
  margin: 24px 0 0;
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .popup-socials {
    margin: 24px 0 0;
  }
}

.popup-socials svg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
}

@media only screen and (min-width: 1024px) {
  .popup-socials svg {
    height: 26px;
  }
}

.popup-socials .likely__widget {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

@media only screen and (min-width: 1024px) {
  .popup-socials .likely__widget {
    width: 75px;
    height: 75px;
  }
}

.popup-socials .likely__widget_twitter {
  background-color: #3db7ec;
}

.popup-socials .likely__widget_facebook {
  background-color: #4764b3;
}

.popup-socials .likely__widget_telegram {
  background-color: #4babde;
}

.popup-socials .likely__widget_telegram svg {
  left: -2px;
}

@media only screen and (min-width: 1024px) {
  .popup-socials .likely__widget_telegram svg {
    left: -4px;
  }
}

.popup-socials .likely__icon {
  display: none;
}

.popup-socials .likely__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
}

.loader {
  display: none;
  width: 100px;
  height: 100px;
  margin: 20px auto -40px;
}

@media only screen and (max-width: 767px) {
  .loader {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (min-width: 1024px) {
  .loader {
    margin: 20px auto 0;
  }
}

.result-items_hidden > *:not(:nth-child(-n + 3)):not(.deputy-card) {
  display: none;
  -webkit-animation: none;
  animation: none;
}

.result-items_hidden > .deputy-card:not(:nth-child(-n + 4)) {
  display: none;
  -webkit-animation: none;
  animation: none;
}

.result-items > * {
  -webkit-animation: fade 0.8s;
  animation: fade 0.8s;
}

.liqpay-form-container {
  display: none;
}

.check-other {
  padding: 15px 0;
  background-color: #4966b1;
  color: #fff;
}

/* election-rada-2019 */
.intro__elections2019 {
  text-align: left;
}

.elections2019__title {
  position: relative;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.elections2019__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.elections2019__item {
  width: 410px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.elections2019__deputy {
  background: #fff;
  color: #4b76c4;
  padding: 40px 45px;
  text-align: center;
}

.elections2019-deputy__counter {
  font-size: 90px;
  font-weight: bold;
  line-height: 90%;
}

.elections2019-deputy__text {
  font-size: 18px;
  line-height: 144%;
  padding-top: 25px;
  padding-bottom: 20px;
}

.elections2019__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #4b76c4;
  font-size: 16px;
  line-height: 162%;
  font-weight: 300;
  padding: 24px 43px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.elections2019__column-title {
  font-weight: bold;
  opacity: 0.15;
}

.elections2019__column {
  padding-bottom: 20px;
}

.elections2019__column:last-child {
  padding-bottom: 0;
}

.elections2019__punish {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #4b76c4;
  padding: 28px 43px;
}

.elections2019__punish .button_round {
  max-width: 200px;
}

.elections2019-punish__title {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.5;
  padding-bottom: 14px;
}

.elections2019-punish__subtitle {
  font-size: 16px;
  line-height: 1.875;
  font-weight: 300;
}

@media only screen and (max-width: 1365px) {
  .elections2019__title {
    font-size: 36px;
  }
  .elections2019__item {
    width: 310px;
    border-radius: 10px;
    padding: 20px;
  }
  .elections2019__descr {
    line-height: 140%;
  }
  .elections2019__punish {
    padding: 25px 20px;
  }
  .elections2019__punish__title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1023px) {
  .elections2019__title {
    font-size: 32px;
  }
  .elections2019__item {
    width: 49%;
  }
  .elections2019-deputy__counter {
    font-size: 85px;
  }
  .elections2019-deputy__text {
    font-size: 17px;
  }
  .elections2019-deputy__emoji {
    width: 70px;
  }
  .intro__elections2019 {
    padding-bottom: 90px;
  }
  .elections2019__punish {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
  }
  .elections2019__punish__title {
    line-height: 100%;
    padding-bottom: 10px;
  }
  .elections2019__column {
    padding-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .elections2019__title {
    font-size: 24px;
  }
  .elections2019__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .elections2019__deputy {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: self-start;
    -ms-flex-align: self-start;
    align-items: self-start;
  }
  .elections2019-deputy__text {
    font-size: 17px;
    line-height: 144%;
    width: 200px;
    padding: 0 20px;
  }
  .elections2019-deputy__emoji {
    width: 70px;
    height: auto;
  }
  .elections2019__descr {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    font-size: 15px;
    margin-left: 0;
    margin-top: 22px;
    line-height: 140%;
  }
  .elections2019__punish {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .elections2019-punish__text {
    margin-bottom: 15px;
  }
  .elections2019-punish__title {
    font-size: 19px;
  }
  .map-filter {
    top: -23px !important;
  }
}

@media only screen and (max-width: 479px) {
  .elections2019__title {
    font-size: 20px;
  }
  .elections2019__deputy {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .elections2019-deputy__counter {
    font-size: 60px;
  }
  .elections2019-deputy__text {
    font-size: 16px;
    padding: 15px 0;
  }
  .elections2019-deputy__emoji {
    width: 50px;
    height: auto;
  }
  .elections2019__item {
    width: 100%;
  }
  .elections2019__column {
    padding-bottom: 15px;
  }
  .elections2019-punish__title {
    font-size: 18px;
  }
  .elections2019-punish__subtitle {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
  }
}

.regions-map {
  position: relative;
}

#gmap {
  width: 100%;
  height: 610px;
}

.mapInfo {
  width: 245px;
  margin: 10px 5px 10px 10px;
}

.mapInfo .map-info__photo {
  -webkit-box-shadow: 0 0px 20px 0 rgba(17, 44, 113, 0.25);
  box-shadow: 0 0px 20px 0 rgba(17, 44, 113, 0.25);
}

.mapInfo .map-info__inner {
  padding-bottom: 15px;
}

.mapInfo .map-info__inner:last-child {
  padding-bottom: 0;
}

.mapInfo .map-info__region {
  padding-bottom: 3px;
}

.mapInfo .map-info__name a {
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mapInfo .map-info__name a:hover {
  color: #fe6a6e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mapInfo .map-info__count-fuckups {
  padding-bottom: 3px;
}

.mapInfo .button_round {
  font-size: 12px;
  height: 20px;
  padding: 0 13px;
}

.mapInfo .districtLink {
  font-size: 12px;
  color: #3366cc;
  border-bottom: 1px solid #3366cc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mapInfo .districtLink:hover {
  color: #fe6a6e;
  border-bottom: 1px solid #fe6a6e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 479px) {
  .mapInfo {
    width: 100%;
    margin: 0;
  }
}

.mapInfo__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 10px;
}

.mapInfo__title p {
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}

.districtNumber {
  font-size: 28px;
  font-weight: bold;
  color: #336699;
  padding-left: 5px;
}

.map-filter {
  position: absolute;
  width: 100%;
  top: -40px;
  z-index: 100;
}

@media only screen and (min-width: 768px) {
  .map-filter .small-search {
    margin: 0 auto 0 0;
    width: 474px;
  }
}

@media only screen and (min-width: 1024px) {
  .map-filter .small-search {
    width: 500px;
  }
}

@media only screen and (min-width: 1366px) {
  .map-filter .small-search {
    width: 704px;
  }
}

.pac-container {
  border: none;
  border-radius: 10px;
  margin-top: -23px;
  -webkit-box-shadow: 0 8px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.3);
}

#wpadminbar {
  position: fixed !important;
}

.select2-container--default .select2-selection--single {
  border: 0;
  border-bottom: 1px solid #4275dc;
  border-radius: 0;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 4px 4px 0 4px;
  border-color: #c4c4c4 transparent transparent transparent;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
}

.post-type-archive-fuckups .header {
  background-color: unset;
}

.hero_overlay-primary:before {
  background-color: unset;
}

.block-sortable .icon {
  width: 40%;
  height: auto;
  max-height: 100%;
}

.icon__smaller .icon {
  top: -3px;
  position: relative;
}

.icon__larger .icon {
  top: 3px;
  position: relative;
}

.icon__f {
  fill: #f77638;
}

.icon__a {
  fill: #000000;
}

.icon__large,
.icon__small,
.icon__m,
.icon__reaction,
.icon__eye {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  fill: #4275dc;
}

.block-sortable__item:hover .icon__reaction,
.block-sortable__item:hover .icon__eye,
.block-sortable__item:hover .icon__large,
.block-sortable__item:hover .icon__small,
.block-sortable__item:hover .icon__m,
.block-sortable__item:hover .icon__a,
.block-sortable__item:hover .icon__f,
.block-sortable__item.active .icon__reaction,
.block-sortable__item.active .icon__eye,
.block-sortable__item.active .icon__large,
.block-sortable__item.active .icon__small,
.block-sortable__item.active .icon__m,
.block-sortable__item.active .icon__a,
.block-sortable__item.active .icon__f {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  fill: #ffffff;
}

.block-sortable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.block-sortable__item {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.block-sortable__item:hover {
  background-color: #4275dc;
}

.block-sortable__item.active {
  background-color: #4275dc;
}

.block-sortable__item.disable-filter {
  background-color: #ededed;
  cursor: default;
}

.block-sortable__item.disable-filter .icon__large,
.block-sortable__item.disable-filter .icon__m,
.block-sortable__item.disable-filter .icon__small {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  fill: #ffffff;
}

.block-sortable__item.left-sortable {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.block-sortable__item.right-sortable {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  margin-right: 5px;
}

.block-sortable__item .sortable-icon {
  width: 16px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.block-sortable span {
  font-size: 14px;
  line-height: 169.8%;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  margin-right: 15px;
}

.single-fuckups .wrapper.hero__content {
  width: 1034px;
  padding: 0 105px;
}

.single-fuckups .deputy-card-photo_small {
  width: 55px;
  height: 55px;
  margin: 3px;
}

.post-type-archive-deputies .deputies-page .deputies {
  padding-top: 71px;
}

section.deputies-screen,
section.fraction-screen {
  margin-top: 90px;
}

.post-type-archive-fb-posts ul.campaigns__list {
  color: white;
}

.post-type-archive-fb-posts .deputy__campaigns {
  background: #272727;
}

.post-type-archive-fb-posts .deputy__campaigns .filter__panel {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post-type-archive-fb-posts .deputy__campaigns .filter .select.fraction {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 100px;
}

.post-type-archive-fb-posts
  .deputy__campaigns
  .filter
  .select.fraction
  .select__icon {
  margin-top: 2px;
  margin-right: 3px;
  margin-left: 7px;
  width: 24px;
  height: 24px;
}

.post-type-archive-fb-posts .deputy__campaigns .filter .small-search {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.post-type-archive-fb-posts .deputy__campaigns .filter .small-search__input {
  color: rgba(255, 255, 255, 0.3);
}

.post-type-archive-fb-posts .deputy__campaigns .filter .small-search .icon {
  fill: #ffffff;
}

.post-type-archive-fb-posts .deputy__campaigns .filter .type-deputy span {
  margin-right: 32px;
}

.post-type-archive-fb-posts
  .deputy__campaigns
  .filter
  .type-deputy
  .major-or-fraction__item {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  font-weight: 800;
  color: #ffffff;
}

.post-type-archive-fb-posts
  .deputy__campaigns
  .filter
  .type-deputy
  .major-or-fraction__item.active {
  color: #4275dc;
}

.post-type-archive-fb-posts
  .deputy__campaigns
  .filter
  .type-deputy
  .major-or-fraction__item:hover {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  color: #4275dc;
}

.post-type-archive-fb-posts .deputy__campaigns .filter .block-sortable span {
  color: white;
}

.post-type-archive-fb-posts .deputy__campaigns .filter .block-sortable__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-type-archive-fb-posts
  .deputy__campaigns
  .filter
  .select2-container--default
  .select2-selection--single {
  border-bottom: none;
  background: #272727;
  padding: 5px 0px 0 0px;
}

.post-type-archive-fb-posts
  .deputy__campaigns
  .filter
  .select2-container--default
  .select2-selection--single
  span {
  color: #ffffff;
}

.post-type-archive-fb-posts
  .deputy__campaigns
  .filter
  .select2-container--open
  .select2-selection.select2-selection--single {
  background: white;
  color: black;
}

.post-type-archive-fb-posts
  .deputy__campaigns
  .filter
  .select2-container--open
  .select2-selection.select2-selection--single
  span {
  color: black;
}

.post-type-archive-fb-posts
  .select2-container--open
  .select2-dropdown--below:before {
  background-color: white;
}

.page-about .publication__inner {
  margin: 0 auto -60px;
  -webkit-transform: translateY(-103px);
  transform: translateY(-103px);
  width: 100%;
  max-width: 1024px;
  padding: 85px 100px;
}

.page-about.publication .hero {
  background: url("/wp-content/themes/spr-rada/img/about-background.png")
    no-repeat center;
  background-size: cover;
  padding-top: 340px;
  padding-bottom: 230px;
}

.page-template-page-about,
.page-template-page-about .publication__body,
.page-template-page-about footer {
  background: #272727;
}

.page-about .hero__title_about {
  font-weight: 900;
  font-size: 37px;
  line-height: 139.8%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.page-template-page-about .header {
  background-color: unset;
}

.page-template-page-about .about-section {
  margin-bottom: 80px;
}

.page-template-page-about .about-section .about-section__inner {
  padding: 85px 105px;
}

.page-template-page-about .publication__content_no-socials {
  background: white;
}

.page-template-page-about .page-about .wrapper {
  -webkit-transform: translateY(-110px);
  transform: translateY(-110px);
  width: 1023px;
}

.page-template-page-about .about-section.bg-white {
  background: white;
}

.page-template-page-about .about-section {
  color: #ffffff;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 160.1%;
}

.page-template-page-about .about-section h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 160.1%;
  color: #ffffff;
  margin-top: 0px;
}

.page-template-page-about .about-section.bg-white {
  color: black;
}

.page-template-page-about .about-section.bg-white h2 {
  color: black;
}

/* Section count campaigns */
.campaigns-count.about-section .about-section__inner h2 {
  padding: 0px 85px;
}

.campaigns-count.about-section .about-section__inner {
  padding: 0px 0px;
}

.campaigns-count.about-section h2 {
  margin-bottom: 53px;
}

.campaigns-count .block-campaigns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.campaigns-count .block-campaigns__item.deputy {
  padding: 67px 112px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.campaigns-count .block-campaigns__item.faction {
  padding: 67px 112px;
}

.campaigns-count .block-campaigns__item .block-campaigns__item-count {
  font-weight: bold;
  font-size: 90px;
  line-height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 73px;
}

.campaigns-count .block-campaigns__item .block-campaigns__item-title {
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.campaigns-count .block-campaigns__item .block-campaigns__item-title svg {
  padding-right: 15px;
}

.campaigns-count .block-campaigns__item.deputy .block-campaigns__item-count {
  color: #4275dc;
}

.campaigns-count .block-campaigns__item.faction .block-campaigns__item-count {
  color: #f77638;
}

/*  Section How It Works */
.block-how-it-works__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 64px;
  padding-top: 64px;
}

.block-how-it-works__item .block-how-it-works__item-icon {
  min-width: 110px;
  position: relative;
}

.block-how-it-works__item .block-how-it-works__item-icon .icon-number {
  position: absolute;
  top: -30px;
  right: 30px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 160.1%;
  color: rgba(0, 0, 0, 0.2);
}

.block-how-it-works__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-template-page-about .about-section.how-it-works h2 {
  padding: 0px 85px;
}

.page-template-page-about .about-section.how-it-works .about-section__inner {
  padding: 85px 0px 0px 0px;
}

.page-template-page-about
  .about-section.how-it-works
  .block-how-it-works__item {
  padding: 85px;
}

/* ============== Section Contacts ============================================== */
.about-section.contacts .about-section__inner {
  padding-bottom: 0px;
}

.contacts .about-section__item h2 {
  width: 100%;
  margin-bottom: 70px;
}

.contacts .about-section__item .block-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contacts .about-section__item .block-contacts .block-contacts__email {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.contacts .about-section__item .title {
  font-weight: normal;
  font-size: 18px;
  line-height: 220%;
  color: rgba(0, 0, 0, 0.2);
}

.contacts .about-section__item .block-contacts__email .data {
  font-weight: bold;
  font-size: 18px;
  line-height: 220%;
  color: #4275dc;
}

.contacts .about-section__item .block-contacts__adress .data {
  font-weight: bold;
  font-size: 18px;
  line-height: 220%;
  color: black;
}

.contacts .about-section__item .block-contacts__adress {
  padding-left: 48px;
}

.contacts .about-section__item .block-contacts__email,
.contacts .about-section__item .block-contacts__adress {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 85px;
}

/*   Section about-fucups */
.about-fucups .about-section__item-quotes {
  font-weight: normal;
  font-size: 30px;
  line-height: 160.1%;
  color: #ffffff;
  position: relative;
}

.page-template-page-about .about-section.about-fucups .about-section__inner {
  padding-right: 0px;
}

.about-fucups .about-section__item-quotes .quotes-elem {
  position: absolute;
  top: 5px;
  left: -80px;
}

.about-fucups .about-section__item-offer {
  width: 75%;
}

.about-fucups .about-section__inner h2,
.about-fucups .about-section__inner .about-section__item-forms {
  margin-top: 53px;
  margin-bottom: 42px;
}

.about-fucups .about-section__inner .about-section__item-forms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-fucups .about-section__inner .about-section__item-forms .forms-item {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 160.1%;
  background: #ffffff;
  width: 290px;
  height: 195px;
  padding: 20px 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 25px;
}

.about-fucups
  .about-section__inner
  .about-section__item-forms
  .forms-item
  .forms-item__number {
  color: rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
}

.about-fucups
  .about-section__inner
  .about-section__item-forms
  .forms-item
  .forms-item__description {
  color: #000000;
}

.about-fucups .about-section .about-section__inner {
  padding: 85px 0 85px 105px;
}

.about-fucups .about-section__inner .about-section__item-forms {
  padding-right: 0;
}

.about-fucups .button_round {
  margin-left: 0;
}

.article__sharing {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 15px;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.article__sharing svg {
  fill: #cccccc;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.article__sharing .icon {
  width: 18px;
  display: block;
}

.article__sharing-block {
  display: none;
  margin-left: 9px;
}

.article__sharing-block a {
  margin-left: 16px;
}

.article__sharing:hover {
  width: 145px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: #ffffff;
  -webkit-box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
  box-shadow: 0px 13px 18px rgba(88, 47, 27, 0.11);
  border-top-left-radius: 110px;
  border-top-right-radius: 110px;
  border-bottom-left-radius: 110px;
  border-bottom-right-radius: 110px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.article__sharing:hover .article__sharing-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  fill: #cccccc;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.article__sharing:hover .article__sharing-icon {
  display: none;
}

.article__sharing#sharing-single-page:hover {
  width: 210px;
}

.article-card_dark {
  fill: #cccccc;
}

.article-card_dark .article__sharing {
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.article-card_dark .article__sharing svg {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.article-card_dark .article__sharing:hover svg {
  fill: #989494;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.article-card_light .article__sharing {
  border: 1px solid #cccccc;
}

.article-card_light .article__sharing svg {
  fill: #cccccc;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.article-card_light .article__sharing:hover svg {
  fill: #989494;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

/* Fraction screen ============================================================ */
.fraction-screen .block-fraction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fraction-screen .deputy-card__photo {
  background: transparent center center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  border-radius: 0;
}

.fraction-screen .deputy-card__progressbar {
  display: none;
}

.fraction-screen .progressbar {
  width: 100%;
  margin-bottom: 18px;
}

.fraction-screen .deputy-card {
  width: 16%;
  padding: 0px 10px 0px;
}

@media only screen and (min-width: 1024px) {
  .fraction-screen .deputy-card {
    width: 25%;
    padding: 0px 20px 0px;
  }
}

.fraction-screen .deputy-card__photo-container {
  border-radius: unset;
  background-color: unset;
  width: 100%;
}

.fraction-screen .fraction-no-donate {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
  position: relative;
  top: -8px;
  right: -10px;
}

.fraction-screen .fraction-no-donate .deputy-card__info.fuckups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fraction-screen .fraction-no-donate .deputy-card__info.fuckups a {
  color: #f77638;
}

.fraction-screen .fraction-no-donate__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fraction-screen .fraction-no-donate__item .deputy-card__info.fuckups {
  position: relative;
  top: 0px;
  right: 0px;
  margin-left: 13px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.07);
  min-width: 40px;
  height: 40px;
}

.fraction-screen .fraction-no-donate a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 169.8%;
  text-align: center;
  color: #000000;
}

/* Deputies screen ========================================================= */
.deputy-card .deputy-card__info {
  position: absolute;
  min-width: 40px;
  height: 40px;
  top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3;
}

.deputy-card .deputy-card__info.fuckups {
  right: 10px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.deputy-card .deputy-card__info.fuckups:hover {
  width: 160px;
  background: #ffffff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.deputy-card .deputy-card__info.fuckups:hover .popup-fuckups {
  width: 118px;
}

.deputy-card .deputy-card__info.fuckups:hover .count-fuckups {
  margin-left: 2px;
  width: 42px;
}

.deputy-card .deputy-card__info.fraction {
  left: 10px;
  border: 1px solid rgba(0, 0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

.deputy-card .deputy-card__info.fraction a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.deputy-card .deputy-card__info.fraction a img {
  width: 40px;
}

.deputy-card .deputy-card__info.fuckups .count-fuckups {
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 169.8%;
  text-align: center;
  color: #f77638;
}

.deputy-card .deputy-card__info.fuckups .text-fuckups {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 169.8%;
  /* identical to box height, or 24px */
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  margin: 0 -2px 0 12px;
}

.deputy-card .deputy-card__info.fuckups a {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
}

.deputy-card .deputy-card__info.fuckups:hover a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.deputy-card .deputy-card__info.fuckups .icon {
  width: 19px;
  margin-left: 13px;
}

.deputy-card__left {
  border-top: none;
}

.deputy-card__panel {
  background-color: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.post-type-archive-deputies .link-more {
  margin-bottom: 24px;
}

article.article-card.article-card_dark.fuckup-card:hover {
  -webkit-box-shadow: 0 24px 65px 0 rgba(78, 88, 115, 0.19);
  box-shadow: 0 24px 65px 0 rgba(78, 88, 115, 0.19);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

article.article-card.article-card_dark.fuckup-card {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.single-news .fuckup .hero {
  margin-bottom: 50px;
}

.single-news .fuckup {
  background: #272727;
}

.article-card-container {
  padding: 20px;
}

.popup-donate__details-title {
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 160.1%;
  color: #000000;
}

.popup-donate__details-item p {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 170%;
  color: #000000;
}

.input.e-mail input {
  text-align: center;
  padding-left: 0;
}

.number-picker__button {
  width: 55px;
}

.input__field {
  height: 62px;
  border-radius: 0px;
  font-size: 24px;
  color: #e5e5e5;
}

.input__label {
  text-align: left;
}

.popup-thanks .popup__close {
  margin-bottom: 8px;
}

.popup.popup-donate .input__field,
.popup.popup-donate .number-picker__input {
  color: #4275dc;
  font-weight: bold;
}

@media only screen and (max-width: 1365px) {
  .single-fuckups .wrapper.hero__content {
    width: 964px;
    padding: 0 105px;
  }
  .article-card-container {
    padding: 15px;
  }
  #reports-page .statistics-slider {
    display: none;
  }
  .first-screen__image.first-screen__item {
    width: 50%;
  }
  .filter .select + .select {
    margin-left: 0px;
  }
  .filter .small-search-single {
    width: 430px;
  }
  .filter__panel {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 35px 0px 18px;
  }
  .filter .select {
    width: 45%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .filter .select.region {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .filter .select.fraction {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .filter .select.major-or-fraction {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    padding-top: 25px;
  }
  .filter .select.sortable {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    padding-top: 25px;
  }
  .deputy-card .deputy-card__info.fuckups {
    right: 4px;
  }
  .deputy-card .deputy-card__info {
    top: 4px;
  }
  .deputy-card .deputy-card__info.fraction {
    left: 4px;
  }
  .deputy-card-photo_small {
    width: 40px;
    height: 40px;
  }
  .button-arrow-down:after {
    right: 17px;
    bottom: 13px;
  }
  .link-more {
    padding: 0 40px 0 25px;
    line-height: 44px;
  }
  .footer__logo {
    padding: 25px 15px 29px 0;
  }
  .footer__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__column.socials-header {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .footer__column.link-old-site {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 250px;
    margin: auto;
    padding: 40px 2px;
  }
  .footer .navigation__item {
    padding: 0px 5px;
  }
  .footer__link-old-site {
    margin: auto;
  }
  .post-type-archive-fuckups .article-card__wrapper,
  .single-deputies .article-card__wrapper {
    height: 275px;
  }
  .post-type-archive-fuckups .pagination__container,
  .single-deputies .pagination__container {
    margin-top: 10px;
    margin-bottom: -15px;
  }
  .report-card .report-card-sum {
    text-align: start;
    font-size: 30px;
  }
  .report-card .report-card-sum .label-sum-tittle {
    margin-top: 6px;
  }
  .report-card .report-card-sum .label-sum-count {
    padding-top: 8px;
  }
  .report-card__column_statistics .report-card__item,
  .report-card__column_sum {
    width: 180px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: 135px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }
  .report-card .campaigns .report-card__column_title {
    padding: 0px 40px;
  }
  .page-about .wrapper {
    max-width: 964px;
  }
  .page-about .block-campaigns__item {
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page-about
    .about-fucups
    .about-section__inner
    .about-section__item-forms
    .forms-item {
    width: 260px;
    margin-bottom: 30px;
  }
  .page-about .about-fucups .button_round {
    padding-right: 40px;
  }
  .single-fuckups .fuckup__body.fuckup-content .wrapper {
    width: 964px;
  }
  .single-news .fuckup__body.fuckup-content .wrapper {
    width: 964px;
  }
  .single-deputies .punishment-progress,
  .single-fb-posts .punishment-progress {
    max-width: 1030px;
  }
  .single-deputies .deputy-card__panel,
  .single-fb-posts .deputy-card__panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .single-deputies .articles-list__btn-more-post,
  .single-fb-posts .articles-list__btn-more-post {
    padding-top: 50px;
  }
  .single-deputies .deputy .articles-wrapper,
  .single-fb-posts .deputy .articles-wrapper {
    margin-bottom: 0;
  }
  .single-deputies .statistics-block,
  .single-fb-posts .statistics-block {
    margin-top: 0px;
  }
  .tax-faction .punishment-progress {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1023px) {
  .single-fuckups .wrapper.hero__content {
    padding: 0 70px;
    width: 710px;
  }
  .post-type-archive-fuckups .articles-list.fuckups__list,
  .post-type-archive-news .articles-list.fuckups__list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  .footer .footer__row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .footer .footer__details {
    display: none;
  }
  .footer .footer__column.link-old-site,
  .footer .footer__column.logo,
  .footer .footer__column.link-old-site {
    width: 200px;
  }
  .footer .footer__column.link-old-site {
    margin: 0;
  }
  .footer .footer__column.link-old-site a {
    margin-right: 0;
  }
  .footer .footer__column.menu {
    display: none;
  }
  .footer .footer__row:nth-child(1) {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer .footer__row:nth-child(2) {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .navigation.nav-mobile__navigation .navigation__item {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #ffffff;
  }
  .header.nav-opened {
    z-index: 100001;
  }
  .nav-mobile.nav-mobile_opened {
    z-index: 100000;
  }
  .single-fuckups .fuckup__body.fuckup-content .wrapper,
  .single-news .fuckup__body.fuckup-content .wrapper {
    width: 710px;
  }
  .single-fuckups .fuckup__body.fuckup-content .wrapper,
  .single-news .fuckup__body.fuckup-content .wrapper {
    padding: 70px 70px 30px;
  }
  .single-fuckups .fuckup__body.fuckup-content.fuckup-sharing .wrapper,
  .single-news .fuckup__body.fuckup-content.fuckup-sharing .wrapper {
    padding: 40px 70px;
  }
  .first-screen {
    position: relative;
  }
  .first-screen .wrapper {
    height: 520px;
  }
  .first-screen .first-screen__image.first-screen__item {
    width: 45%;
    bottom: 0;
    left: 0;
    margin-top: -15px;
  }
  .first-screen .first-screen-block {
    width: 450px;
    z-index: 2;
    position: absolute;
    right: 20px;
    top: 90px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .first-screen .first-screen-block__link {
    width: 200px;
    position: absolute;
    right: 12px;
    bottom: 12px;
  }
  .fraction-screen .deputy-card {
    width: 320px;
    padding: 0px 20px 0px;
  }
  .fraction-screen .fraction-no-donate {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .fraction-screen .fraction-no-donate__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  .fraction-screen .fraction-no-donate__item {
    margin-bottom: 20px;
  }
  .fraction-screen .fraction-no-donate {
    margin-top: 45px;
    width: 100%;
  }
  .deputy-card {
    width: 320px;
  }
  .deputy-card .deputy-card__info {
    top: 15px;
  }
  .deputy-card .deputy-card__info.fuckups {
    right: 15px;
  }
  .deputy-card .deputy-card__info.fraction {
    left: 15px;
  }
  .deputy-card__photo-container {
    margin: 0 auto 7px;
    width: 174px;
    height: 174px;
    padding: 12px;
  }
  .deputy-card-photo_small {
    width: 55px;
    height: 55px;
  }
  .filter__panel {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 20px 0px 0px 0px;
  }
  .filter .select.major-or-fraction {
    padding-top: 35px;
  }
  .deputies__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .last-posts__items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .last-posts__slider {
    margin: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .fuckup-screen .fuckup-card {
    width: 45%;
    margin: 60px 10px 10px 10px;
  }
  .fuckup-screen .deputy-card-photo_small {
    width: 45px;
    height: 45px;
  }
  .post-type-archive-fuckups .hero__subtitle {
    width: 600px;
  }
  .post-type-archive-fuckups .deputy-card-photo_small {
    width: 50px;
    height: 50px;
  }
  .fuckup-card {
    width: auto;
    margin: 10px 10px 10px 10px;
  }
  .statistics-block .statistics-block__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .statistics-block .statistics-block-item {
    width: 25%;
    margin-bottom: 50px;
  }
  .statistics-block .statistics-block-item.deputy-item {
    width: 40%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .deputy-card-single-info:nth-child(1) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .report-card__title h3 span {
    font-size: 16px;
  }
  .report-card__title h3 {
    margin-bottom: 10px;
  }
  .report-card-link .button {
    padding: 0 33px;
    font-size: 10px;
  }
  .report-card__column_title {
    padding: 20px 0px 20px 7px;
  }
  .report-card__column_title {
    padding: 20px 0px 20px 40px;
  }
  .report-card__part_right .report-card__item.report-period {
    font-size: 16px;
  }
  .report-card .report-card__part_right .report-card__item {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 30px;
  }
  .punishers .punisher-card {
    width: 100%;
  }
  .punishers .punisher-card__mail {
    margin-bottom: 0;
    width: 40%;
    font-weight: bold;
  }
  .punishers .punisher-card__sum {
    font-weight: bold;
  }
  .rounded-button-link_light {
    width: 190px;
    margin-right: 5px;
  }
  .campaign-hero__part_left {
    margin-bottom: 20px;
    padding: 0 30px;
  }
  .campaign-hero .deputy-card-single-info {
    padding: 0px 0px 0px 75px;
  }
  .campaign-statistics__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .campaign-statistics__value {
    font-size: 35px;
  }
  .campaign-hero__part_right .deputy-card-photo-fb {
    min-width: 90px;
    height: 90px;
  }
  .campaign-fb-slider__items.flickity-enabled {
    height: 225px;
  }
  .page-template-page-about .page-about .wrapper {
    max-width: 735px;
  }
  .page-template-page-about .page-about .campaigns-count .block-campaigns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page-template-page-about .page-about .block-campaigns__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .page-template-page-about .page-about .about-fucups .about-section__inner {
    padding: 0px 105px 85px 105px;
  }
  .page-template-page-about
    .page-about
    .about-section.contacts.bg-white
    .about-section__inner {
    padding: 80px 60px 0px 60px;
  }
  .deputy-card-single-info:nth-child(1) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .deputy .hero .fraction-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 270px;
  }
  .number-picker__button {
    display: block;
    width: 27px;
    height: 60px;
    margin-top: 33px;
    margin-right: 10px;
    margin-left: 10px;
    border: none;
  }
  .popup {
    padding-left: 0px;
  }
  .popup .donate-form {
    padding-left: 0px;
  }
  .popup .popup__close {
    margin-bottom: -30px;
    margin-top: 45px;
    margin-right: 8%;
    width: 52px;
    height: 52px;
  }
  .popup .number-picker__button {
    display: block;
    width: 55px;
    height: 60px;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
  }
  .popup .number-picker__button .svg_number-picker {
    position: relative;
    top: 15px;
    margin-left: 14px;
    width: 27px;
  }
  .popup .button-underscore-donate:after {
    border: solid #fafafa;
    border-width: 0 0px 3px 0px;
    content: "";
    height: 23px;
    right: 18px;
    position: absolute;
    width: 9px;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
  }
  .report-card {
    height: 410px;
  }
  .report-card .report-card-sum {
    text-align: start;
    font-size: 30px;
    width: 40%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 20px;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .report-card .report-card__part_right {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 40px;
  }
  .report-card .report-card__part_right .report-reaction,
  .report-card .report-card__part_right .report-auditory {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .report-card .fuckup-card__members {
    margin-top: 5px;
  }
  .report-card .report-period span {
    padding-right: 25px;
  }
  .report-card .report-card__column_statistics {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 360px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .report-card .report-card__column_statistics .report-card__item {
    width: 50%;
    height: 100px;
    padding-top: 15px;
  }
  .report-card .report-card-link {
    position: relative;
    bottom: 36px;
    left: 24px;
  }
}

@media only screen and (max-width: 950px) {
  .first-screen .first-screen__image.first-screen__item {
    width: 40%;
    position: relative;
    left: 22px;
  }
}

@media only screen and (max-width: 850px) {
  .first-screen .first-screen__image.first-screen__item {
    width: 35%;
  }
  .first-screen .wrapper {
    height: 470px;
  }
  .first-screen .first-screen-block {
    padding-top: 0;
  }
}

@media only screen and (max-width: 780px) {
  .first-screen .first-screen__image.first-screen__item {
    width: 34%;
    left: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .popup .popup__close {
    margin-bottom: 4px;
    margin-top: 48px;
    width: 40px;
    height: 40px;
  }
  .post-type-archive-fb-posts .filter-button {
    border-bottom: 1px solid #4275dc;
    padding: 0 17px 0 0;
  }
  .post-type-archive-fb-posts .filter__panel {
    border-top: none;
  }
  .post-type-archive-fb-posts .filter-button__label {
    color: white;
    padding-left: 5px;
  }
  .post-type-archive-fb-posts .filter-button__arrow {
    border-color: #fff transparent transparent transparent;
  }
  .post-type-archive-fb-posts
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    right: 7px;
  }
  .post-type-archive-fb-posts
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: #ffffff transparent transparent transparent;
  }
  .post-type-archive-fb-posts
    .deputy__campaigns
    .filter
    .select.major-or-fraction {
    padding-top: 10px;
  }
  .post-type-archive-fb-posts .deputy__campaigns .filter .select.fraction {
    border-radius: 0;
    border: none;
  }
  .post-type-archive-fb-posts
    .deputy__campaigns
    .filter
    .select2-container--default
    .select2-selection--single,
  .post-type-archive-fb-posts .deputy__campaigns .filter .small-search {
    border-bottom: 1px solid #4275dc;
  }
  .post-type-archive-fb-posts .deputy__campaigns .filter .small-search__input {
    color: white;
    padding-left: 7px;
  }
  .post-type-archive-fb-posts
    .deputy__campaigns
    .filter
    .select.fraction
    .select__icon {
    margin-top: 2px;
    margin-right: 3px;
    margin-left: -7px;
    width: 24px;
    height: 24px;
  }
  .report-card {
    height: 600px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .report-card .deputy-card-tittle {
    width: auto;
    text-align: left;
    margin-left: -5px;
  }
  .report-card .deputy-card-photo_small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 47px;
    height: 45px;
  }
  .report-card span.deputy-card-photo__image {
    width: 47px;
    height: 45px;
  }
  .report-card .fuckup-card__members {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
  }
  .report-card .deputy-card-photo__image {
    border-radius: 50%;
    background: #4275dc center center;
    background-size: cover;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .report-card .report-card__part_right {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .report-card .report-card__part_right .report-card-sum {
    width: 100%;
    height: 90px;
  }
  .report-card .report-card-link {
    position: static;
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    width: 100%;
  }
  .report-card .report-card-link .button {
    width: 100%;
  }
  .report-card .report-card-link .button__icon {
    margin-right: 6px;
    vertical-align: unset;
    padding-left: 13px;
  }
  .report-card .report-card__column_statistics {
    width: auto;
  }
  .report-card .report-card__column_statistics .report-card__item {
    padding: 9px;
  }
  .single-fuckups .wrapper.hero__content {
    width: calc(100% - 30px);
    padding: 0px;
  }
  .navigation.nav-mobile__navigation .navigation__item {
    font-size: 18px;
    line-height: 22px;
  }
  .header__column .logo.header__logo .icon {
    width: 142%;
    height: auto;
    max-height: 100%;
  }
  .footer__link-old-site {
    padding-top: 10px;
  }
  .footer__logo {
    width: 260px;
    height: 40px;
    padding: 20px 15px 10px 0;
  }
  .footer .footer__row {
    margin-bottom: 60px;
  }
  .footer .footer__column.link-old-site {
    margin: auto;
  }
  .footer .footer__column.link-old-site a {
    margin: auto;
  }
  .footer .footer__column.logo {
    width: 100%;
    margin: auto;
  }
  .footer .footer__column.logo a {
    padding-right: 0;
  }
  .deputy-card-single-info:nth-child(1) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .deputy .hero .fraction-logo img {
    width: 86%;
    margin: auto;
  }
  .button-underscore:after {
    right: 16px;
  }
  .article__sharing {
    margin-left: 4px;
  }
  .first-screen {
    padding: 10px 0 0px;
  }
  .first-screen .wrapper {
    height: 933px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .first-screen .first-screen-block {
    padding-bottom: 200px;
  }
  .first-screen .first-screen__image.first-screen__item {
    width: 100%;
    height: 420px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    top: 54px;
    left: 0;
  }
  .first-screen .first-screen-block {
    width: 100%;
    position: relative;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .first-screen .first-screen-block__description,
  .first-screen .first-screen-block {
    width: 380px;
    margin: auto;
  }
  .first-screen .first-screen-block {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0;
    right: 0;
  }
  .first-screen .first-screen-block__link {
    position: relative;
    right: 0;
    bottom: 0;
  }
  .first-screen .first-screen-block h2 {
    font-size: 17px;
  }
  .first-screen .first-screen-block__block-button {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 25px 0 18px 0;
  }
  .first-screen .first-screen-block__block-button button {
    margin-bottom: 10px;
    width: 100%;
    margin-right: 0;
  }
  .first-screen .first-screen-block__block-button button:nth-child(1) {
    width: 100%;
    margin-right: 0;
  }
  .first-screen
    .first-screen-block__block-button
    button:nth-child(1).button-underscore-first-screen:after {
    border: solid #fafafa;
    border-width: 0px 0px 3px 0px;
    content: "";
    height: 21px;
    right: 130px;
    position: absolute;
    width: 9px;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
  }
  section.deputies-screen,
  section.fraction-screen {
    margin-top: 30px;
  }
  h2.main-section-title {
    font-size: 30px;
  }
  .fraction-screen .deputy-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 280px;
    height: 300px;
  }
  .fraction-screen .deputy-card__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .fraction-screen .deputy-card {
    margin-bottom: 50px;
  }
  .fraction-screen .deputy-card__button {
    bottom: -19px;
  }
  .deputies-screen .wrapper,
  .deputies__wrapper .wrapper {
    width: 100%;
    padding: 0 10px;
  }
  .deputies-screen .deputy-card,
  .deputies__wrapper .deputy-card {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .deputies-screen .deputy-card__main-info,
  .deputies__wrapper .deputy-card__main-info {
    text-align: center;
    width: 100%;
  }
  .deputies-screen .deputy-card__panel,
  .deputies__wrapper .deputy-card__panel {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .deputies-screen .deputy-card__left,
  .deputies__wrapper .deputy-card__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .filter .small-search-element.before,
  .filter .small-search-element.after {
    display: none;
  }
  .filter .small-search-single {
    width: 100%;
    padding-left: 35px;
  }
  .filter .select {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .filter .select.major-or-fraction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-left: 35px;
  }
  .filter .block-sortable span {
    width: 100%;
    margin-bottom: 10px;
    text-align: start;
  }
  .filter .block-sortable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .filter .select.sortable {
    padding-top: 0px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-left: 35px;
  }
  .fuckup-screen {
    margin-bottom: 50px;
    margin-top: 85px;
  }
  .fuckup-screen .fuckup-card {
    width: 100%;
    max-width: 320px;
    margin: 60px 10px 10px 10px;
  }
  .fuckup-screen .deputy-card-photo_small {
    width: 40px;
    height: 40px;
  }
  .fuckup-screen__block-link-more {
    margin-top: 55px;
  }
  .statistics-block {
    padding: 85px 0 85px;
  }
  .statistics-block .statistics-block-item {
    height: 160px;
    width: auto;
    min-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .statistics-block .statistics-block__title {
    margin: 0 auto 60px;
  }
  .statistics-block .footer__row {
    margin-bottom: 55px;
  }
  .statistics-block .statistics-block-item__label {
    min-height: 35px;
  }
  .post-type-archive-fuckups .hero__subtitle {
    width: 270px;
  }
  .post-type-archive-fuckups .deputy-card-photo_small {
    width: 40px;
    height: 40px;
  }
  .post-type-archive-fuckups .pagination__container > *:last-child {
    border-left: none;
  }
  .article-card__date {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .pagination {
    margin: 23px auto 40px;
  }
  .articles-list .fuckup-card {
    width: 92%;
  }
  .post-type-archive .hero__subtitle {
    width: 250px;
    padding-top: 10px;
  }
  .report-card {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .report-card .report-card__part_left {
    min-width: 100%;
    max-width: 100%;
    padding-bottom: 0;
  }
  .campaigns .report-card__column_title {
    padding: 0;
  }
  .report-card__part_right .report-card__item {
    padding: 0px;
  }
  .report-card__part_right .report-card__item {
    font-size: 18px;
  }
  .page-template-page-about .page-about .wrapper {
    max-width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
  .page-template-page-about .page-about .hero__title_about {
    font-size: 26px;
  }
  .page-template-page-about .page-about .about-section .about-section__inner {
    padding: 18px;
  }
  .page-template-page-about .page-about .about-section h2 {
    font-size: 25px;
  }
  .page-template-page-about .page-about .about-section {
    font-size: 15px;
  }
  .page-template-page-about .page-about .block-how-it-works {
    padding: 10px;
  }
  .page-template-page-about
    .page-about
    .about-section.how-it-works
    .about-section__inner {
    padding: 10px 0px 0px 0px;
  }
  .page-template-page-about .page-about .about-section.how-it-works h2 {
    padding: 10px;
  }
  .page-template-page-about
    .page-about
    .about-section.how-it-works
    .block-how-it-works__item {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }
  .page-template-page-about
    .page-about
    .campaigns-count.about-section
    .about-section__inner
    h2 {
    padding: 0;
  }
  .page-template-page-about .page-about .button-arrow-down:after {
    height: 28px;
  }
  .page-template-page-about
    .page-about
    .campaigns-count
    .block-campaigns__item
    .block-campaigns__item-title {
    padding: 10px;
  }
  .page-template-page-about .page-about .about-fucups .button_round {
    width: 250px;
    margin-left: -20px;
  }
  .campaigns-count .block-campaigns__item.faction,
  .campaigns-count .block-campaigns__item.deputy {
    padding: 10px;
  }
  .campaigns-count .block-campaigns__item.faction .block-campaigns__item-count,
  .campaigns-count .block-campaigns__item .block-campaigns__item-count {
    font-size: 50px;
  }
  .about-section.about-fucups .about-section__item-quotes {
    font-size: 15px;
    padding-left: 55px;
  }
  .about-section.about-fucups h2:nth-child(1) {
    margin-top: 0px;
  }
  .page-about .about-section.contacts .about-section__item h2 {
    margin-bottom: 40px;
  }
  .page-about .about-section.contacts.bg-white .about-section__inner {
    padding: 15px 15px 0px 15px;
  }
  .page-about
    .about-section.contacts
    .about-section__item
    .block-contacts__adress {
    padding-left: 0px;
    margin-bottom: 15px;
  }
  .page-about
    .about-section.contacts
    .about-section__item
    .block-contacts__email,
  .page-about
    .about-section.contacts
    .about-section.contacts
    .about-section__item
    .block-contacts__adress {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .page-about
    .about-section.contacts
    .about-section__item
    .block-contacts
    .block-contacts__email {
    border-right: none;
  }
  .page-about .about-section.contacts .button-arrow-down:after {
    right: 17px;
    bottom: 10px;
  }
  .page-about
    .about-section.contacts
    .about-fucups
    .about-section__item-quotes
    .quotes-elem {
    position: absolute;
    top: 5px;
    left: -50px;
  }
  .page-about
    .about-section.about-fucups
    .about-section__item-quotes
    .quotes-elem {
    position: absolute;
    top: 5px;
    left: 0px;
  }
  .page-about .about-section.about-fucups .button_round {
    width: 250px;
    font-size: 14px;
    text-align: center;
    margin-left: 0;
    margin-top: 56px;
  }
  .page-about .about-section.about-fucups .about-section__item-offer {
    width: 100%;
  }
  .page-about
    .about-section.about-fucups
    .about-section__inner
    .about-section__item-forms
    .forms-item {
    width: 300px;
    margin: auto;
    margin-bottom: 30px;
  }
  .button-arrow-down:after {
    right: 17px;
    bottom: 9px;
    height: 16px;
  }
  .single-fuckups .deputy-card-photo_small,
  .single-news .deputy-card-photo_small {
    width: 45px;
    height: 45px;
  }
  .single-fuckups .hero__subtitle,
  .single-news .hero__subtitle {
    width: 100%;
  }
  .single-fuckups .fuckup__body.fuckup-content .wrapper,
  .single-news .fuckup__body.fuckup-content .wrapper {
    width: calc(100% - 30px);
  }
  .single-fuckups .fuckup__body.fuckup-content .wrapper,
  .single-news .fuckup__body.fuckup-content .wrapper {
    padding: 20px;
  }
  .custom-content {
    font-size: 16px;
  }
  .single-fuckups .fuckup__body.fuckup-content.fuckup-sharing .wrapper,
  .single-news .fuckup__body.fuckup-content.fuckup-sharing .wrapper {
    padding: 40px 15px;
  }
  .single-fuckups
    .fuckup__body.fuckup-content.fuckup-sharing
    .fuckup__sharing
    .sharing-title,
  .single-news
    .fuckup__body.fuckup-content.fuckup-sharing
    .fuckup__sharing
    .sharing-title {
    font-size: 15px;
    padding-right: 0px;
  }
  .sharing-block {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .single-fuckups
    .fuckup__body.fuckup-content.fuckup-sharing
    .fuckup__sharing
    .sharing-block
    a,
  .single-news
    .fuckup__body.fuckup-content.fuckup-sharing
    .fuckup__sharing
    .sharing-block
    a {
    padding-left: 15px;
  }
  .single-deputies .wrapper {
    width: calc(100% - 10px);
  }
  .deputy-card-photo_small {
    width: 43px;
    height: 43px;
  }
  .subscribe-fuckups form {
    width: 320px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .subscribe-fuckups form input {
    padding: 10px 0 10px 0;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .subscribe-fuckups form button {
    width: 100%;
  }
  .deputy-card-single-info {
    width: auto;
    margin-top: 20px;
  }
  .deputy-card-single-info__statistics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 300px;
    margin: auto;
  }
  .deputy-card-single-info__statistics .rounded-button-link_light {
    width: 100%;
    margin-bottom: 10px;
  }
  .deputy-card-single-info__list tr td:last-child {
    width: 170px;
    text-align: right;
  }
  .deputy-card-single-info__list tr td {
    padding-top: 20px;
    text-align: left;
  }
  .deputy-card-single-info__list {
    max-width: 300px;
    margin: 20px auto 0 auto;
    text-align: right;
  }
  .deputy-card-single-info .article__sharing {
    margin: auto;
  }
  .deputy .deputy-card-single {
    margin-top: 20px;
  }
  .article__sharing-title,
  .fuckup__sharing.sharing-title {
    display: none;
  }
  .punishment-progress__left-sum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .punishment-progress .progressbar-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .required_funds,
  .collected_funds {
    display: none;
  }
  .progressbar {
    width: 90%;
  }
  .subscribe-fuckups form button:after {
    height: 20px;
    right: 85px;
  }
  .punishers .search-results__title {
    font-size: 26px;
  }
  .punisher-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .punisher-card__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
  }
  .punisher-card__column .report-card__data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .punisher-card__column .punisher-card__mail .report-card__data {
    font-weight: bold;
  }
  .punisher-card__column .punisher-card__date .report-card__data {
    font-size: 16px;
    line-height: 160.1%;
    color: #1d1d1b;
  }
  .punisher-card__column .punisher-card__sum .report-card__data {
    color: #4275dc;
  }
  .punishers .punisher-card__mail {
    width: 100%;
  }
  .punishers .punisher-card__mail .report-card__data {
    width: 100%;
  }
  .report-card__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .statistics-block .statistics-block-item.deputy-item {
    width: 100%;
  }
  .deputy-card-single-info:nth-child(1) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .campaign-hero .deputy-card-single-info {
    padding: 0;
  }
  .campaign-hero__part_right .deputy-card-photo-fb {
    min-width: 110px;
    height: 110px;
  }
  .single-fuckups
    .fuckup__body.fuckup-content.fuckup-sharing
    .fuckup__sharing
    .sharing-block
    a,
  .single-news
    .fuckup__body.fuckup-content.fuckup-sharing
    .fuckup__sharing
    .sharing-block
    a {
    padding-right: 15px;
    padding-left: 15px;
  }
  .report-card {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 500px;
    margin: auto;
  }
}

.deputy-card-photo.deputy-card-photo_small.mobile {
  display: none;
}

@media only screen and (max-width: 550px) {
  .report-card {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 280px;
  }
  .single-fuckups .fuckup-card__members {
    margin: auto;
    width: 230px;
    margin-top: 27px;
    margin-bottom: 30px;
  }
  .single-fuckups .deputy-card-photo.deputy-card-photo_small.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  a.deputy-card-photo.deputy-card-photo_small {
    margin: 2px;
    width: 36px;
    height: 36px;
  }
  .subscribe-fuckups form {
    width: 260px;
  }
  .subscribe-fuckups form button:after {
    right: 53px;
  }
}

@media only screen and (max-width: 420px) {
  .input
    .summ-btns
    button.button.button_round.button-gradient.button-gradient_orange {
    width: 100%;
    font-size: 18px;
  }
  .number-picker__button:hover {
    background: transparent;
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .number-picker__button:hover .svg_number-picker path {
    stroke: #4275dc;
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .header.nav-opened .header__row {
    width: 90%;
  }
  #wpadminbar {
    position: fixed;
  }
  .first-screen .wrapper {
    height: 879px;
  }
  .first-screen .first-screen-block__description,
  .first-screen .first-screen-block {
    width: 280px;
    margin: auto;
    margin-top: 0;
  }
  .first-screen .first-screen__image.first-screen__item {
    height: 315px;
  }
  .first-screen
    .first-screen-block__block-button
    button:nth-child(1).button-underscore-first-screen:after {
    right: 80px;
  }
  .first-screen .first-screen-block__block-button button {
    padding: 0px 28px;
  }
  .filter .select.major-or-fraction,
  .filter .select.sortable {
    padding-left: 0;
  }
}

.post-type-archive-deputies h2 {
  margin-bottom: 50px;
}

.single-fuckups section.fraction-screen {
  margin-bottom: 50px;
  margin-top: 60px;
}

.first-screen__image.first-screen__item {
  background: none !important;
  padding-top: 40px;
  margin-top: 0px;
  padding-bottom: 40px;
  margin-left: 60px;
}

.intro-statistic {
  padding-left: 70px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-statistic__item {
  margin-bottom: 36px;
}

.intro-statistic__label {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
}

.intro-statistic__value {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 900;
  font-size: 50px;
  line-height: 160%;
  letter-spacing: 0.1em;
}

.first-screen .first-screen-block h2 span {
  width: 100%;
  display: block;
}

.first-screen .first-screen-block {
  margin-left: 35px;
}

/* 1024 - 1365 */
@media (max-width: 1365px) {
  /*  .first-screen .first-screen-block {
        margin-left: 35px;
    }*/
}

/* 768 - 1024 */
@media (max-width: 1023px) {
  .first-screen
    .first-screen-block__block-button
    button:nth-child(1).button-underscore-first-screen:after {
    height: 0px;
    right: 247px;
    width: 9px;
    top: 30px;
  }
  .first-screen .wrapper {
    height: 935px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 750px;
  }
  .first-screen-block.first-screen__item {
    padding-top: 40px;
    margin-bottom: 30px;
  }
  .first-screen .first-screen__image.first-screen__item {
    width: auto;
    margin: auto;
    left: 0;
    padding-top: 0;
    margin-bottom: 40px;
    padding-bottom: 0;
  }
  .first-screen-block.first-screen__item h2 {
    margin-top: 0;
  }
  .first-screen .first-screen-block {
    width: auto;
    right: 0;
    top: 0;
    position: relative;
    margin-right: 35px;
  }
  .first-screen .first-screen-block__description {
    width: auto;
  }
  .first-screen .first-screen-block__block-button {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .first-screen .first-screen-block__block-button {
    padding-bottom: 0;
  }
  .first-screen .first-screen-block__link {
    width: auto;
    position: relative;
    right: 0;
    bottom: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .first-screen .first-screen-block__block-button button,
  button.button.button-gradient.button-gradient_orange.button-underscore-first-screen {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .intro-statistic {
    padding-left: 0;
    border-left: unset;
  }
  .intro-statistic__value {
    font-size: 40px;
  }
}

/* 0-320-768 */
@media (max-width: 767px) {
  .first-screen
    .first-screen-block__block-button
    button:nth-child(1).button-underscore-first-screen:after {
    right: 57px;
  }
  .first-screen .wrapper {
    max-width: 320px;
  }
  .first-screen .first-screen-block {
    margin-right: 20px;
    margin-left: 20px;
  }
  .intro-statistic__value {
    font-size: 30px;
  }
  .first-screen .first-screen__image.first-screen__item {
    margin: inherit;
    padding: 0;
    top: 0;
  }
  .single-fuckups
    .fuckup__body.fuckup-content.fuckup-sharing
    .fuckup__sharing
    .sharing-block
    a,
  .single-news
    .fuckup__body.fuckup-content.fuckup-sharing
    .fuckup__sharing
    .sharing-block
    a {
    padding-right: 4px;
    padding-left: 4px;
  }
  .single-fuckups .sharing-title {
    width: 120px;
  }
}
/*# sourceMappingURL=style.css.map */

@media (max-width: 1023px) {
  .first-screen-block.first-screen__item {
    padding-top: 70px;
  }
  .first-screen .wrapper {
    height: 985px;
  }
}
