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 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent 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/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 when focused and also mouse hovered in all browsers.
 */
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;
}
/**
 * Address 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
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
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 {
  -moz-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.
 */
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.
 */
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.
 */
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;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  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
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * 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.
 */
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;
}
/*!
 * Bootstrap v3.3.2 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=3af3aecc99d70558e6a3)
 * Config saved to config.json and https://gist.github.com/3af3aecc99d70558e6a3
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0;
  *zoom: 1;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}
/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(../img/bx_loader.gif) center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}
.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
}
.bx-wrapper .bx-next {
  right: 10px;
}
.bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}
.bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 1;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}
/*! jQuery UI - v1.11.4 - 2015-04-19
* http://jqueryui.com
* Includes: core.css, datepicker.css, menu.css, selectmenu.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  min-height: 0;
  /* support: IE7 */
}
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  /* support: IE8 */
}
.ui-front {
  z-index: 100;
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}
.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}
.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}
/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: none;
}
.ui-menu .ui-menu {
  position: absolute;
}
.ui-menu .ui-menu-item {
  position: relative;
  margin: 0;
  padding: 3px 1em 3px .4em;
  cursor: pointer;
  min-height: 0;
  /* support: IE7 */
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}
/* icon support */
.ui-menu-icons {
  position: relative;
}
.ui-menu-icons .ui-menu-item {
  padding-left: 2em;
}
/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0;
}
/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}
.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  /* Support: IE7 */
  overflow-x: hidden;
  padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}
.ui-selectmenu-open {
  display: block;
}
.ui-selectmenu-button {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
  right: 0.5em;
  left: auto;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
  text-align: left;
  padding: 0.4em 2.1em 0.4em 1em;
  display: block;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.1em;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1em;
}
.ui-widget-content {
  border: 1px solid #dddddd;
  color: #333333;
}
.ui-widget-content a {
  color: #333333;
}
.ui-widget-header {
  border: 1px solid #e78f08;
  color: #ffffff;
  font-weight: bold;
}
.ui-widget-header a {
  color: #ffffff;
}
/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #cccccc;
  font-weight: bold;
  color: #1c94c4;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #1c94c4;
  text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #fbcb09;
  font-weight: bold;
  color: #c77405;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
  color: #c77405;
  text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #fbd850;
  font-weight: bold;
  color: #eb8f00;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #eb8f00;
  text-decoration: none;
}
/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fed22f;
  color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  color: #ffffff;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #ffffff;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #ffffff;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: alpha(opacity=70);
  /* support: IE8 */
  font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: alpha(opacity=35);
  /* support: IE8 */
  background-image: none;
}
.ui-state-disabled .ui-icon {
  filter: alpha(opacity=35);
  /* support: IE8 - See #6059 */
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}
/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}
.ui-icon-carat-1-n {
  background-position: 0 0;
}
.ui-icon-carat-1-ne {
  background-position: -16px 0;
}
.ui-icon-carat-1-e {
  background-position: -32px 0;
}
.ui-icon-carat-1-se {
  background-position: -48px 0;
}
.ui-icon-carat-1-s {
  background-position: -64px 0;
}
.ui-icon-carat-1-sw {
  background-position: -80px 0;
}
.ui-icon-carat-1-w {
  background-position: -96px 0;
}
.ui-icon-carat-1-nw {
  background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.ui-icon-extlink {
  background-position: -32px -80px;
}
.ui-icon-newwin {
  background-position: -48px -80px;
}
.ui-icon-refresh {
  background-position: -64px -80px;
}
.ui-icon-shuffle {
  background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.ui-icon-folder-open {
  background-position: -16px -96px;
}
.ui-icon-document {
  background-position: -32px -96px;
}
.ui-icon-document-b {
  background-position: -48px -96px;
}
.ui-icon-note {
  background-position: -64px -96px;
}
.ui-icon-mail-closed {
  background-position: -80px -96px;
}
.ui-icon-mail-open {
  background-position: -96px -96px;
}
.ui-icon-suitcase {
  background-position: -112px -96px;
}
.ui-icon-comment {
  background-position: -128px -96px;
}
.ui-icon-person {
  background-position: -144px -96px;
}
.ui-icon-print {
  background-position: -160px -96px;
}
.ui-icon-trash {
  background-position: -176px -96px;
}
.ui-icon-locked {
  background-position: -192px -96px;
}
.ui-icon-unlocked {
  background-position: -208px -96px;
}
.ui-icon-bookmark {
  background-position: -224px -96px;
}
.ui-icon-tag {
  background-position: -240px -96px;
}
.ui-icon-home {
  background-position: 0 -112px;
}
.ui-icon-flag {
  background-position: -16px -112px;
}
.ui-icon-calendar {
  background-position: -32px -112px;
}
.ui-icon-cart {
  background-position: -48px -112px;
}
.ui-icon-pencil {
  background-position: -64px -112px;
}
.ui-icon-clock {
  background-position: -80px -112px;
}
.ui-icon-disk {
  background-position: -96px -112px;
}
.ui-icon-calculator {
  background-position: -112px -112px;
}
.ui-icon-zoomin {
  background-position: -128px -112px;
}
.ui-icon-zoomout {
  background-position: -144px -112px;
}
.ui-icon-search {
  background-position: -160px -112px;
}
.ui-icon-wrench {
  background-position: -176px -112px;
}
.ui-icon-gear {
  background-position: -192px -112px;
}
.ui-icon-heart {
  background-position: -208px -112px;
}
.ui-icon-star {
  background-position: -224px -112px;
}
.ui-icon-link {
  background-position: -240px -112px;
}
.ui-icon-cancel {
  background-position: 0 -128px;
}
.ui-icon-plus {
  background-position: -16px -128px;
}
.ui-icon-plusthick {
  background-position: -32px -128px;
}
.ui-icon-minus {
  background-position: -48px -128px;
}
.ui-icon-minusthick {
  background-position: -64px -128px;
}
.ui-icon-close {
  background-position: -80px -128px;
}
.ui-icon-closethick {
  background-position: -96px -128px;
}
.ui-icon-key {
  background-position: -112px -128px;
}
.ui-icon-lightbulb {
  background-position: -128px -128px;
}
.ui-icon-scissors {
  background-position: -144px -128px;
}
.ui-icon-clipboard {
  background-position: -160px -128px;
}
.ui-icon-copy {
  background-position: -176px -128px;
}
.ui-icon-contact {
  background-position: -192px -128px;
}
.ui-icon-image {
  background-position: -208px -128px;
}
.ui-icon-video {
  background-position: -224px -128px;
}
.ui-icon-script {
  background-position: -240px -128px;
}
.ui-icon-alert {
  background-position: 0 -144px;
}
.ui-icon-info {
  background-position: -16px -144px;
}
.ui-icon-notice {
  background-position: -32px -144px;
}
.ui-icon-help {
  background-position: -48px -144px;
}
.ui-icon-check {
  background-position: -64px -144px;
}
.ui-icon-bullet {
  background-position: -80px -144px;
}
.ui-icon-radio-on {
  background-position: -96px -144px;
}
.ui-icon-radio-off {
  background-position: -112px -144px;
}
.ui-icon-pin-w {
  background-position: -128px -144px;
}
.ui-icon-pin-s {
  background-position: -144px -144px;
}
.ui-icon-play {
  background-position: 0 -160px;
}
.ui-icon-pause {
  background-position: -16px -160px;
}
.ui-icon-seek-next {
  background-position: -32px -160px;
}
.ui-icon-seek-prev {
  background-position: -48px -160px;
}
.ui-icon-seek-end {
  background-position: -64px -160px;
}
.ui-icon-seek-start {
  background-position: -80px -160px;
}
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}
.ui-icon-stop {
  background-position: -96px -160px;
}
.ui-icon-eject {
  background-position: -112px -160px;
}
.ui-icon-volume-off {
  background-position: -128px -160px;
}
.ui-icon-volume-on {
  background-position: -144px -160px;
}
.ui-icon-power {
  background-position: 0 -176px;
}
.ui-icon-signal-diag {
  background-position: -16px -176px;
}
.ui-icon-signal {
  background-position: -32px -176px;
}
.ui-icon-battery-0 {
  background-position: -48px -176px;
}
.ui-icon-battery-1 {
  background-position: -64px -176px;
}
.ui-icon-battery-2 {
  background-position: -80px -176px;
}
.ui-icon-battery-3 {
  background-position: -96px -176px;
}
.ui-icon-circle-plus {
  background-position: 0 -192px;
}
.ui-icon-circle-minus {
  background-position: -16px -192px;
}
.ui-icon-circle-close {
  background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.ui-icon-circle-check {
  background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 4px;
}
/* Overlays */
.ui-widget-overlay {
  opacity: .5;
  filter: alpha(opacity=50);
  /* support: IE8 */
}
.ui-widget-shadow {
  margin: -5px 0 0 -5px;
  padding: 5px;
  opacity: .2;
  filter: alpha(opacity=20);
  /* support: IE8 */
  border-radius: 5px;
}
.blue-buttons {
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  color: #00a9e0;
  border: 1px solid #7ad1ed;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  padding: 6px 12px 7px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.blue-buttons:hover {
  color: #004b87;
  background: #a0dbef;
  border-color: #a0dbef;
  text-decoration: none;
}
.blue-buttons:active,
.blue-buttons-selected {
  color: #ffffff;
  background: #00a9e0;
  border-color: #00a9e0;
}
.blue-buttons.active {
  color: #ffffff;
  background: #00a9e0;
  border-color: #00a9e0;
}
.blue-buttons_inline {
  display: inline-table !important;
}
.blue-buttons__submit {
  color: #ffffff;
  background: #00a9e0;
  border-color: #00a9e0;
}
.jq-select-wrap_blue {
  display: block;
  vertical-align: middle;
  height: 33px;
  margin-bottom: 12px;
}
.jq-select-wrap_blue .jq-select {
  display: inline-block;
  width: 100%;
}
.jq-select-wrap_blue .ui-selectmenu-button {
  border: 1px solid #7ad1ed;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 33px;
}
.jq-select-wrap_blue .ui-selectmenu-button:focus {
  outline: none;
}
.jq-select-wrap_blue span.ui-selectmenu-text {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #00a9e0;
  line-height: 31px;
  padding: 0 30px 0 10px;
}
.jq-select-wrap_blue span.ui-selectmenu-text:hover {
  outline: none;
}
.jq-select-wrap_blue span.ui-icon {
  width: 17px;
  height: 10px;
  background: url("/assets/img/blue-buttons__select_arrow.png") 0 0 no-repeat;
  top: 50%;
  right: 5px;
  margin-top: -5px;
}
.jq-select-wrap_blue .ui-corner-top {
  background: #ffffff;
}
.jq-select-wrap_blue .ui-corner-top span.ui-icon {
  background-image: url(../img/blue-buttons__select_arrow_open.png);
}
.ui-selectmenu-open {
  background: #ffffff;
}
.ui-selectmenu-open .ui-menu {
  border: 1px solid #7ad1ed;
  border-top: 0;
}
.ui-selectmenu-open .ui-menu-item {
  border: 0;
  margin: 0;
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  color: #a2a2a2;
}
.ui-selectmenu-open .ui-state-focus {
  font-weight: normal;
  background: #eef3f4;
}
@media (min-width: 1020px) {
  .jq-select-wrap_blue {
    display: inline-block;
    margin-bottom: 0;
  }
  .jq-select-wrap_blue .jq-select {
    width: 290px;
  }
  .jq-select-wrap_blue__map-filter .jq-select {
    width: 260px;
  }
}
.jq-select-wrap_yellow {
  display: block;
  vertical-align: middle;
  height: 33px;
  margin-bottom: 12px;
}
.jq-select-wrap_yellow .jq-select {
  display: inline-block;
  width: 100%;
}
.jq-select-wrap_yellow .ui-selectmenu-button {
  border: 1px solid #daaa00;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 33px;
}
.jq-select-wrap_yellow .ui-selectmenu-button:focus {
  outline: none;
}
.jq-select-wrap_yellow span.ui-selectmenu-text {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 31px;
  padding: 0 30px 0 10px;
}
.jq-select-wrap_yellow span.ui-selectmenu-text:hover {
  outline: none;
}
.jq-select-wrap_yellow span.ui-icon {
  width: 17px;
  height: 10px;
  background: url("/assets/img/yellow-select_arr.png") 0 0 no-repeat;
  top: 50%;
  right: 5px;
  margin-top: -5px;
}
.jq-select-wrap_yellow .ui-corner-top {
  background: #ffffff;
}
.jq-select-wrap_yellow .ui-corner-top span.ui-icon {
  background-image: url(../img/yellow-select_arr_open.png);
}
.jq-select-wrap_yellow .ui-corner-top span.ui-selectmenu-text {
  color: #000000;
}
@media (min-width: 1020px) {
  .jq-select-wrap_yellow {
    display: inline-block;
    margin-bottom: 0;
  }
  .jq-select-wrap_yellow .jq-select {
    width: 200px;
  }
  .jq-select-wrap_yellow__w230 .jq-select {
    width: 230px;
  }
}
.map_filter__submit {
  vertical-align: top !important;
}
.blue-buttons__select {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  height: 31px;
  line-height: 31px;
}
.blue-buttons__select .blue-buttons__select_arrow {
  position: absolute;
  background: 50% 50% no-repeat;
  background-image: url("/assets/img/blue-buttons__select_arrow.png");
  background-color: #fff;
  width: 30px;
  height: 100%;
  top: 0;
  right: 0;
}
.blue-buttons__select select {
  border: 0;
  color: #00a9e0;
  background: transparent;
  width: 100%;
  -ms-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
}
.blue-buttons__select select:focus {
  outline: none;
}
.yellow-buttons {
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  color: #ffffff;
  border: 1px solid #daaa00;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  padding: 6px 12px 7px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.yellow-buttons:hover {
  color: #004b87;
  background: #a0dbef;
  border-color: #a0dbef;
  text-decoration: none;
}
.yellow-buttons-selected, .yellow-buttons:active {
  color: #000000;
  background: #daaa00;
  border-color: #daaa00;
}
.yellow-buttons:focus {
  color: #ffffff;
  outline: none;
}
.yellow-buttons.disabled {
  color: #cccccc;
  border: 1px solid #cccccc;
  cursor: inherit;
  
}
.yellow-buttons.disabled:hover {
  background: none;
  color: #cccccc;
}


/* SPECIALISTS EVENTS */
/* specialist buttons block  */

.spec-events-filters {
  margin-bottom: 20px;
}

.spec-events-filters .header-menu_footer_item {
  display: inline-block;
  margin: 0 5px 9px;
}

.spec-events-pretext {
    margin: 0 10px;
}

/* specialist events */
    .spec-event {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    @media (min-width: 1020px) {
        .spec-event {
            flex-direction: row;
            margin-bottom: 30px;
        }
    }

    .spec-event .e-content {
        flex-grow: 1;

        display: flex;
        flex-direction: column;
        align-content: space-between;
        
        padding-left: 20px;
    }

    .spec-event .e-content > div {
        width: calc(100% - 20px);
    }

    .spec-event .e-image {
        flex-grow: 0;
        flex-shrink: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    @media (min-width: 1020px) {
      .spec-event .e-image {
        flex-basis: 188px;
        max-width: 188px;
      }
    }

    .spec-event .e-image img {
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    .spec-event .e-content .e-title {
        font-family: PT Serif;
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 31px;
    }

    .spec-event .e-content .e-time {
        font-family: PT Serif;
        font-style: normal;
        font-weight: normal;
        font-size: 18px;
        line-height: 23px;
    }

    .spec-event .e-content .e-text {
        font-family: PT Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 18px;
        line-height: 23px;
    }

    .spec-event .e-content .e-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
    }

    @media (min-width: 1020px) {
        .spec-event .e-content .e-text {
            flex-grow: 1;

            display: flex;
            justify-content: center;
            flex-direction: column;
        }
        .spec-event .e-content .e-buttons {
            justify-content: start;
        }
    }

    .spec-event .inline-button {
      margin-right: 5px;
      margin-bottom: 5px;
      width: 152px;
      height: 33px;
      text-align: center;
      cursor: pointer;
      display: block;
      border-radius: 3px;
      background: #eef3f4;
      padding: 0px 5px;
    }
    .spec-event .inline-button a {
        font-family: 'PT Sans', sans-serif;
        font-size: 14px;
        font-weight: bold;
        font-style: normal;
        color: #333333;
        line-height: 33px;
        text-decoration: none;
        display: block;
    }
    .spec-event .inline-button:hover a {
        color: #23527c;
    }

/* SPECIALISTS EVENTS END */



/* loading dots by Veiko https://codepen.io/vkjgr/pen/gbPaVx */

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

.yellow-buttons.disabled:after {
  content: '.';
  -webkit-animation: dots 1s steps(5, end) infinite;
          animation: dots 1s steps(5, end) infinite;
  margin-right: 3px;
}

@-webkit-keyframes dots {
  0%, 20% {
    color: rgba(0,0,0,0);
    text-shadow:
      .25em 0 0 rgba(0,0,0,0),
      .5em 0 0 rgba(0,0,0,0);
    }
  40% {
    color: rgba(204,204,204,1);
    text-shadow:
      .25em 0 0 rgba(0,0,0,0),
      .5em 0 0 rgba(0,0,0,0);
    }
  60% {
    text-shadow:
      .25em 0 0 rgba(204,204,204,1),
      .5em 0 0 rgba(0,0,0,0);
    }
  80%, 100% {
    text-shadow:
      .25em 0 0 rgba(204,204,204,1),
      .5em 0 0 rgba(204,204,204,1),
    }
}

@keyframes dots {
  0%, 20% {
    color: rgba(0,0,0,0);
    text-shadow:
      .25em 0 0 rgba(0,0,0,0),
      .5em 0 0 rgba(0,0,0,0);
    }
  40% {
    color: rgba(204,204,204,1);
    text-shadow:
      .25em 0 0 rgba(0,0,0,0),
      .5em 0 0 rgba(0,0,0,0);
    }
  60% {
    text-shadow:
      .25em 0 0 rgba(204,204,204,1),
      .5em 0 0 rgba(0,0,0,0);
    }
  80%, 100% {
    text-shadow:
      .25em 0 0 rgba(204,204,204,1),
      .5em 0 0 rgba(204,204,204,1);
    }
}

.yellow-select {
  position: relative;
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  width: 100%;
  border: 1px solid #daaa00;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: left;
  overflow: hidden;
  vertical-align: middle;
}
.yellow-select .yellow-select_arrow {
  content: '';
  position: absolute;
  background: url("/assets/img/yellow-select_arr.png") 0 0 no-repeat;
  width: 17px;
  height: 10px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.yellow-select select {
  display: inline-block;
  background: transparent;
  font-size: 18px;
  line-height: 31px;
  height: 31px;
  border: 0;
  color: #ffffff;
  width: 100%;
  margin-left: 25px;
}
.yellow-select select option {
  color: #000;
}
.yellow-select select:focus {
  outline: none;
}
@media (min-width: 1020px) {
  .yellow-select {
    width: 200px;
  }
  .yellow-select select {
    width: 230px;
    margin-left: 0;
  }
  .yellow-select__w230 {
    width: 230px;
  }
  .yellow-select__w230 select {
    width: 260px;
  }
}
.other-buttons {
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  background: #eef3f4;
  color: #333333;
  border: 1px solid #eef3f4;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  padding: 6px 12px 7px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.other-buttons:hover {
  color: #004b87;
  background: #a0dbef;
  border-color: #a0dbef;
  text-decoration: none;
}
.other-buttons:active {
  color: #ffffff;
  background: #00a9e0;
  border-color: #00a9e0;
}
.count-button {
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  color: #ffffff;
  background: #daaa00;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 6px 8px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 100%;
  text-align: left;
}
.count-button:hover {
  background: #b78f03;
}
@media (min-width: 1020px) {
  .count-button {
    width: auto;
    text-align: center;
  }
}
.count-button__disable .count-button_count {
  background: #edd379;
}
.count-button__disable:hover {
  background: #daaa00;
}
.count-button_text {
  display: inline-block;
}
.count-button_count {
  float: right;
  display: inline-block;
  width: 27px;
  height: 21px;
  background: #ffffff;
  color: #daaa00;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  font-weight: normal;
  margin-left: 7px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
@media (min-width: 1020px) {
  .count-button_count {
    float: none;
  }
}
.link-more {
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  color: #333333;
  height: 33px;
  line-height: 33px;
  padding: 0 12px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #eef3f4;
}
.link-more:hover {
  text-decoration: none;
}
.link-more-wrap {
  text-align: center;
}
.link-more-wrap__m30 {
  margin-bottom: 30px;
}
.link-more-wrap_book {
  margin-bottom: 20px !important;
  text-align: center !important;
  cursor: pointer;
  display: block !important;
}
@media (min-width: 1020px) {
  .link-more-wrap {
    text-align: left;
  }
}
.js-date-picker {
  display: inline-block;
  vertical-align: middle;
}
.js-date-picker .js-date-picker_input {
  display: block;
  visibility: hidden;
  height: 1px;
  width: 1px;
}
.ui-datepicker {
  background: #FFFFFF;
  padding: 15px 20px 11px;
  width: 246px;
  -webkit-box-shadow: 0 0 17px #717171;
  -moz-box-shadow: 0 0 17px #717171;
  box-shadow: 0 0 17px #717171;
  margin-top: 11px;
}
.ui-datepicker:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 11px solid #FFFFFF;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  top: -11px;
  left: 50%;
  margin-left: -14px;
  display: block;
}
.ui-datepicker .ui-datepicker-calendar td {
  text-align: center;
}
.ui-datepicker .ui-datepicker-calendar td a {
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 0;
  line-height: 20px;
  text-align: center;
  color: #616161;
  border: 0;
}
.ui-datepicker .ui-datepicker-calendar td a.ui-state-active {
  background: #d9a925;
  color: #ffffff;
}
.ui-datepicker .ui-datepicker-calendar .ui-datepicker-other-month a {
  color: #a5a5a5;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.ui-datepicker table {
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
}
.ui-datepicker .ui-datepicker-header {
  padding: 0;
  border: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  color: #070707;
  font-size: 18px;
}
.ui-datepicker .ui-datepicker-header a {
  width: 10px;
  height: 17px;
  background: url(../img/datepicker_arrow.png) 0 0 no-repeat;
  cursor: pointer;
  top: 7px;
}
.ui-datepicker .ui-datepicker-header a span {
  display: none;
  position: static;
  margin: 0;
  padding: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  left: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover {
  border: 0;
  left: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  background-position: -10px 0;
  right: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next-hover {
  border: 0;
  right: 0;
}
.select-cal {
  position: relative;
}
.select-cal.open .select-cal_menu {
  display: block;
}
.select-cal.open .select-cal_btn {
  background: #ebebeb;
}
.select-cal.open .select-cal_btn .select-cal_text {
  color: #000000;
}
.select-cal_btn {
  border: 1px solid #daaa00;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 33px;
  width: 100%;
  cursor: pointer;
  position: relative;
}
.select-cal_btn:focus {
  outline: none;
}
@media (min-width: 1020px) {
  .select-cal_btn {
    width: 230px;
  }
}
.select-cal_text {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-align: left;
  line-height: 31px;
  padding: 0 30px 0 10px;
}
.select-cal_text:hover {
  outline: none;
}
.select-cal_icon {
  position: absolute;
  width: 17px;
  height: 10px;
  background: url("/assets/img/yellow-select_arr.png") 0 0 no-repeat;
  top: 50%;
  right: 5px;
  margin-top: -5px;
}
.select-cal_input {
  display: none;
}
.select-cal_menu {
  display: none;
  position: absolute;
  top: 32px;
  background: #ebebeb;
  width: 100%;
  border-bottom: 1px solid #d9a900;
  border-left: 1px solid #d9a900;
  border-right: 1px solid #d9a900;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  overflow: hidden;
}
@media (min-width: 1020px) {
  .select-cal_menu {
    width: 230px;
  }
}
.select-cal_menu_list {
  margin: 0;
  padding: 0;
}
.select-cal_menu_item {
  font-family: 'PT Sans', sans-serif;
  list-style: none;
  font-size: 18px;
  color: #666666;
  text-align: left;
  padding: 0 10px;
  border-bottom: 1px solid #FFFFFF;
  cursor: pointer;
}
.select-cal_menu_item:hover {
  background: #dbe0e1;
}
.select-cal_calendar .ui-datepicker {
  width: 100%;
  background: transparent;
  -webkit-box-shadow: 0 0 0 transparent;
  -moz-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
  border: 0;
  margin-top: 0;
}
.form-big-form_input {
  width: 100%;
  height: 60px;
  border: 1px solid #999999;
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  color: #000000;
  line-height: 60px;
  padding: 0 12px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-right: 30px;
  background: #e6e6e6;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e6e6e6 0%, #fefefe 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e6e6e6), color-stop(100%, #fefefe));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #e6e6e6 0%, #fefefe 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #e6e6e6 0%, #fefefe 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #e6e6e6 0%, #fefefe 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #e6e6e6 0%, #fefefe 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e6e6e6', endColorstr='#fefefe', GradientType=0);
  /* IE6-9 */
}
.form-big-form_input:focus {
  outline: none;
  border-color: #5a93c0;
  -webkit-box-shadow: 0 0 6px rgba(0, 75, 135, 0.25);
  -moz-box-shadow: 0 0 6px rgba(0, 75, 135, 0.25);
  box-shadow: 0 0 6px rgba(0, 75, 135, 0.25);
}
.form-big-form_textarea {
  width: 100%;
  height: 60px;
  border: 1px solid #999999;
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  color: #000000;
  line-height: 60px;
  padding: 0 12px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-right: 30px;
  background: #e6e6e6;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e6e6e6 0%, #fefefe 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e6e6e6), color-stop(100%, #fefefe));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #e6e6e6 0%, #fefefe 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #e6e6e6 0%, #fefefe 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #e6e6e6 0%, #fefefe 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #e6e6e6 0%, #fefefe 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e6e6e6', endColorstr='#fefefe', GradientType=0);
  /* IE6-9 */
  height: 180px;
  background: #ffffff;
}
.form-big-form_textarea:focus {
  outline: none;
  border-color: #5a93c0;
  -webkit-box-shadow: 0 0 6px rgba(0, 75, 135, 0.25);
  -moz-box-shadow: 0 0 6px rgba(0, 75, 135, 0.25);
  box-shadow: 0 0 6px rgba(0, 75, 135, 0.25);
}
.form-big-form_submit {
  width: 100%;
  height: 60px;
  padding: 0 25px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #004b87;
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  color: #ffffff;
  border: 0;
}
.form-big-form_submit:hover {
  background: #00a9e0;
}
@media (min-width: 1020px) {
  .form-big-form_submit {
    width: auto;
  }
}
.form-big-form_label {
  display: block;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: #004b87;
  margin-bottom: 9px;
}
.form-big-form__error .form-big-form_label {
  color: #b71e1e;
}
.form-big-form__error .form-big-form_input {
  border-color: #c34159;
  -webkit-box-shadow: 0 0 6px rgba(240, 15, 15, 0.25);
  -moz-box-shadow: 0 0 6px rgba(240, 15, 15, 0.25);
  box-shadow: 0 0 6px rgba(240, 15, 15, 0.25);
}
.form-big-form_input_wrap {
  display: block;
  margin-bottom: 20px;
}
  .form-big-form_input_wrap {
    display: inline-block;
    margin-bottom: 0;
  }
  .form-big-form_input_wrap__do-email {
    width: 250px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .form-big-form_input_wrap__do-summ {
    width: 110px;
    margin-right: 30px;
    margin-bottom: 10px;
  }
  .form-big-form_input_wrap__do-submit {
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 340px;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .form-big-form_input_wrap__do-submit input {
    width: auto;
    padding: 0 14px;
    margin-bottom: 10px;
    margin-right: 10px;
  }

#donationform .form-big-form_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 850px) {
  #donationform .form-big-form_wrap {
    justify-content: flex-start;
  }
}

.form-big-form_input_wrap__full {
  display: block;
  margin-bottom: 20px;
}
.form-big-form_input_wrap__half {
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 1020px) {
  .form-big-form_input_wrap__half {
    display: inline-block;
    width: 345px;
  }
  .form-big-form_input_wrap__m60 {
    margin-right: 66px;
  }
}
.tabpanel {
  overflow: hidden;
  width: 100%;
}
.tabpanel_nav {
  margin: 0;
  padding: 0;
  width: 9999px;
}
.tabpanel_nav_item {
  display: inline-block;
  list-style: none;
  padding: 9px 20px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 5px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.tabpanel_nav_item a {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 16px;
  color: #000000;
  border-bottom: 1px dashed #000000;
  text-decoration: none;
}
.tabpanel_nav_item a:hover {
  text-decoration: none;
  border-color: transparent;
}
.tabpanel_nav_item.active {
  background: #eef3f4;
}
.tabpanel_nav_item.active a {
  border-color: transparent;
}
@media (min-width: 1020px) {
  .tabpanel_nav_item a {
    font-size: 22px;
    line-height: 22px;
  }
}
.tabpanel_nav_item-link {
  display: inline-block;
  list-style: none;
  padding: 9px 20px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 5px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: url("/assets/img/tabpanel_nav_item-link_data.png") 0 50% no-repeat;
}
.tabpanel_nav_item-link a {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 16px;
  color: #000000;
  border-bottom: 1px dashed #000000;
  text-decoration: none;
}
.tabpanel_nav_item-link a:hover {
  text-decoration: none;
  border-color: transparent;
}
.tabpanel_nav_item-link.active {
  background: #eef3f4;
}
.tabpanel_nav_item-link.active a {
  border-color: transparent;
}
@media (min-width: 1020px) {
  .tabpanel_nav_item-link a {
    font-size: 22px;
    line-height: 22px;
  }
}
.tabpanel_content {
  background: #eef3f4;
  padding: 30px 20px;
}
.tabpanel_content_item {
  display: none;
}
.tabpanel_content_item.active {
  display: block;
}
/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222;
}
html {
  font-size: 1em;
  line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}
/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}
/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body {
  font-family: 'PT Serif', serif;
  background: #cbd8dc;
  position: relative;
}
body a:focus {
  text-decoration: none;
}
@media (min-width: 1020px) {
  body {
    padding-top: 219px;
  }
}
.page-header {
  font-family: 'PT Serif', serif;
  color: #e0364c;
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
  margin: 0;
  text-align: center;
}
@media (min-width: 1020px) {
  .page-header {
    text-align: left;
    font-size: 38px;
    line-height: 38px;
  }
}
.page-header__small {
  font-size: 18px;
  line-height: 18px;
}
@media (min-width: 1020px) {
  .page-header__small {
    font-size: 28px;
    line-height: 28px;
  }
}
.page-header__blue {
  color: #004b87;
}
.page-header__center {
  text-align: center;
}
.page-header__mb40 {
  margin-bottom: 40px !important;
}
.section-header {
  position: relative;
  margin-bottom: 13px;
  text-align: center;
  overflow: hidden;
}
.section-header_link {
  display: none;
  position: relative;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  color: #333333;
  height: 33px;
  line-height: 33px;
  padding: 0 26px 0 12px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #ffffff;
  top: -30px;
  float: right;
  margin-left: 10px;
}
@media (max-width: 1020px) {
  .section-header_link {
    display: inline-block;
    
    position: relative;
    float: unset;
    
    top: unset;
    right: auto;

    margin: auto;
    margin-top: 10px;
    margin-left: 10px;
  }
}
.section-header_link:hover {
  text-decoration: none;
  color: #333333;
}
.section-header_link:after {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  top: 11px;
  right: 10px;
  background: url("/assets/img/section-header_link_icon.png") 0 0 no-repeat;
}
@media (min-width: 1020px) {
  .section-header_link {
    display: block;
  }
}
.section-header_link__grey {
  background: #eef3f4;
}
.section-header_link__blue {
  background: #009dd4;
  color: #ffffff;
  padding: 0 12px;
}
.section-header_link__blue:after {
  background: transparent;
}
.main-container {
  margin: 0 auto;
  background: #eef3f4;
  position: relative;
  -webkit-box-shadow: 0 0 10px #000000;
  -moz-box-shadow: 0 0 10px #000000;
  box-shadow: 0 0 10px #000000;
}
@media (min-width: 1020px) {
  .main-container {
    width: 1000px;
    position: static;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
}
@media (min-width: 1310px) {
  .main-container {
    width: 1280px;
  }
}
.page {
  *zoom: 1;
}
.page:before,
.page:after {
  display: table;
  content: "";
  line-height: 0;
}
.page:after {
  clear: both;
}
.page_content {
  width: 100%;
  float: left;
}
@media (min-width: 1020px) {
  .page_content {
    padding-left: 100px;
    margin-left: -100px;
    position: relative;
    z-index: 1;
  }
}
.section-header_link-wrap {
  text-align: center;
}
.section-header_link-wrap__grey {
  background: #eef3f4;
  padding: 0 0 38px;
}
.section-header_link__mobile {
  position: relative;
  display: inline-block;
}
@media (min-width: 1020px) {
  .section-header_link-wrap {
    display: none;
  }
}
.page-content_inner {
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 1020px) {
  .page-content_inner {
    width: 650px;
    margin: 0 auto;
    padding: 0;
  }
}
.page-content_inner__820 {
  width: 100%;
}
@media (min-width: 1020px) {
  .page-content_inner {
    width: 820px;
    margin: 0 auto;
  }
}
.page-content_inner__full {
  width: 100%;
  padding: 0;
}
.page-content_inner__full-mobp {
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 1020px) {
  .page-content_inner__full {
    width: 100%;
    padding: 0 30px 0 30px;
  }
  .page-content_inner__full-mobp {
    width: 100%;
    padding: 0 30px 0 30px;
  }
}
@media (min-width: 1310px) {
  .page-content_inner__full {
    padding: 0 50px 0 30px;
  }
  .page-content_inner__full-mobp {
    width: 100%;
    padding: 0 50px 0 30px;
  }
}
.page-content {
  background: #ffffff;
  padding: 23px 0 110px;
}
.page-content_p30 {
  padding-bottom: 30px;
}
.page-content_p30m0 {
  padding-bottom: 0;
}
@media (min-width: 1020px) {
  .page-content_p30m0 {
    padding-bottom: 30px;
  }
}
.page-content_p50 {
  padding-bottom: 50px;
}
.page-content_p90 {
  padding-bottom: 90px;
}
.coast-ticket_item {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 22px;
  color: #333333;
}
@media (min-width: 1020px) {
  .coast-ticket_item {
    font-size: 22px;
    line-height: 33px;
  }
}
.coast-ticket_item_header {
  font-weight: bold;
}
.page-hr {
  background: url("/assets/img/page-hr.png") 50% 0 no-repeat;
  width: 100%;
  height: 17px;
  margin: 0;
  border: 0;
}
.page-hr__grey {
  background: url("/assets/img/page-hr__grey.png") 50% 0 no-repeat;
}
.page-hr__red {
  background: url("/assets/img/page-hr__red.png") 50% 0 no-repeat;
}
.page-hr__aqua {
  background: url("/assets/img/page-hr__aqua.png") 50% 0 no-repeat;
}
.page-hr__m30 {
  margin-bottom: 30px;
}
.page-hr__m45 {
  margin-bottom: 45px;
}
.widget {
  border-top: 11px solid #e0364c;
  border-bottom: 11px solid #e0364c;
  font-family: 'PT Serif', serif;
  font-style: italic;
  color: #000000;
  font-size: 20px;
  line-height: 28px;
  padding: 12px 0 12px;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1020px) {
  .widget {
    border-bottom: 0;
    float: right;
    width: 252px;
    font-size: 22px;
    text-align: left;
  }
}
.widget-full {
  border-top: 11px solid #e0364c;
  font-family: 'PT Serif', serif;
  font-style: italic;
  color: #000000;
  font-size: 16px;
  line-height: 22px;
  padding: 12px 0 12px;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1020px) {
  .widget-full {
    border-bottom: 0;
    font-size: 22px;
    line-height: 28px;
    text-align: left;
  }
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}
/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}
/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links for images, or javascript/internal links
     */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.blue-pattern-background {
  background-image: url("/assets/img/pattern_blue.png");
  background-size: 92px 93px;
}
.header {
  position: absolute;
  padding: 39px 0 0;
  z-index: 10;
  top: 0;
  display: none;
}
.header.fix {
  position: fixed;
  top: -157px;
}
@media (min-width: 1020px) {
  .header {
    display: block;
  }
}
.header_lang_mobile {
	position: absolute;
	background: url("/assets/img/header_lang_2.png") 0 0 no-repeat;
	width: 50px;
	height: 57px;
	top: 55px;
	color: #1c4f78;
	font-family: 'PT Sans', sans-serif;
	font-size: 16px;
	text-align: center;
	padding-top: 11px;
	z-index: 10;
	right: 0px;
}
.header_lang {
  position: absolute;
  background: url("/assets/img/header_lang_2.png") 0 0 no-repeat;
  width: 50px;
  height: 57px;
  top: 0;
  left: 25px;
  color: #1c4f78;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  text-align: center;
  padding-top: 11px;
}
.header_lang_mobile:hover, .header_lang:hover {
	background-repeat: no-repeat;
	background-position: 0px -57px;
	background-image: url("/assets/img/header_lang_2.png");
	color: rgba(255,255,255,1.00);
	text-decoration: none;
}

.header_logo {
  text-align: center;
  margin-bottom: 48px;
}
.header_logo img {
  width: 281px;
}
.main-nav {
  /*background: url('../img/main-nav_bg.png') 0 0 repeat-x;*/
  background:    -moz-linear-gradient(top, rgba(43,38,52,0.36) 0%,rgba(43,38,52,0.15) 50%,rgba(43,38,52,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(43,38,52,0.36) 0%,rgba(43,38,52,0.15) 50%,rgba(43,38,52,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background:   linear-gradient(to bottom, rgba(43,38,52,0.36) 0%,rgba(43,38,52,0.15) 50%,rgba(43,38,52,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background-size: 100% 20px !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c2b2634', endColorstr='#002b2634',GradientType=0 ); /* IE6-9 */
  *zoom: 1;
}
.main-nav:before,
.main-nav:after {
  display: table;
  content: "";
  line-height: 0;
}
.main-nav:after {
  clear: both;
}
.main-nav_search-col {
  position: relative;
  width: 100px;
  float: left;
}
.main-nav_menu-col {
  width: 100%;
  float: left;
  padding-left: 100px;
  margin-left: -100px;
}
.main-nav_menu_list {
  margin: 0;
  padding: 0;
  text-align: center;
}
.main-nav_menu_item {
  display: inline-block;
  list-style: none;
  font-family: 'PT Serif', serif;
  font-size: 21px;
  margin: 0 30px;
  line-height: 60px;
}
@media (min-width: 1020px) {
  .main-nav_menu_item {
    font-size: 17px;
    margin: 0 25px;
  }
}
.main-nav_menu_item a {
  color: #ffffff;
}
.main-nav_menu_item a:hover {
  text-decoration: none;
}
@media (min-width: 1310px) {
  .main-nav_menu_item {
    margin: 0 36px;
    font-size: 21px;
  }
}
.main-nav_search {
  background: url("/assets/img/main-nav_search.png") 0 0 no-repeat;
  cursor: pointer;
  width: 25px;
  height: 23px;
  margin: 17px 0 0 38px;
}
@media (min-width: 1020px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile {
  height: 55px;
  background: #004b87;
  padding: 15px 11px 0;
  *zoom: 1;
  position: relative;
}
.header-mobile:before,
.header-mobile:after {
  display: table;
  content: "";
  line-height: 0;
}
.header-mobile:after {
  clear: both;
}
.header-mobile_left-col {
  float: left;
  width: 50%;
}
.header-mobile_rigth-col {
  float: left;
  width: 50%;
  text-align: right;
}
.header-mobile_btn {
  display: inline-block;
  cursor: pointer;
}
.header-mobile_btn.open .header-mobile_btn_line {
  background: #daaa00;
}
.header-mobile_lang {
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: #ffffff;
  vertical-align: middle;
  margin-right: 17px;
}
.header-mobile_lang:hover {
  text-decoration: none;
  color: #ffffff;
}
.header-mobile_search {
  display: inline-block;
  background: url("/assets/img/header_search_mob.png") 0 0 no-repeat;
  width: 25px;
  height: 23px;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}
.header-mobile_btn {
  width: 24px;
  position: relative;
}
.header-mobile_btn_line {
  width: 100%;
  height: 5px;
  background: #ffffff;
  margin-bottom: 3px;
}
.header_search {
  display: none;
  position: absolute;
  width: 100%;
  height: 314px;
  /*background: url("/assets/img/header_search.png") 0 0 repeat;*/
  background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
  *zoom: 1;
  padding: 41px 50px 0 32px;
}
.header_search:before,
.header_search:after {
  display: table;
  content: "";
  line-height: 0;
}
.header_search:after {
  clear: both;
}
.header_search.active {
  display: block;
}
.header_search_btn-close {
  width: 31px;
  height: 30px;
  background: url("/assets/img/header_search_btn-close.png") 0 0 no-repeat;
  float: left;
  margin-right: 63px;
  margin-top: 15px;
  cursor: pointer;
}
.header_search_form {
  float: left;
}
.header_search_input {
  color: #ffffff;
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  width: 564px;
  height: 60px;
  line-height: 60px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #999999;
  margin-right: 20px;
}
.header_search_input:focus {
  outline: none;
}
@media (min-width: 1310px) {
  .header_search_input {
    width: 844px;
  }
}
.header_search_submit {
  width: 240px;
  height: 60px;
  line-height: 60px;
  border: 0;
  background: #00a9e0;
  color: #ffffff;
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
.header-mobile_b-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px 52px 0 50px;
  display: none;
}
.header-mobile_b-search.active {
  display: block;
}
.header-mobile_b-search_input {
  width: 100%;
  height: 33px;
  line-height: 33px;
  padding: 0 10px;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #cccccc;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.header-mobile_b-search_input:focus {
  outline: none;
}
.attencion {
  background: #ffffff;
  text-align: center;
  padding: 28px 30px 25px;
}
@media (min-width: 1020px) {
  .attencion {
    padding: 42px 0 35px;
  }
}
.attencion_header {
  font-family: 'PT Serif', serif;
  color: #e0364c;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 8px;
}
@media (min-width: 1020px) {
  .attencion_header {
    font-size: 38px;
  }
}
.attencion_info {
  font-family: 'PT Sans', sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}
@media (min-width: 1020px) {
  .attencion_info {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 44px;
  }
}
.attencion_icon {
  background: url("/assets/img/attencion_icon.png") 0 0 no-repeat;
  width: 97px;
  height: 16px;
  display: inline-block;
}
.events {
  padding: 12px 30px 33px 30px;
  overflow: hidden;
}
@media (min-width: 1020px) {
  .events {
    padding: 56px 50px 85px 30px;
  }
}
.events_list_wrap {
  margin-bottom: 27px;
  position: relative;
}
@media (min-width: 1020px) {
  .events_list_wrap {
    margin-bottom: 0;
  }
}
.events_list_wrap-wrap {
  position: relative;
  width: 99999px;
}
.events_list {
  width: 99999px;
  position: relative;
  z-index: 1;
  *zoom: 1;
}
.events_list:before,
.events_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.events_list:after {
  clear: both;
}
.events_item {
  width: 259px;
  margin-right: 29px;
  float: left;
}
.events_item_link:hover {
  text-decoration: none;
}
@media (min-width: 1020px) {
  .events_item {
    width: 394px;
  }
}
.events_item_img {
  height: 158px;
  overflow: hidden;
}
.events_item_img img {
  max-width: 100%;
}
@media (min-width: 1020px) {
  .events_item_img {
    height: 240px;
  }
}
.events_item_desc {
  height: 90px;
  background: #00a9e0;
  color: #ffffff;
  text-align: center;
  padding: 18px 0 0;
  margin-bottom: 11px;
}
@media (min-width: 1020px) {
  .events_item_desc {
    height: 168px;
    margin-bottom: 26px;
  }
}
.events_item_desc_name {
  display: none;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  margin-bottom: 9px;
}
@media (min-width: 1020px) {
  .events_item_desc_name {
    display: block;
  }
}
.events_item_desc_info {
  font-family: 'PT Serif', serif;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1020px) {
  .events_item_desc_info {
    font-size: 26px;
    line-height: 30px;
  }
}
.events_item_data {
  font-family: 'PT Serif', serif;
  color: #00a9e0;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 1020px) {
  .events_item_data {
    font-size: 24px;
    line-height: 24px;
  }
}
.events_item_point {
  position: relative;
  width: 40px;
  height: 12px;
  margin: 0 auto 15px;
}
.events_item_point:after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #00a9e0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  top: 0;
  left: 50%;
  margin-left: -6px;
}
.events_list_line-wrap {
  position: absolute;
  bottom: 38px;
  left: 0;
  width: 100%;
  padding: 0 223px 0 196px;
}
@media (min-width: 1020px) {
  .events_list_line-wrap {
    bottom: 44px;
    padding: 0 223px 0 196px;
  }
}
.events_list_line {
  width: 100%;
  height: 1px;
  background: #cccccc;
}
.events_item__red .events_item_desc {
  background: #e0364c;
}
.events_item__red .events_item_point:after {
  background: #e0364c;
}
.events_item__red .events_item_data {
  color: #e0364c;
}
.events_item__brown .events_item_desc {
  background: #897449;
}
.events_item__brown .events_item_point:after {
  background: #897449;
}
.events_item__brown .events_item_data {
  color: #897449;
}
.events_ctrl__next {
  display: none;
  position: absolute;
  top: 0;
  right: -30px;
  width: 100px;
  height: 407px;
  cursor: pointer;
  z-index: 1;
}
.events_ctrl__prev {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 407px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 1;
}
@media (min-width: 1020px) {
  .events_ctrl__next {
    display: block;
  }
  .events_ctrl__prev {
    display: block;
  }
}
@media (min-width: 1310px) {
  .events_ctrl__next {
    right: -50px;
  }
}
.promo {
  position: relative;
}
.promo-top {
  height: 512px;
  overflow: hidden;
  position: relative;
}
.promo-top_slide {
  height: 512px;
}
@media (min-width: 1020px) {
  .promo-top {
    height: 359px;
  }
  .promo-top_slide {
    height: 359px;
  }
}
.promo-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
@media (min-width: 1020px) {
  .promo-bottom {
    position: relative;
    *zoom: 1;
    background: #ffffff;
    padding-top: 1px;
    bottom: 0;
  }
  .promo-bottom:before,
  .promo-bottom:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .promo-bottom:after {
    clear: both;
  }
}
.double-slider_bot_item {
  padding: 19px 30px 0;
}
.promo-bottom_slider-bot {
  overflow: hidden;
  position: relative;
  height: 340px;
}
@media (min-width: 1020px) {
  .promo-bottom_slider-bot {
    float: left;
    width: 599px;
    height: 267px;
    background: #004b87;
    margin-right: 1px;
  }
}
@media (min-width: 1310px) {
  .promo-bottom_slider-bot {
    width: 590px;
  }
}
.promo-bottom_slider-bot_header {
  font-family: 'PT Serif', serif;
  font-size: 28px;
  color: #ffffff;
  line-height: 32px;
  text-align: center;
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 1020px) {
  .promo-bottom_slider-bot_header {
    text-align: left;
    font-size: 36px;
    line-height: 42px;
    position: static;
    bottom: auto;
    width: auto;
    padding: 0;
  }
}
.promo-bottom_slider-bot_info {
  display: none;
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 20px;
}
@media (min-width: 1020px) {
  .promo-bottom_slider-bot_info {
    display: block;
  }
}
.header-menu_logo__promo-top {
  position: absolute;
  width: 100%;
  top: 27px;
}
.promo_bottom_item.promo_bottom_item__promo {
  display: none;
}
@media (min-width: 1020px) {
  .promo_bottom_item.promo_bottom_item__promo {
    display: block;
  }
}
.promo-top_slide {
  float: left;
  background: #ffffff 50% 0 no-repeat;
  background-size: cover;
}
@media (min-width: 1020px) {
  .header-menu_shadow__promo {
    display: none;
  }
}
.double-slider_main_list {
  *zoom: 1;
  width: 9999px;
}
.double-slider_main_list:before,
.double-slider_main_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.double-slider_main_list:after {
  clear: both;
}
.double-slider_bot_list {
  width: 9999px;
  *zoom: 1;
  height: 100%;
}
.double-slider_bot_list:before,
.double-slider_bot_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.double-slider_bot_list:after {
  clear: both;
}
@media (min-width: 1020px) {
  .double-slider_bot_list {
    height: auto;
  }
}
.double-slider_bot_item {
  float: left;
  height: 100%;
  position: relative;
}
@media (min-width: 1020px) {
  .double-slider_bot_item {
    height: auto;
    position: static;
  }
}
.double-slider_main_ctrl {
  display: none;
  position: absolute;
  top: 50%;
  width: 22px;
  height: 42px;
  background-image: url('../img/facts_slider_ctrl.png');
  margin-top: -21px;
  cursor: pointer;
}
.double-slider_main_ctrl__next {
  right: 20px;
  background-position: -22px 0;
}
.double-slider_main_ctrl__prev {
  left: 20px;
  background-position: 0 0;
}
@media (min-width: 1020px) {
  .double-slider_main_ctrl {
    display: block;
  }
}
.double-slider_pagination {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
}
.double-slider_pagination_item {
  display: inline-block;
  width: 14px;
  height: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  border: 1px solid #4fb3d4;
  margin: 0 3px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.double-slider_pagination_item.active {
  background: #4fb3d4;
}
@media (min-width: 1020px) {
  .double-slider_pagination {
    width: auto;
    text-align: left;
    bottom: 30px;
    left: 30px;
  }
  .double-slider_pagination_item {
    margin: 0 6px 0 0;
  }
}
.double-slider .header-menu_shadow {
  z-index: 1;
}
.double-slider .header-menu_logo {
  z-index: 1;
}
/* first block on index page goes #f4f9fa and second #ffffff */
.index_pair { 
  background: #f4f9fa;
}
.index_pair ~ .index_pair{
  background: #ffffff;
}
.news {
  padding: 11px 30px 20px;
}
.news .news_col {
  width: 100%;
}
.news .news-main-col__big {
  display: none;
}
.news-main-col__small {
  width: 100%;
}
@media (min-width: 1020px) {
  .news {
    padding: 30px 30px 40px 30px;
  }
  .news .news-main-col__big {
    display: block;
    width: 565px;
  }
  .news .news-main-col__small {
    width: 305px;
  }
}
@media (min-width: 1310px) {
  .news {
    padding-right: 50px;
  }
  .news .news_col {
    width: 50%;
  }
  .news .news-main-col__big {
    display: block;
    width: 50%;
  }
  .news .news-main-col__small {
    width: 50%;
  }
}
.news_item {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 1020px) {
  .news_item {
    text-align: left;
  }
}
.news_item_img {
  margin-bottom: 13px;
}
.news_item_img img {
  max-width: 100%;
}
.news_item_date {
  font-family: 'PT Serif', serif;
  color: #004b87;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 6px;
}
.news_item_header {
  margin: 0;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 18px;
}
.news_item_header a {
  color: #000;
}
.news_item_header a:hover {
  text-decoration: none;
}
.news_item__big .news_item_header {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
}
@media (min-width: 1020px) {
  .news_item__big .news_item_header {
    font-family: 'PT Serif', serif;
    font-weight: normal;
    font-size: 28px;
  }
}
.news_item_text {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  margin: 0;
}
.news_col__hide {
  display: none;
}
@media (min-width: 1310px) {
  .news_col__hide {
    display: block;
  }
}
.news__full {
  background: #ffffff;
  padding: 0;
}
.news__row {
  margin-bottom: 20px;
}
@media (min-width: 1020px) {
  .b-news {
    *zoom: 1;
  }
  .b-news:before,
  .b-news:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .b-news:after {
    clear: both;
  }
  .b-news_l-col {
    width: 565px;
    float: left;
  }
  .b-news_r-col {
    width: 275px;
    float: left;
  }
  .news_item {
    width: 275px;
  }
  .news_item__big {
    width: 100%;
  }
  .b-news_row__hidden {
    display: none;
  }
}
@media (min-width: 1310px) {
  .b-news_row {
    *zoom: 1;
  }
  .b-news_row:before,
  .b-news_row:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .b-news_row:after {
    clear: both;
  }
  .news_item {
    float: left;
    width: 267px;
    padding-left: 15px;
  }
  .b-news_r-col {
    width: 535px;
  }
  .news_item__big {
    width: 100%;
  }
  .b-news_row__hidden {
    display: block;
  }
}
.left-sidebar {
  position: relative;
  width: 100px;
  float: left;
  display: none;
  z-index: 2;
  background: #eef3f4;
}
@media (min-width: 1020px) {
  .left-sidebar {
    display: block;
  }
}
.object-menu {
  -webkit-box-shadow: 0 1px 10px #c7c8c8;
  -moz-box-shadow: 0 1px 10px #c7c8c8;
  box-shadow: 0 1px 10px #c7c8c8;
}
.object-menu_list {
  margin: 0 0 0;
  padding: 0;
  background: #dcdcdc;
}
.object-menu_item {
  list-style: none;
  margin-bottom: 1px;
}
.object-menu_item > a {
  display: block;
  font-family: 'PT Sans', sans-serif;
  font-size: 11px;
  color: #005291;
  height: 59px;
  line-height: 59px;
  text-align: center;
  background: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.object-menu_item > a:hover {
  text-decoration: none;
  background: #a0dbef;
}
.object-menu_item > a:active {
  background: #ffc560;
  color: #000000;
}
.object-menu_item > a:focus {
  text-decoration: none;
}
.object-menu_item.active .object-menu_sub-menu {
  display: block;
}
.object-menu_item.active > a {
  position: relative;
  background: #ffc560;
  color: #000000;
}
.object-menu_item.active > a:after {
  content: '';
  position: absolute;
  border-right: 7px solid #f4f9fa;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  top: 22px;
  right: 0;
}
.icons-menu_list {
  margin: 0;
  padding: 0;
}
.icons-menu_item {
  list-style: none;
  display: block;
}
.icons-menu_item-mobile {
	list-style: none;
	display: block;
	background-color: rgba(255,255,255,1.00);
	margin-bottom: 1px;
}
.icons-menu_item, .icons-menu_item-mobile a {
  display: block;
  text-align: center;
  padding: 18px 0 0;
  height: 98px;
  color: #004b87;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.icons-menu_item, .icons-menu_item-mobile a:hover {
  text-decoration: none;
  color: #e0364c;
  background: #f4f9fa;
}
.icons-menu_item a:hover .icons-menu_item_icon__calendar {
  background-position: -43px 0;
}
.icons-menu_item a:hover .icons-menu_item_icon__ticket {
  background-position: -43px -33px;
}
.icons-menu_item a:hover .icons-menu_item_icon__contacts {
  background-position: -43px -66px;
}
.icons-menu_item a:hover .icons-menu_item_icon__support {
  background-position: -43px -99px;
}
.icons-menu_item a:hover .icons-menu_item_icon__edu {
  background-position: -43px -141px;
}
.icons-menu_item a:hover .icons-menu_item_icon__map {
  background-position: -43px -176px;
}
.icons-menu_item a:hover .icons-menu_item_icon__access {
  background-position: -43px -211px;
}
.icons-menu_item a:active {
  background: #ffc560;
  color: #000000;
}
.icons-menu_item a:active .icons-menu_item_icon__calendar {
  background-position: -86px 0;
}
.icons-menu_item a:active .icons-menu_item_icon__ticket {
  background-position: -86px -33px;
}
.icons-menu_item a:active .icons-menu_item_icon__contacts {
  background-position: -86px -66px;
}
.icons-menu_item a:active .icons-menu_item_icon__support {
  background-position: -86px -99px;
}
.icons-menu_item a:active .icons-menu_item_icon__edu {
  background-position: -86px -141px;
}
.icons-menu_item a:active .icons-menu_item_icon__map {
  background-position: -86px -176px;
}
.icons-menu_item a:active .icons-menu_item_icon__access {
  background-position: -86px -211px;
}
.icons-menu_item_icon {
  display: block;
  width: 43px;
  height: 33px;
  margin: 0 auto 5px;
  background: url("/assets/img/icons-menu_item_icon.png?v=5") 0 0 no-repeat;
}
.icons-menu_item_icon__ticket {
  background-position: 0 -33px;
}
.icons-menu_item_icon__contacts {
  background-position: 0 -66px;
}
.icons-menu_item_icon__support {
  background-position: 0 -99px;
}
.icons-menu_item_icon__edu {
  background-position: 0 -141px;
}
.icons-menu_item_icon__map {
  background-position: 0 -176px;
}
.icons-menu_item_icon__access {
  background-position: 0 -211px;
}
.icons-menu_item_name {
  display: block;
  font-family: 'PT Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px;
}
.icons-menu_item_name-edu{
  font-size: 10px;
  letter-spacing: 0px;
  padding: 0px;
}
.sidebar-btn-top {
  text-align: center;
  cursor: pointer;
  padding-top: 280px;
}
.sidebar-btn-top_icon {
  display: inline-block;
  width: 41px;
  height: 47px;
  background: url("/assets/img/sidebar-btn-top_icon.png") 0 0 no-repeat;
  margin-bottom: 4px;
}
.sidebar-btn-top_text {
  display: block;
  font-family: 'PT Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: #004b87;
}
.no-overflow .object-menu_sub-menu {
  overflow: visible;
}
.object-menu_sub-menu {
  display: none;
  position: absolute;
  background: #f4f9fa;
  width: 284px;
  z-index: 2;
  left: 100px;
  top: 0;
  padding: 22px 31px 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.left-sidebar_overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 100px;
  width: 900px;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.left-sidebar_overlay.active {
  display: block;
}
@media (min-width: 1310px) {
  .left-sidebar_overlay {
    width: 1180px;
  }
}
.left-sidebar_menu-wrap {
  position: relative;
}
.object-menu_sub-menu_header {
  font-family: 'PT Serif', serif;
  font-size: 32px;
  color: #e24358;
  margin-bottom: 13px;
}
.object-menu_sub-menu_links {
  margin: 0 0 40px;
  padding: 0;
}
.object-menu_sub-menu_links_item {
  list-style: none;
  margin-bottom: 8px;
}
.object-menu_sub-menu_links_item > a {
  color: #004b87;
  font-size: 16px;
  border-bottom: 1px solid #004b87;
}
.object-menu_sub-menu_links_item > a:hover {
  color: #004b87;
  text-decoration: none;
  border-color: transparent;
}
.object-menu_sub-menu_links_item__more > a {
  border-bottom: 1px dotted #004b87;
}
.object-menu_sub-menu_block {
  margin-bottom: 30px;
}
.object-menu_sub-menu_block_icon {
  height: 33px;
  margin-bottom: 5px;
}
.object-menu_sub-menu_block_icon__calendar {
  background: url("/assets/img/object-menu_sub-menu_block_icon__calendar.png") 0 50% no-repeat;
}
.object-menu_sub-menu_block_icon__map {
  background: url("/assets/img/object-menu_sub-menu_block_icon__map.png") 0 50% no-repeat;
}
.object-menu_sub-menu_block_header {
  font-family: 'PT Serif', serif;
  font-size: 24px;
  line-height: 29px;
  color: #00a9e0;
  margin-bottom: 13px;
}
.object-menu_sub-menu_block_list {
  margin: 0;
  padding: 0;
}
.object-menu_sub-menu_block_list_item {
  list-style: none;
  margin-bottom: 15px;
}
.object-menu_sub-menu_block_list_item_header {
  display: block;
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: #666666;
  line-height: 21px;
}
.object-menu_sub-menu_block_list_item_info {
  display: block;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: #004b87;
  line-height: 21px;
}
.object-menu_sub-menu_block_list_item_info a {
  color: #004b87;
  border-bottom: 1px solid #004b87;
}
.object-menu_sub-menu_block_list_item_info a:hover {
  border-color: transparent;
  text-decoration: none;
}
.object-menu_sub-menu_block_list_item_info a:focus {
  text-decoration: none;
}
.object-menu_sub-menu_map {
  position: relative;
  width: 284px;
  height: 286px;
  left: -31px;
  bottom: 0;
  background: #666666;
}
.object-menu_sub-menu_map.map-full {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
}
#sub-menu_map {
  width: 100%;
  height: 100%;
}
.object-menu_sub-menu_map_link {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 31px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 31px;
}
.object-menu_sub-menu_map_link a {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: #1c4f78;
  border-bottom: 1px dotted #1c4f78;
}
.object-menu_sub-menu_map_link a:hover {
  text-decoration: none;
  border-color: transparent;
}
.object-menu_sub-menu_map_link a:focus {
  text-decoration: none;
}
.facts {
  display: none;
  padding: 40px 0 44px;
  text-align: center;
}
@media (min-width: 1020px) {
  .facts {
    display: block;
  }
}
.facts_header {
  margin: 0;
  font-weight: normal;
  font-family: 'PT Sans', sans-serif;
  color: #99d6ea;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 57px;
}
@media (min-width: 1310px) {
  .facts_header {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 47px;
  }
}
.facts_slider {
  margin-bottom: 81px;
}
.facts_slider .bx-controls-direction a {
  width: 22px;
  height: 42px;
  background-image: url('../img/facts_slider_ctrl.png');
  margin-top: -21px;
}
.facts_slider .bx-prev {
  background-position: 0 0;
  left: 33px;
}
.facts_slider .bx-prev:hover {
  background-position: 0 0;
}
.facts_slider .bx-next {
  background-position: -22px 0;
  right: 33px;
}
.facts_slider .bx-next:hover {
  background-position: -22px 0;
}
@media (min-width: 1310px) {
  .facts_slider {
    margin-bottom: 67px;
  }
}
.facts_social_item {
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  height: 33px;
  line-height: 33px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 0 20px 0 40px;
  background: url('../img/facts_social_item.png?v=3') 0 0 #ffffff no-repeat;
  background-size: 25px auto;
}
.facts_social_item:hover {
  color: #ffffff;
  text-decoration: none;
}
.facts_social_item__fb {
  background-color: #4e6cb4;
  background-position: 10px 0;
}
.facts_social_item__tw {
  background-color: #1faded;
  background-position: 10px -33px;
}
.facts_social_item__pt {
  background-color: #ce2423;
  background-position: 10px -66px;
}
.facts_social_item__vk {
  background-color: #436d9a;
  background-position: 10px -99px;
}

.facts_social_item__ig {
  background-color: #C13584;
  background-position: 10px -132px;
}

.facts_social_item__yt {
  background-color: #FF0000;
  background-position: 10px -165px;
}

.facts_social_item__tg {
  background-color: #37AEE2;
  background-position: 10px -198px;
}

.facts_social_item__ok {
  background-color: #FF7700;
  background-position: 10px -264px;
}

.facts_social_item__dz {
  background-color: #AAAAAA;
  background-position: 10px -297px;
}

.facts_social_item__rss {
	background-color: #ea7819;
	background-position: 10px -231px;
}
.facts_slider_list {
  margin: 0;
  padding: 0;
}
.facts_slider_item {
  font-family: 'PT Serif', serif;
  list-style: none;
  font-size: 28px;
  line-height: 34px;
  font-style: italic;
  color: #ffffff;
}
@media (min-width: 1310px) {
  .facts_slider_item {
    font-size: 32px;
    line-height: 38px;
  }
}
.footer_vol_logo {
  margin-top: 10px !important;
}
.footer {
  background: #00a9e0;
  padding: 17px 30px 24px;
  color: #ffffff;
}
.footer .row {
  margin: 0;
}
.footer .col-md-4 {
  padding: 0;
}
.footer .footer_app_col {
  text-align: center;
  padding-top: 6px;
}
.footer .footer-col {
  width: 100%;
}
@media (min-width: 1020px) {
  .footer {
    padding-top: 44px;
  }
  .footer .footer_app_col {
    text-align: left;
  }
  .footer .footer-col {
    width: 33.33333333%;
  }
}
@media (min-width: 1310px) {
  .footer .footer_mid-col {
    padding-left: 40px;
  }
}
.footer_app_header {
  font-family: 'PT Sans', sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 22px;
  margin-bottom: 16px;
}
@media (min-width: 1020px) {
  .footer_app_header {
    font-size: 18px;
    margin-bottom: 9px;
  }
}
.footer_app_links {
  margin-bottom: 23px;
}
.footer_app_link {
  display: inline-block;
  width: 110px;
  height: 38px;
  background: #000;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.footer_app_link__gp {
  background: url("/assets/img/footer_app_link__gp.jpg") 0 0 no-repeat;
  margin-right: 6px;
}
.footer_app_link__as {
  background: url("/assets/img/footer_app_link__as.jpg") 0 0 no-repeat;
}
.footer_phone-support {
  text-align: center;
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 19px;
}
.footer_phone-support span {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 20px;
  display: inline-block;
}
.footer_phone-support span span {
  color: #99d6ea;
}
a[href^="tel"] {
  color: inherit;
  text-decoration: none; 
}
@media (min-width: 1020px) {
  .footer_phone-support {
    text-align: left;
  }
}

/* removing social-likes library icons */
.social-likes {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.social-likes-centered {
  display: flex;
  justify-content: center;
}
svg.social-likes__icon {
  display: none;
}

.footer_social {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 40px;
}
@media (min-width: 1020px) {
  .footer_social {
    text-align: left;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.footer_social_header {
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  display: none;
}
.footer_social_item {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 9px;
  display: inline-block;
}
.footer_social_item span {
  display: none;
  vertical-align: middle;
}
@media (min-width: 1020px) {
  .footer_social_header {
    display: block;
  }
  .footer_social_item {
    display: block;
  }
  .footer_social_item span {
    display: inline-block;
  }
}
.footer_social_item_icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  background: url("/assets/img/footer_social_item_icon.png?v=6") 0 0 no-repeat;
  background-size: cover;
  margin: 0 10px;
}
.footer_social_item_icon__tw {
  background-position: 0 -25px;
}
.footer_social_item_icon__pt {
  background-position: 0 -50px;
}
.footer_social_item_icon__ig {
  background-position: 0 -100px;
}
.footer_social_item_icon__vk {
  background-position: 0 -75px;
}
.footer_social_item_icon__yt {
  background-position: 0 -125px;
}
.footer_social_item_icon__tg {
  background-position: 0 -150px;
}
.footer_social_item_icon__ok {
  background-position: 0 -175px;
}
.footer_social_item_icon__dz {
  background-position: 0 -200px;
}
@media (min-width: 1020px) {
  .footer_social_item_icon {
    margin: 0 13px 0 0;
  }
}
.footer_copyrigth {
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 19px;
  text-align: center;
}
.footer_copyrigth span {
  font-weight: bold;
}
@media (min-width: 1020px) {
  .footer_copyrigth {
    text-align: left;
  }
}
.footer_copyrigth_info {
  display: none;
  font-family: 'PT Serif', serif;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 13px;
}
.footer_copyrigth_info a {
  color: #ffffff;
}
.footer_copyrigth_info a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer_copyrigth_info a:focus {
  outline: none;
}
@media (min-width: 1020px) {
  .footer_copyrigth_info {
    display: block;
  }
}
@media (min-width: 1310px) {
  .footer_copyrigth_info {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 28px;
  }
}
.footer_copyrigth_img {
  text-align: center;
  margin-left: 10px;
}
.footer_copyrigth_img img {
  margin: 0 5px 6px 0;
}
@media (min-width: 1020px) {
  .footer_copyrigth_img {
    display: block;
    margin-left: 0px;
    text-align: unset;
  }
}
.header-menu {
  position: relative;
  background: #ffffff 50% 0 no-repeat;
  padding: 26px 0 15px;
  background-size: cover;
  overflow: hidden;
}
@media (min-width: 1020px) {
  .header-menu {
    padding: 118px 0 0;
    min-height: 359px;
  }
}
.header-menu_container {
  position: relative;
  display: grid;
  width: 100%; /* news header in mobile safari fix */
}
.header-menu_logo {
  text-align: center;
  margin-bottom: 34px;
}
.header-menu_logo img {
  width: 237px;
}
@media (min-width: 1020px) {
  .header-menu_logo {
    display: none;
  }
}
.header-menu__plane-a-visit {
  background-image: url('../img/header-menu__plane-a-visit.jpg');
}
.header-menu__objects {
  background-image: url("/assets/img/header-menu__objects.jpg");
}
.header-menu__calendar {
  background-image: url("/assets/img/header-menu__calendar.jpg");
  overflow: visible;
}
.header-menu__mus {
  background-image: url("/assets/img/header-menu__mus.jpg");
}
.header-menu__mus-press {
  background-image: url("/assets/img/header-menu__mus-press.jpg");
}
.header-menu__mus-faq {
  background-image: url("/assets/img/header-menu__mus-faq.jpg");
}
.header-menu__news {
  background-image: url("/assets/img/header-menu__news.jpg");
}
.header-menu__news-post {
  background-image: url("/assets/img/header-menu__news-post.jpg");
}
.header-menu__addfriend {
  background-image: url("/assets/img/header-menu__addfriend.jpg");
}
.header-menu__donate {
  background-image: url("/assets/img/header-menu__donate.jpg");
}
.header-menu__donate-no {
  background-image: url("/assets/img/header-menu__donate-no.jpg");
}
.header-menu__start-odb {
  background-image: url("/assets/img/header-menu__start-odb.jpg");
}
.header-menu__child {
  background-image: url("/assets/img/header-menu__child.jpg");
}
.header-menu__child-feast {
  background-image: url("/assets/img/header-menu__child-feast.jpg");
}
.header-menu__child-games {
  background-image: url("/assets/img/header-menu__child-games.jpg");
}
.header-menu__child-games-new {
  background-image: url("/assets/img/header-menu__child-games-new.jpg");
}
.header-menu__search {
  background-image: url("/assets/img/header-menu__search.jpg");
}
.header-menu__search-null {
  background: #dd354b;
}
.header-menu__multimedia {
  background-image: url("/assets/img/header-menu__multimedia.jpg");
}
.header-menu__multimedia-album {
  background-image: url("/assets/img/header-menu__multimedia-album.jpg");
}
@media (min-width: 1020px) {
  .header-menu__big-menu .header-menu_container {
    width: 880px;
    margin: 0 auto;
  }
  .header-menu__big-menu .header-menu_header {
    height: 150px;
  }
  .header-menu__big-menu .header-menu_footer_item {
    margin-bottom: 12px;
  }
}
.header-menu_search-header {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}
.header-menu_search-query_wrap {
  padding: 0 15px;
  margin-bottom: 80px;
}
.header-menu_search-query {
  font-family: 'PT Serif', serif;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  border: 1px solid #c3cacb;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #ffffff;
  padding: 4px 20px 5px;
}
@media (min-width: 1020px) {
  .header-menu_search-header {
    font-size: 24px;
  }
  .header-menu_search-query {
    font-size: 38px;
    line-height: 44px;
    padding: 4px 20px 10px;
  }
  .header-menu_search-query_wrap {
    padding: 0;
    margin: 0 auto;
    width: 540px;
  }
}
.header-menu_header {
  font-family: 'PT Serif', serif;
  font-size: 28px;
  line-height: 34px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 2px rgba(0, 0, 1, 0.3);
  min-height: 121px;
  margin-bottom: 20px;
}
@media (min-width: 1020px) {
  .header-menu_header {
    font-size: 48px;
    line-height: 58px;
  }
}
.header-menu_footer {
  margin-bottom: 15px;
}
.header-menu_footer_list {
  margin: 0;
  padding: 0 21px;
  text-align: center;
}
@media (min-width: 1020px) {
  .header-menu_footer_list {
    padding: 0;
  }
}
.header-menu_footer_item {
  display: block;
  margin: 0 0 9px;
}
.header-menu_footer_item .yellow-buttons {
  width: 100%;
}
@media (min-width: 1020px) {
  .header-menu_footer_item {
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
  }
}
.header-menu_shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  /*background: url("/assets/img/header-menu_shadow.png") 50% 0 no-repeat;*/
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 58%, rgba(0,0,0,0.7) 78%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 58%,rgba(0,0,0,0.7) 78%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 58%,rgba(0,0,0,0.7) 78%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  background-size: 100% 360px;
  bottom: 0;
  left: 0;
  background-size: cover;
}
.header-menu_nav {
  position: absolute;
  width: 90px;
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  top: 100px;
  padding: 64px 0 0;
}
.header-menu_nav:hover {
  color: #ffffff;
  text-decoration: none;
}
.header-menu_nav__prev {
  background: url("/assets/img/header-menu_nav__prev.png") 100% 0 no-repeat;
  text-align: right;
  right: 794px;
}
.header-menu_nav__next {
  background: url("/assets/img/header-menu_nav__next.png") 0 0 no-repeat;
  text-align: left;
  left: 794px;
}
@media (min-width: 1310px) {
  .header-menu_nav__prev {
    right: 1024px;
  }
  .header-menu_nav__next {
    left: 1024px;
  }
}
.mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 265px;
}
@media (min-width: 1020px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu_logo {
  background: #f4f9fa;
  padding: 11px 0 8px 22px;
}
.mobile-menu_menu {
  background: #f4f9fa;
  padding: 0 0 17px 22px;
}
.mobile-menu_menu_list {
  margin: 0;
  padding: 0;
}
.mobile-menu_menu_list_item {
  list-style: none;
  display: block;
  height: 45px;
  line-height: 45px;
}
.mobile-menu_menu_list_item a {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  color: #004b87;
}
.mobile-menu_menu_list_item a:hover {
  text-decoration: none;
}
.mobile-menu_obj-menu_list {
  margin: 0;
  padding: 0;
}
.mobile-menu_obj-menu_list_item {
  list-style: none;
  margin-bottom: 1px;
}
.mobile-menu_obj-menu_list_item span {
  position: relative;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: #004b87;
  display: block;
  height: 60px;
  line-height: 60px;
  background: #ffffff;
  padding: 0 0 0 22px;
  cursor: pointer;
  text-transform: uppercase;
}
.mobile-menu_obj-menu_list_item span:after {
  content: '';
  position: absolute;
  background: url("/assets/img/mobile-menu_obj-menu_list_item.png") 0 -9px no-repeat;
  width: 13px;
  height: 9px;
  top: 26px;
  right: 18px;
}
.mobile-menu_obj-menu_list_item.open span {
  background: #ffc560;
}
.mobile-menu_obj-menu_list_item.open span:after {
  background-position: 0 0;
}
.mobile-menu_obj-menu_list_item.open .mobile-menu_obj-menu_sub-list {
  display: block;
}
.mobile-menu_obj-menu_sub-list {
  display: none;
  margin: 20px 0 0;
  padding: 0 0 20px 38px;
}
.mobile-menu_obj-menu_sub-list_item {
  list-style: none;
  position: relative;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 12px;
}
.mobile-menu_obj-menu_sub-list_item:after {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  top: 8px;
  left: -16px;
  background: #ffffff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.mobile-menu_obj-menu_sub-list_item a {
  color: #ffffff;
}
.mobile-menu_obj-menu_sub-list_item a:hover {
  text-decoration: none;
}
.promo_bottom {
  display: none;
  *zoom: 1;
  background: #ffffff;
  padding: 1px 0;
  overflow: hidden;
}
.promo_bottom:before,
.promo_bottom:after {
  display: table;
  content: "";
  line-height: 0;
}
.promo_bottom:after {
  clear: both;
}
@media (min-width: 1020px) {
  .promo_bottom {
    display: block;
  }
}
.promo_bottom_list {
  *zoom: 1;
}
.promo_bottom_list:before,
.promo_bottom_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.promo_bottom_list:after {
  clear: both;
}
.promo_bottom_item {
  display: block;
  cursor: pointer;
  float: left;
  width: 283px;
  height: 267px;
  margin-right: 1px;
  background: #ffffff 50% 0 no-repeat;
  text-align: center;
  padding: 22px 0 0;
}
.promo_bottom_item__rules {
  width: 299px;
  background-image: url('../img/promo_bottom_item__rules.jpg');
}
.promo_bottom_item__calendar {
  width: 299px;
  background-image: url('../img/promo_bottom_item__calendar.jpg');
}
.promo_bottom_item__svisoti {
  width: 300px;
  background-image: url('../img/promo_bottom_item__svisoti.jpg');
  margin-right: 0;
}
.promo_bottom_item__tour {
  display: none;
  width: 300px;
  background-image: url('../img/promo_bottom_item__tour.jpg');
}
.promo_bottom_item__versal {
  display: none;
  background-image: url('../img/promo_bottom_item__versal.jpg');
}
@media (min-width: 1310px) {
  .promo_bottom_item__rules {
    width: 283px;
  }
  .promo_bottom_item__calendar {
    width: 296px;
  }
  .promo_bottom_item__svisoti {
    width: 298px;
    margin-right: 1px;
  }
  .promo_bottom_item__tour {
    display: block;
    margin-right: 0;
  }
  .promo_bottom_item__versal {
    display: block;
    width: 290px;
    background-image: url('../img/promo_bottom_item__versal.jpg');
    margin-right: 0;
  }
}
.promo_bottom_item_header {
  display: inline-block;
  width: 100%;
  font-family: 'PT Serif', serif;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 9px;
}
.promo_bottom_item_info {
  display: inline-block;
  width: 100%;
  color: #ffffff;
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-size: 16px;
}
.time-table {
  display: none;
  background: #00a9e0;
  padding: 21px 30px 12px 30px;
}
@media (min-width: 1020px) {
  .time-table {
    display: block;
  }
}
@media (min-width: 1310px) {
  .time-table {
    padding-right: 50px;
  }
}
.page-header__time-table {
  color: #ffffff;
  font-size: 36px;
  width: 85%;
}
.page-header__time-table a {
  color: #ffffff;
  line-height: 36px;
  border-bottom: 1px dashed #ffffff;
}
.page-header__time-table a:hover {
  text-decoration: none;
  border-color: transparent;
}
.time-table_slider_frame {
  position: relative;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.time-table_slider_slides {
  display: inline-block;
}
.time-table_col {
  position: relative;
  vertical-align: top;
  display: inline-block;
  width: 280px;
  padding-right: 20px;
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 22px;
  color: #c9effb;
}
.time-table_col a {
  text-decoration: underline;
  color: #c9effb;
}
.time-table_col a:hover {
  text-decoration: none;
}
@media (min-width: 1310px) {
  .time-table_col {
    width: 275px;
  }
}
.time-table_col_header {
  color: #ffffff !important;
  margin-bottom: 8px;
}
.time-table_col_group {
  margin-bottom: 14px;
}
.section-header_link__time-table {
  font-size: 18px;
  color: #ffffff;
  background-color: transparent;
}
.section-header_link__time-table span {
  border-bottom: 1px dashed #ffffff;
}
.section-header_link__time-table:after {
  top: 13px;
  background-image: url('../img/section-header_link_icon__white.png');
}
.section-header_link__time-table:hover {
  color: #ffffff;
}
.section-header_link__time-table:hover span {
  border-color: transparent;
}
.section-header_link__time-table:focus {
  color: #ffffff;
}
.map {
  background: #f4f9fa;
}
.map_container {
  padding: 26px 21px 32px;
}
@media (min-width: 1020px) {
  .map_wrap {
    height: 540px;
    position: relative;
  }
}
.map_result {
  position: relative;
  background: rgba(0, 169, 224, 0.9);
  padding: 20px 21px 0;
  overflow: auto;
  z-index: 1;
  text-align: center;
}
@media (min-width: 1020px) {
  .map_result {
    text-align: left;
    width: 300px;
    height: 540px;
    padding: 47px 30px 0;
  }
}
@media (min-width: 1310px) {
  .map_result {
    width: 580px;
    height: 540px;
  }
}
#map {
  width: 100%;
  height: 540px;
  background: #000;
}
@media (min-width: 1020px) {
  #map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.map_result_header {
  font-family: 'PT Serif', serif;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 28px;
}
@media (min-width: 1020px) {
  .map_result_header {
    font-size: 38px;
    line-height: 42px;
  }
}
.map_result_list {
  margin: 0;
  padding: 0 ;
}
@media (min-width: 1020px) {
  .map_result_list {
    padding: 0 0 0 30px;
  }
}
.map_result_list_item {
  position: relative;
  list-style: none;
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  color: #ffffff;
  line-height: 22px;
  margin-bottom: 23px;
}
@media (min-width: 1020px) {
  .map_result_list_item:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffffff;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    top: 10px;
    left: -30px;
  }
}
.map_result_list_item_name {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 22px;
}
.blue-buttons__map-filter {
  display: inline-block;
  width: 100%;
  padding: 0;
  vertical-align: middle;
  margin-bottom: 12px;
}
.blue-buttons__map-filter .blue-buttons__select_arrow {
  background-color: #f4f9fa;
}
.blue-buttons__map-filter select {
  height: 31px;
  line-height: 31px;
  padding: 0 0 0 10px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1020px) {
  .blue-buttons__map-filter {
    width: 260px;
    margin-bottom: 0;
  }
  .blue-buttons__map-filter select {
    width: 290px;
  }
}
.map_filter__submit {
  vertical-align: middle;
  width: 100%;
  text-align: center;
}
@media (min-width: 1020px) {
  .map_filter__submit {
    width: auto;
    margin-left: 16px;
    text-align: left;
  }
}
.map_filter_arrow {
  display: none;
  vertical-align: middle;
  width: 31px;
  height: 33px;
  background: url("/assets/img/map_filter_arrow.png") 0 50% no-repeat;
  margin: 0 12px;
}
@media (min-width: 1020px) {
  .map_filter_arrow {
    display: inline-block;
  }
}
.time-and-price {
  background: #ffffff;
  padding: 21px 21px 55px;
  overflow: hidden;
}
@media (min-width: 1020px) {
  .time-and-price {
    padding: 21px 30px 55px 30px;
  }
}
.time-and-price_list_wrap {
  position: relative;
}
.time-and-price_list_wrap-wrap {
  position: relative;
  width: 99999px;
}
.time-and-price_list {
  width: 99999px;
  position: relative;
  z-index: 1;
  *zoom: 1;
}
.time-and-price_list:before,
.time-and-price_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.time-and-price_list:after {
  clear: both;
}
.time-and-price_item {
  width: 252px;
  margin-right: 29px;
  float: left;
  cursor: pointer;
}
.time-and-price_item.hide {
  display: none;
}
.time-and-price_img {
  width: 252px;
  height: 252px;
  margin-bottom: 24px;
}
.time-and-price_img img {
  max-width: 100%;
  height: 100%;
}
.time-and-price_item_point {
  position: relative;
  width: 40px;
  height: 12px;
  background: #ffffff;
  margin: 0 auto 15px;
}
.time-and-price_item_point:after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #000000;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  top: 0;
  left: 50%;
  margin-left: -6px;
}
.time-and-price_item_data {
  font-family: 'PT Serif', serif;
  color: #000;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}
.time-and-price_item_desc {
  cursor: pointer;
}
.time-and-price_list_line-wrap {
  position: absolute;
  bottom: 85px;
  left: 0;
  width: 100%;
  padding: 0 163px 0 126px;
}
.time-and-price_list_line {
  width: 100%;
  height: 1px;
  background: #cccccc;
}
.time-and-price_filter_list {
  margin: 0;
  padding: 0;
  display: none;
}
@media (min-width: 1020px) {
  .time-and-price_filter_list {
    display: block;
  }
}
.time-and-price_filter_list_item {
  list-style: none;
  display: inline-block;
  margin-right: 11px;
  margin-bottom: 12px;
}
.time-and-price_filter {
  margin-bottom: 18px;
}
.time-and-price_select:before {
  background: #fff;
}
@media (min-width: 1020px) {
  .time-and-price_select {
    display: none;
  }
}
.time-and-price_ctrl__next {
  display: none;
  position: absolute;
  bottom: 112px;
  right: -30px;
  width: 100px;
  height: 256px;
  cursor: pointer;
  z-index: 1;
}
.time-and-price_ctrl__prev {
  display: none;
  position: absolute;
  bottom: 112px;
  left: 0;
  width: 100px;
  height: 256px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 1;
}
@media (min-width: 1020px) {
  .time-and-price_ctrl__next {
    display: block;
  }
  .time-and-price_ctrl__prev {
    display: block;
  }
}
.article {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}
.article p {
  margin: 0 0 30px;
}
.article p.attention {
  color: #e0364c;
  font-style: italic;
}
.article .page-header {
  margin-bottom: 20px;
}
.article img {
  max-width: 100%;
  margin-bottom: 30px;
}
.article p.red {
  color: #ed1c24;
}
.article .page-hr {
  margin-bottom: 30px;
}
.article .red-line {
  border-top: 1px solid #e0364c;
  border-bottom: 1px solid #e0364c;
  text-align: center;
  font-style: italic;
  padding: 24px 0 30px;
}
.book_search {
  width: 100%;
  /* border: 1px solid red; */
  margin-bottom: 40px !important;
}
.book_search_input {
  width: 100%;
  padding-left: 30px;
}
.book_search_clear {
  float: right;
  font-size: 14px;
}
.book_search_show {

}
.book_search_hide {
  display: none;
}
.child-img-list_img.book {
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position-x: 0%;
}
.article .book {
  text-align: left;
  font-style: italic;

}
p.book {
  margin-bottom: 0px;
}
p.book_annotation {
  font-style: normal;
}
.article .book_block {
  padding: 0px 0 10px 0px;
  border-bottom: 1px solid #e0364c;
  margin-bottom: 30px;
  margin-top: 15px;
}
.article .book_out {
  text-align: left;
  font-size: 12px;
  line-height: 1.8em;
  display:block;
}

.article .book_annotation + .book_out {
  margin-top:30px;
}

@media (min-width: 1020px) {
  .article {
    font-size: 22px;
    line-height: 33px;
  }
  .book_out {
    font-size: 18px;
  }
}
span.red {
  color: #ed1c24;
}
.hotel {
  padding: 0 15px;
}
.hotel_map {
  position: relative;
}
@media (min-width: 1020px) {
  .hotel_map {
    height: 344px;
  }
  .hotel {
    padding: 0 50px 0 30px;
  }
}
.hotel_map_desc {
  background: rgba(0, 157, 212, 0.8);
  width: 100%;
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  padding: 20px;
  position: relative;
  text-align: center;
}
@media (min-width: 1020px) {
  .hotel_map_desc {
    width: 50%;
    height: 100%;
    text-align: left;
    font-size: 22px;
    line-height: 33px;
  }
}
.hotel_map_desc_adr {
  font-style: italic;
  margin-bottom: 25px;
}
.hotel_map_desc_adr__top {
  margin-top: 25px;
}
.hotel_img img {
  max-width: 100%;
}
#map_hotel {
  position: relative;
  width: 100%;
  height: 344px;
  background: #dfdfdf;
}
@media (min-width: 1020px) {
  #map_hotel {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
#map_object
{
  width:100%;
  height:300px;
}
.rules {
  padding: 0 15px 0 15px;
  margin-bottom: 23px;
}
@media (min-width: 1020px) {
  .rules {
    padding: 0 50px 0 30px;
  }
}
.rules_inner {
  background: #eef3f4;
}
.rules_header {
  border-bottom: 1px solid #cdd6d8;
  padding: 23px 20px 31px;
}
.rules_header .page-header {
  text-align: center;
}
.rules_list {
  *zoom: 1;
  padding: 37px 23px 18px;
}
.rules_list:before,
.rules_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.rules_list:after {
  clear: both;
}
.rules_list_item {
  float: left;
  width: 100%;
  margin-bottom: 28px;
}
@media (min-width: 1020px) {
  .rules_list_item {
    width: 50%;
    height: 140px;
  }
}
@media (min-width: 1310px) {
  .rules_list_item {
    height: 65px;
  }
}
.rules_list_item_icon {
  text-align: center;
  margin-bottom: 27px;
}
@media (min-width: 1310px) {
  .rules_list_item_icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 22px;
    text-align: left;
    margin-bottom: 0;
  }
}
.rules_list_item_text {
  font-family: 'PT Serif', serif;
  font-size: 24px;
  color: #000000;
  line-height: 30px;
  text-align: center;
}
.rules_list_item_text span {
  color: #ed222a;
}
@media (min-width: 1310px) {
  .rules_list_item_text {
    display: inline-block;
    vertical-align: middle;
    font-family: 'PT Serif', serif;
    font-size: 24px;
    color: #000000;
    line-height: 30px;
    width: 450px;
    text-align: left;
  }
}
.rules_attention {
  padding: 0 15px;
}
@media (min-width: 1020px) {
  .rules_attention {
    padding: 0 40px;
  }
}
.rules_attention_inner {
  background: #eef3f4;
  padding: 29px 15px 48px;
}
@media (min-width: 1020px) {
  .rules_attention_inner {
    background: #eef3f4;
    padding: 29px 0 48px;
  }
}
.rules_attention_header {
  margin-bottom: 15px;
}
.rules_attention_header .page-header {
  text-align: center;
}
.rules_attention_info {
  font-family: 'PT Serif', serif;
  color: #000;
  text-align: center;
  line-height: 33px;
  font-size: 22px;
}
.rules_attention_info p {
  margin: 0;
}
@media (min-width: 1020px) {
  .rules_attention_info {
    line-height: 34px;
    font-size: 28px;
  }
}
.page-hr__rules_attention {
  margin: 25px 0;
}
.rules_attention_text {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #333333;
  margin: 30px 0 6px;
}
@media (min-width: 1020px) {
  .rules_attention_text {
    font-size: 22px;
    line-height: 48px;
  }
}
.inter-cabinet {
  background: #eef3f4;
  padding: 30px 30px 34px;
  margin-bottom: 32px;
}
@media (min-width: 1020px) {
  .form-big-form_input__cabinet {
    width: 290px;
  }
}
.accordion_item_header {
  position: relative;
  min-height: 60px;
  line-height: 1.3em;
  font-family: 'PT Serif', serif;
  font-size: 18px;
  color: #000;
  padding: 10px 40px;
  background: #eef3f4;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.accordion_item_header:after {
  content: '';
  position: absolute;
  background: url("/assets/img/accordion_item_header_close.png") 0 0 no-repeat;
  width: 9px;
  height: 11px;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
}
@media (min-width: 1020px) {
  .accordion_item_header {
    font-size: 22px;
  }
}
.accordion_item_content {
  display: none;
  font-family: 'PT Serif', serif;
  color: #333333;
  font-size: 18px;
  line-height: 22px;
  background: #e4eaeb;
  padding: 23px 15px 38px;
}
.accordion_item_content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1020px) {
  .accordion_item_content {
    padding: 23px 40px 38px;
    font-size: 22px;
    line-height: 33px;
  }
}
.accordion_item.active .accordion_item_content {
  display: block;
}
.accordion_item.active .accordion_item_header:after {
  background: url("/assets/img/accordion_item_header.png") 0 0 no-repeat;
  width: 11px;
  height: 9px;
  left: 17px;
}
.accordion-wrap {
  margin-bottom: 44px;
}

/* accordeons with grid inside */
@media (min-width: 768px) {
  .accordion-wrap.grid .accordion_item.active .accordion_item_content {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .accordion-wrap.grid .nogrid {
    grid-column: 1 / span 3;
  }
}

.small-caption {
  font-size: 12px;
  line-height: 18px;
}

.flexbox_book {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.flexbook_l_wrap {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    -webkit-align-content: flex-start; /* Safari */
    align-content:         flex-start;
}

.book_leftflex {
    min-width: 160px;
    flex-grow: 0;
    align-self: flex-start;
}

.book_rightflex {
    flex-grow: 1;
    max-width: 560px;
}
@media (min-width: 850px) {
  .flexbook_l_wrap {
      width: 180px;
  }
}
.book_downflex {
    align-self: flex-start;
    min-width: 150px;
    margin-top: 7px;
}
@media (min-width: 1020px) {
  .service_list {
    width: 600px;
    margin: 0 auto;
  }
}
@media (min-width: 1310px) {
  .service_list {
    width: 100%;
  }
}
.service_list_item_header {
  background: #eef3f4;
  padding: 0 15px 50px;
  cursor: pointer;
}
@media (min-width: 1020px) {
  .service_list_item_header {
    height: 182px;
    padding-bottom: 0;
  }
}
.service_list_item {
  margin-bottom: 30px;
}
.service_list_item.active .service_list_item_desc {
  display: block;
}
.service_list_item_header_icon {
  text-align: center;
}
.service_list_item_header_icon img {
  margin-top: 10px;
}
@media (min-width: 1020px) {
  .service_list_item_header_icon {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
    height: 100%;
    text-align: left;
  }
  .service_list_item_header_icon img {
    margin-top: 20px;
  }
}
.service_list_item_header_name {
  display: block;
  font-family: 'PT Serif', serif;
  color: #004b87;
  vertical-align: middle;
  font-size: 28px;
  line-height: 33px;
  text-align: center;
}
@media (min-width: 1020px) {
  .service_list_item_header_name {
    display: inline-block;
    text-align: left;
    width: 415px;
  }
}
@media (min-width: 1310px) {
  .service_list_item_header_name {
    font-size: 38px;
    line-height: 44px;
    width: 635px;
  }
}
.service_list_item_desc {
  display: none;
  background: #e4eaeb;
  padding: 25px 40px 55px;
}
.service_list_item_desc_info {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 43px;
}
@media (min-width: 1020px) {
  .service_list_item_desc_info {
    font-size: 22px;
    line-height: 28px;
  }
}
.service_list_item_desc_header {
  font-family: 'PT Serif', serif;
  font-size: 22px;
  line-height: 24px;
  color: #e0364c;
  margin-bottom: 18px;
}
@media (min-width: 1020px) {
  .service_list_item_desc_header {
    font-size: 28px;
    line-height: 33px;
  }
}
.service_list_item_table {
  width: 100%;
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 22px;
  color: #004b87;
}
@media (min-width: 1020px) {
  .service_list_item_table {
    font-size: 22px;
    line-height: 33px;
  }
}
.service_list_item_table_td {
  width: 70%;
}
.service_list_item_table_td:nth-child(2n) {
  width: 30%;
  padding-left: 25px;
}
@media (min-width: 1310px) {
  .service_list_item_table_td {
    width: 50%;
  }
  .service_list_item_table_td:nth-child(2n) {
    width: 50%;
    padding-left: 25px;
  }
}
.service_list_item_table_td__bd {
  border-left: 1px solid #cccccc;
}
.b-social_wrap {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
}
.b-social_wrap__album {
  margin-bottom: 30px;
}
@media (min-width: 1020px) {
  .b-social_wrap {
    padding-bottom: 100px;
  }
  .b-social_wrap__album {
    padding-bottom: 45px;
    padding-top: 38px;
    margin-bottom: 0;
  }
}
.b-social {
  background: #eef3f4;
  padding: 36px 0 32px;
  text-align: center;
  padding: 20px 20px 8px 20px;
}
.b-social .facts_social_item {
  display: block;
  width: 160px;
  margin-bottom: 12px;
}
.b-social .facts_social_item:not(:last-child) {
  margin-right: 12px;
}

@media (min-width: 1020px) {
  .b-social {
    margin: 0 auto;
  }
  .b-social .facts_social_item {
    display: inline-block;
    width: auto;
  }
}
.social-btn_mini {
  display: inline-block;
  width: 33px;
  height: 33px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: url('../img/facts_social_item.png?v=5') 0 0 no-repeat;
  background-size: 25px auto;
  vertical-align: middle;
}
.social-btn_mini:not(:last-child) {
  margin-right: 9px;
}
.social-btn_mini__fb {
  background-position: 50% 0px;
}
.social-btn_mini__tw {
  background-position: 50% -33px;
}
.social-btn_mini__pt {
  background-position: 50% -66px;
}
.social-btn_mini__vk {
  background-position: 50% -99px;
}
.social-btn_mini__ig {
	background-position: 50% -132px;
}
.social-btn_mini__yt {
	background-position: 50% -165px;
}
.social-btn_mini__tg {
	background-position: 50% -198px;
}
.social-btn_mini__rss {
	background-position: 50% -231px;
}
.social-btn_mini__ok {
	background-position: 50% -264px;
}
.social-btn_mini__dz {
  background-position: 50% -297px;
}
.objects-gallery-search {
  padding: 20px 30px 20px 30px;
  overflow: hidden;
  position: relative;
}
.objects-gallery {
  padding: 6px 30px 46px 30px;
  overflow: hidden;
  position: relative;
}
.objects-gallery_wrap {
  position: relative;
  width: 99999px;
}
.objects-gallery_list {
  width: 99999px;
  position: relative;
  z-index: 1;
  *zoom: 1;
}
.objects-gallery_list:before,
.objects-gallery_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.objects-gallery_list:after {
  clear: both;
}
.objects-gallery_item {
  display: block;
  width: 252px;
  height: 252px;
  position: relative;
  margin-right: 29px;
  float: left;
}
.objects-gallery_item img {
  max-width: 100%;
}
.objects-gallery_item__video:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/objects-gallery_item_overlay.png") 50% 50% no-repeat;
}
.objects-gallery_ctrl__next {
  display: none;
  position: absolute;
  top: 6px;
  right: -30px;
  width: 100px;
  height: 252px;
  cursor: pointer;
  z-index: 1;
}
.objects-gallery_ctrl__prev {
  display: none;
  position: absolute;
  top: 6px;
  left: 0;
  width: 100px;
  height: 252px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 1;
}
@media (min-width: 1020px) {
  .objects-gallery_ctrl__next {
    display: block;
  }
  .objects-gallery_ctrl__prev {
    display: block;
  }
}
.objects-section {
  margin-bottom: 60px;
}
.objects-section:last-child {
  margin-bottom: 0;
}
.objects-section_footer {
  background: #009ad2;
  padding-bottom: 33px;
}
.objects-section_footer__ticket {
  background: #90794b;
}
@media (min-width: 1020px) {
  .objects-section_footer {
    *zoom: 1;
    padding-bottom: 0;
    background: url("/assets/img/objects-section_footer.jpg") 0 0 repeat;
  }
  .objects-section_footer:before,
  .objects-section_footer:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .objects-section_footer:after {
    clear: both;
  }
  .objects-section_footer__ticket {
    background: url("/assets/img/objects-section_footer__ticket.jpg") 0 0 repeat;
  }
}
.objects-section_footer_icon {
  width: 100%;
  height: 100px;
}
@media (min-width: 1020px) {
  .objects-section_footer_icon {
    width: 100px;
    height: 100px;
    float: left;
  }
}
.objects-section_footer_icon__dan {
  background: url("/assets/img/objects-section_footer_icon_dan.png") 50% 50% no-repeat;
}
.objects-section_footer_icon__ticket {
  background: url("/assets/img/objects-section_footer_icon__ticket.png") 50% 50% no-repeat;
}
.objects-section_footer_desc {
  padding: 0;
  text-align: center;
}
@media (min-width: 1020px) {
  .objects-section_footer_desc {
    float: left;
    padding: 17px 0 0;
    text-align: left;
  }
}
.objects-section_footer_desc_header {
  font-family: 'PT Serif', serif;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 5px;
}
@media (min-width: 1310px) {
  .objects-section_footer_desc_header {
    font-size: 28px;
    line-height: 33px;
  }
}
.objects-section_footer_desc_info {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  line-height: 18px;
}
@media (min-width: 1310px) {
  .objects-section_footer_desc_info {
    font-size: 18px;
    line-height: 22px;
  }
}
.objects-section_footer_desc_info_item {
  margin-bottom: 3px;
  list-style: none;
}
.objects-section_footer_desc_info_item a {
  color: #ffffff;
  text-decoration: underline;
}
.objects-section_footer_desc_info_item a:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (min-width: 1310px) {
  .objects-section_footer_desc_info_item {
    position: relative;
    display: block;
    padding-left: 16px;
    margin-right: 22px;
    margin-bottom: 0;
  }
  .objects-section_footer_desc_info_item:after {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #ffffff;
  }
  .objects-section_footer_desc_info_item a {
    color: #ffffff;
    text-decoration: underline;
  }
  .objects-section_footer_desc_info_item a:hover {
    color: #ffffff;
    text-decoration: none;
  }
}
.objects-mode_content-list {
  *zoom: 1;
  padding-top: 12px;
}
.objects-mode_content-list:before,
.objects-mode_content-list:after {
  display: table;
  content: "";
  line-height: 0;
}
.objects-mode_content-list:after {
  clear: both;
}
.objects-mode_content-item {
  width: 100%;
  margin-bottom: 32px;
}
@media (min-width: 1020px) {
  .objects-mode_content-item {
    float: left;
    width: 50%;
    *zoom: 1;
    margin-bottom: 0;
  }
  .objects-mode_content-item:before,
  .objects-mode_content-item:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .objects-mode_content-item:after {
    clear: both;
  }
}
.objects-mode_content-item_icon {
  width: 100%;
  height: 60px;
  background: 50% 0 no-repeat;
  margin-bottom: 10px;
}
@media (min-width: 1020px) {
  .objects-mode_content-item_icon {
    width: 70px;
    height: 60px;
    float: left;
    margin-bottom: 0;
    background: 0 0 no-repeat;
  }
}
.objects-mode_content-item_icon__time {
  background-image: url("/assets/img/objects-mode_content-item_icon__time.png");
}
.objects-mode_content-item_icon__ticket {
  background-image: url("/assets/img/objects-mode_content-item_icon__ticket.png");
}
.objects-mode_content-item_info {
  text-align: center;
}
@media (min-width: 1020px) {
  .objects-mode_content-item_info {
    float: left;
    width: 330px;
    padding-left: 17px;
    text-align: left;
  }
}
@media (min-width: 1310px) {
  .objects-mode_content-item_info {
    width: 460px;
  }
}
.objects-mode_content-item_info_header {
  font-family: 'PT Serif', serif;
  font-size: 22px;
  color: #000;
  line-height: 28px;
  margin-bottom: 25px;
}
@media (min-width: 1020px) {
  .objects-mode_content-item_info_header {
    margin-bottom: 19px;
  }
}
@media (min-width: 1310px) {
  .objects-mode_content-item_info_header {
    font-size: 28px;
    line-height: 33px;
  }
}
.objects-mode_content-item_info_text {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #004b87;
}
.objects-cost_content-list {
  text-align: center;
}
@media (min-width: 1020px) {
  .objects-cost_content-list {
    text-align: left;
  }
}
.objects-cost_content-item {
  position: relative;
  font-family: 'PT Serif', serif;
  font-size: 22px;
  line-height: 30px;
  color: #000;
  text-align: center;
  margin-bottom: 32px;
  display: inline-block;
}
@media (min-width: 1020px) {
  .objects-cost_content-items_wrap {
    display:table;
    table-layout: fixed;
    width:100%;
    border-collapse: separate;

  }
  .objects-cost_content-item-wrap {
    display: table-cell;
    margin-right: 20px;
  }
  .objects-cost_content-item-wrap:last-child {
    padding-left: 50px;
  }
  .objects-cost_content-item {
    position: relative;
    padding-left: 34px;
    text-align: left;
    margin-bottom: 0;
  }
  .objects-cost_content-item:after {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    background: #004b87;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    top: 13px;
    left: 0;
  }
  .objects-cost_content-item:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1310px) {
  .objects-cost_content-item {
    font-size: 28px;
    line-height: 42px;
    margin-right: 50px;
  }
}
.objects-cost_content-item_header {
  display:inline-block;
  color: #004b87;
}
.objects-cost_content-item_header span {
  color: #000;
}
.objects-cost_content-item__info {
  width: 26px;
  height: 26px;
  position: absolute;
  background: url("/assets/img/objects-cost_content-item__info.png") 0 0 no-repeat;
  top: 4px;
}
@media (min-width: 1310px) {
  .objects-cost_content-item__info {
    top: 10px;
  }
}
.object-gallery {
  margin: 0;
  overflow: hidden;
  padding: 62px 15px 45px;
}
@media (min-width: 1020px) {
  .object-gallery {
    margin: 0 0 0 40px;
    padding: 83px 0 85px;
  }
}
@media (min-width: 1310px) {
  .object-gallery {
    margin: 0 0 0 180px;
  }
}
.header-slider {
  position: relative;
  background: url("/assets/img/header-slider.jpg") 50% 0 no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 26px 0 24px;
}
@media (min-width: 1020px) {
  .header-slider {
    padding: 180px 0 54px;
  }
}
.header-slider_shadow {
  position: absolute;
  background: url("/assets/img/header-slider_shadow.png") 50% 0;
  width: 100%;
  height: 721px;
  bottom: 0;
}
.header-slider_content {
  position: relative;
  text-align: center;
  padding: 0 15px;
}
@media (min-width: 1020px) {
  .header-slider_content {
    width: 820px;
    margin: 0 auto;
    padding: 0;
  }
}
.header-slider_content_logo {
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 1020px) {
  .header-slider_content_logo {
    display: none;
  }
}
.header-slider_content_header {
  font-family: 'PT Serif', serif;
  font-size: 28px;
  line-height: 34px;
  color: #ffffff;
  margin-bottom: 23px;
}
@media (min-width: 1020px) {
  .header-slider_content_header {
    font-size: 48px;
    line-height: 54px;
    margin-bottom: 33px;
  }
}
.header-slider_content_slider {
  position: relative;
  padding: 0 30px;
}
@media (min-width: 1020px) {
  .header-slider_content_slider {
    padding: 0;
  }
}
.header-slider_content_slider_ctrl {
  position: absolute;
  top: 34px;
  width: 22px;
  height: 41px;
  cursor: pointer;
}
.header-slider_content_slider_ctrl__next {
  background: url("/assets/img/header-slider_content_slider_ctrl__next.png") 0 0 no-repeat;
  right: 0;
}
.header-slider_content_slider_ctrl__prev {
  background: url("/assets/img/header-slider_content_slider_ctrl__prev.png") 0 0 no-repeat;
  left: 0;
}
@media (min-width: 1020px) {
  .header-slider_content_slider_ctrl__next {
    right: -14px;
  }
  .header-slider_content_slider_ctrl__prev {
    left: -14px;
  }
}
@media (min-width: 1310px) {
  .header-slider_content_slider_ctrl__next {
    right: -44px;
  }
  .header-slider_content_slider_ctrl__prev {
    left: -44px;
  }
}
.header-slider_content_slider_list-wrap {
  overflow: hidden;
  margin-bottom: 33px;
}
@media (min-width: 1020px) {
  .header-slider_content_slider_list-wrap {
    width: 820px;
    margin-bottom: 63px;
  }
}
.header-slider_content_slider_list {
  width: 9999px;
  *zoom: 1;
}
.header-slider_content_slider_list:before,
.header-slider_content_slider_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.header-slider_content_slider_list:after {
  clear: both;
}
.header-slider_content_slider_item {
  font-family: 'PT Serif', serif;
  float: left;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
}
@media (min-width: 1020px) {
  .header-slider_content_slider_item {
    font-size: 22px;
    line-height: 33px;
    width: 820px;
  }
}
.header-slider_content_timeline_list {
  *zoom: 1;
  width: 9999px;
  position: relative;
  left: 50%;
  margin-left: -105px;
}
.header-slider_content_timeline_list:before,
.header-slider_content_timeline_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.header-slider_content_timeline_list:after {
  clear: both;
}
.header-slider_content_timeline_item_line {
  position: relative;
}
.header-slider_content_timeline_item_line:after {
  content: '';
  width: 90px;
  height: 1px;
  background: #9d9d9e;
  position: absolute;
  right: 0;
  top: -16px;
}
.header-slider_content_timeline_item_line:before {
  content: '';
  width: 90px;
  height: 1px;
  background: #9d9d9e;
  position: absolute;
  left: 0;
  top: -16px;
}
.header-slider_content_timeline_item {
  position: relative;
  width: 210px;
  float: left;
  text-align: center;
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  padding: 22px 0 0;
  cursor: pointer;
}
.header-slider_content_timeline_item:after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ffffff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  top: 0;
  left: 50%;
  margin-left: -6px;
}
.header-slider_content_timeline_item.active {
  color: #ffc560;
}
.header-slider_content_timeline_item.active:after {
  background: #ffc560;
}
.header-slider_content_timeline_item:first-child .header-slider_content_timeline_item_line:before {
  background: transparent;
}
.header-slider_content_timeline_item:last-child .header-slider_content_timeline_item_line:after {
  background: transparent;
}
.header-slider_content_link-video-wrap {
  margin-bottom: 90px;
  display: none;
}
.header-slider_content_link-video-wrap span {
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  border-bottom: 1px dashed #ffffff;
}
@media (min-width: 1020px) {
  .header-slider_content_link-video-wrap {
    display: block;
  }
}
.header-slider_content_link-video_icon {
  display: inline-block;
  width: 44px;
  height: 44px;
  border: 1px solid #785f08;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  border-radius: 34px;
  background: url("/assets/img/header-slider_content_link-video_icon.png") 50% 50% no-repeat;
  vertical-align: middle;
  margin-right: 11px;
}
@media (max-width: 1310px)
{
  .events .cal_list :nth-of-type(1n+6) {display: none;}
}
@media (max-width: 1020px)
{
  .events .cal_list :nth-of-type(1n+4) {display: none;}
}
.cal_list {
  *zoom: 1;
  width: 100%;
  padding: 0 15px;
  overflow: hidden;
}
.cal_list:before,
.cal_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.cal_list:after {
  clear: both;
}
.cal_list_item {
  display: block;
  width: 100%;
  height: 480px;
  margin: 0 0 20px;
  text-decoration: none;
}
.cal_list_item:hover {
  text-decoration: none;
}
.cal_list_item:focus {
  text-decoration: none;
}
@media (min-width: 1020px) {
  .cal_list {
    width: 890px;
    margin-left: -22px;
    padding: 0;
  }
  .cal_list_item {
    float: left;
    width: 252px;
    height: 480px;
    margin: 0 22px 30px;
  }
  .cal_list_item__double {
    width: 546px;
  }
  .cal_list_item__double .cal_list_item_info_content {
    font-size: 28px;
  }
}
@media (min-width: 1310px) {
  .cal_list {
    width: 1130px;
    margin-left: -15px;
  }
  .cal_list_item {
    margin: 0 15px 30px;
  }
  .cal_list_item__double {
    width: 534px;
  }
}
.cal_list_item__black .cal_list_item_info {
  background: #000000;
}
.cal_list_item__aqua .cal_list_item_info {
  background: #00a9e0;
}
.cal_list_item__yellow .cal_list_item_info {
  background: #daaa00;
}
.cal_list_item__blue .cal_list_item_info {
  background: #004b87;
}
.cal_list_item__brown .cal_list_item_info {
  background: #897449;
}
.cal_list_item_img {
  height: 240px;
  overflow: hidden;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.cal_list_item_img img {
  max-width: 100%;
}
.cal_list_item_info {
  height: 240px;
  background: #e0364c;
  color: #ffffff;
  padding: 19px 0 0;
}
.cal_list_item_info_header_data {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 6px;
}
.cal_list_item_info_header_place {
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
}
.cal_list_item_info_header {
  border-bottom: 1px solid rgba(190, 190, 190, 0.2);
  padding: 0 12px 17px;
}
.cal_list_item_info_content {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 22px;
  padding: 12px 12px 0;
}
.cal-more {
  background: #eef3f4;
  text-align: center;
  padding: 19px 0 22px;
}
.cal-more_link {
  font-family: 'PT Sans', sans-serif;
  color: #666666;
  font-size: 22px;
  line-height: 22px;
  border-bottom: 1px dashed #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cal-more_link:hover {
  border-bottom: 1px dashed transparent;
  text-decoration: none;
}
.cal-social {
  background: #eef3f4;
  text-align: center;
  padding: 26px 0 33px;
  margin-bottom: 27px;
  display: none;
}
.cal-social span {
  display: inline-flex;
  font-family: 'PT Serif', serif;
  font-size: 21px;
  line-height: 21px;
  vertical-align: middle;
  color: #000000;
  margin-right: 30px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.cal-social div {
  display: inline-block;
}
.cal-social a {
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 10px;
}
.cal-social a:not(:last-child) {
  text-transform: uppercase;
  margin-right: 10px;
}
.cal-social__news {
  display: block;
}
.cal-social__news span {
  display: block;
  margin-bottom: 28px;
  margin-right: 0;
}
.cal-social__news .facts_social_item {
  width: 160px;
}
.cal-social__news .cal-social__news-wrap {
  margin-bottom: 16px;
}
@media (min-width: 1020px) {
  .cal-social {
    display: block;
  }
  .cal-social__news .facts_social_item {
    width: auto;
  }
  .cal-social__news .cal-social__news-wrap {
    display: inline-block;
    margin-bottom: 0;
  }
  .cal-social__news span {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 30px;
  }
}
.cal-social__mus-press span {
  display: block;
  
}
@media (min-width: 1020px) {
  .cal-social__mus-press span {
    position: relative;
  }
}
@media (min-width: 1310px) {
  .cal-social__mus-press span {
    display: inline-block;
  }
}
.event_header {
  background: #000000 50% 0 no-repeat;
  background-size: cover;
  text-align: center;
  padding: 32px 15px 41px;
}
.event_header_l-col {
  margin-bottom: 16px;
}
.event_header_r-col {
  margin-bottom: 52px;
}
@media (min-width: 1020px) {
  .event_header {
    height: 359px;
    *zoom: 1;
    text-align: left;
    padding: 0;
  }
  .event_header:before,
  .event_header:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .event_header:after {
    clear: both;
  }
  .event_header_l-col {
    float: left;
    position: relative;
    width: 630px;
    height: 359px;
    padding: 45px 70px 64px 30px;
    margin-bottom: 0;
  }
  .event_header_r-col {
    float: left;
    width: 270px;
    height: 359px;
    background: rgba(255, 255, 255, 0.8);
    padding: 45px 30px 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1310px) {
  .event_header_l-col {
    width: 850px;
    padding: 45px 270px 64px 30px;
  }
  .event_header_r-col {
    width: 330px;
  }
}
.event_header_head {
  margin: 0;
  font-weight: normal;
  font-family: 'PT Serif', serif;
  font-size: 28px;
  line-height: 33px;
  color: #ffffff;
}
.event_header_desc {
  display: none;
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 30px;
  color: #ffffff;
}
.event_header_data {
  font-family: 'PT Serif', serif;
  color: white;
  font-size: 18px;
  line-height: 22px;
}
.event_header_info {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 22px;
  color: white;
}
@media (min-width: 1020px) {
  .event_header_head {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 20px;
  }
  .event_header_desc {
    display: block;
  }
  .event_header_data {
    color: #000;
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 20px;
  }
  .event_header_info {
    font-size: 21px;
    line-height: 30px;
    color: #000;
  }
}
.event_content {
  *zoom: 1;
  background: #ffffff;
  padding: 21px 0 0;
}
.event_content:before,
.event_content:after {
  display: table;
  content: "";
  line-height: 0;
}
.event_content:after {
  clear: both;
}
.event_content_l-col p {
  padding: 0 15px;
}
.event_content_r-col {
  background: #f4f9fa;
  text-align: center;
  padding: 18px 15px 30px;
}
@media (min-width: 1020px) {
  .event_content_l-col {
    float: left;
    width: 850px;
    padding: 0 0 0 30px;
  }
  .event_content_l-col p {
    padding: 0 0;
  }
  .event_content_r-col {
    float: left;
    width: 100%;
    padding: 0 60px 0 30px;
    background: transparent;
    text-align: left;
  }
}
@media (min-width: 1310px) {
  .event_content_r-col {
    width: 330px;
  }
}
.event_news_header {
  font-family: 'PT Serif', serif;
  font-size: 28px;
  line-height: 33px;
  color: #e0364c;
  margin-bottom: 16px;
}
.event_news_item {
  margin-bottom: 25px;
}
@media (min-width: 1020px) {
  .event_news_item {
    width: 240px;
  }
}
.event_news_item_data {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 21px;
  color: #004b87;
  margin-bottom: 6px;
}
.event_news_item_header {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  line-height: 21px;
  margin-bottom: 13px;
}
.event_news_item_info {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
}
.event_header_soc {
  display: none;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.event_header_soc-mobile {
  display: block;
}
@media (min-width: 1020px) {
  .event_header_soc {
    display: block;
  }
  .event_header_soc-mobile {
    display: none;
  }
}
.museum-info {
  *zoom: 1;
}
.museum-info:before,
.museum-info:after {
  display: table;
  content: "";
  line-height: 0;
}
.museum-info:after {
  clear: both;
}
.museum-info_appeal {
  float: left;
  background: url("/assets/img/museum-info_appeal.jpg") 50% 0 no-repeat;
  width: 100%;
  height: 322px;
  font-family: 'PT Serif', serif;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
  text-align: center;
  padding: 150px 40px 0;
  background-size: cover;
  cursor: pointer;
}
@media (min-width: 1020px) {
  .museum-info_appeal {
    width: 50%;
    font-size: 28px;
    line-height: 33px;
  }
}
@media (min-width: 1310px) {
  .museum-info_appeal {
    padding-top: 180px;
  }
}
.museum-info_info {
  margin-bottom: 13px;
}
.museum-info_counts {
  float: left;
  background: url("/assets/img/museum-info_counts.jpg") 0 0 repeat;
  width: 100%;
  height: 322px;
  text-align: center;
  padding: 30px 0 0;
}
.museum-info_counts .bx-controls .bx-controls-direction a {
  width: 24px;
  height: 47px;
  background: url("/assets/img/museum-info_slider_ctrl.png") 0 0 no-repeat;
  margin-top: -45px;
}
.museum-info_counts .bx-controls .bx-controls-direction .bx-prev {
  left: 15px;
}
.museum-info_counts .bx-controls .bx-controls-direction .bx-next {
  background-position: -24px 0;
  right: 15px;
}
@media (min-width: 1020px) {
  .museum-info_counts {
    width: 50%;
  }
  .museum-info_counts .bx-controls .bx-controls-direction .bx-prev {
    left: 50px;
  }
  .museum-info_counts .bx-controls .bx-controls-direction .bx-next {
    right: 50px;
  }
}
.museum-info_slider_header {
  font-family: 'PT Serif', serif;
  font-size: 28px;
  line-height: 33px;
  color: #ffffff;
  margin-bottom: 30px;
}
.museum-info_slider_count {
  font-family: 'PT Serif', serif;
  font-size: 58px;
  line-height: 62px;
  color: #080600;
  margin-bottom: 12px;
}
.museum-info_slider_desc {
  font-family: 'PT Serif', serif;
  font-size: 25px;
  line-height: 20px;
  color: #000000;
}
@media (min-width: 1020px) {
  .museum-info_slider_desc {
    font-size: 36px;
    /* //line-height: 36px; */
  }
}
.museum-info_slider {
  margin: 0;
  padding: 0;
}
.museum-info_slider_img {
  margin-bottom: 23px;
}
.museum-info_slider_img img {
  display: inline-block;
}
.museum-press {
  background: #ffffff;
  padding: 36px 15px;
}
@media (min-width: 1020px) {
  .museum-press {
    padding: 36px 30px 0 30px;
  }
}
@media (min-width: 1310px) {
  .museum-press {
    padding: 36px 50px 0 30px;
  }
}
.museum-press_list {
  *zoom: 1;
  padding-top: 5px;
  padding-top: 10px;
}
.museum-press_list:before,
.museum-press_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.museum-press_list:after {
  clear: both;
}
.museum-press_list_item {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1020px) {
  .museum-press_list_item {
    display: inline-block;
    text-align: left;
    width: 185px;
    margin-right: 25px;
    margin-bottom: 70px;
    vertical-align: top;
  }
}
@media (min-width: 1310px) {
  .museum-press_list_item {
    width: 250px;
  }
}
.museum-press_list_item_data {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 18px;
  color: #004b87;
  margin-bottom: 3px;
}
.museum-press_list_item_header {
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 4px;
}
@media (min-width: 1020px) {
  .museum-press_list_item_header {
    font-size: 18px;
    line-height: 22px;
  }
}
.museum-press_list_item_info {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: #666666;
  line-height: 21px;
  margin-bottom: 7px;
}
.museum-press_list_item_info_link-more a {
  color: #666666;
  border-bottom: 1px dotted #666666;
}
.museum-press_list_item_info_link-more a:hover {
  text-decoration: none;
  border-bottom: 1px dotted transparent;
}
.museum-press_list_item_link a {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: #004b87;
  line-height: 21px;
  text-decoration: underline;
}
.museum-press_list_item_link a:hover {
  text-decoration: none;
}
.faq_filter {
  overflow: hidden;
}
.faq_filter_list {
  margin: 0;
  padding: 0;
  *zoom: 1;
  margin-bottom: 35px;
  padding-top: 27px;
  width: 100%;
}
.faq_filter_list:last-child {
  margin-top: 0px;
}
.faq_filter_list:before,
.faq_filter_list:after {
  display: table;
  content: "";
  line-height: 0;
}
.faq_filter_list:after {
  clear: both;
}
.faq_filter_list_item {
  list-style: none;
  float: left;
  margin-right: 11px;
  margin-bottom: 6px;
}
.faq_list_item {
  background: #eef3f4;
  padding: 22px 30px 26px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 22px;
}
.faq_list_item_name {
  font-family: 'PT Serif', serif;
  color: #0099cc;
  margin-bottom: 15px;
}
.faq_list_item_question {
  font-family: 'PT Serif', serif;
  color: #333333;
  margin-bottom: 30px;
}
.faq_list_item_reply {
  display: none;
  position: relative;
  font-family: 'PT Serif', serif;
  font-style: italic;
  color: #004b87;
  margin-bottom: 30px;
  padding-left: 25px;
}
.faq_list_item_reply:after {
  content: '';
  position: absolute;
  width: 11px;
  height: 100%;
  background: #0099cc;
  top: 0;
  left: 0;
}
.faq_list_item_reply.active {
  display: block;
}
@media (min-width: 1020px) {
  .faq_list_item {
    font-size: 22px;
    line-height: 33px;
  }
  .faq_list_item_reply {
    padding-left: 40px;
  }
}
.faq_filter__no-hide .faq_filter_list {
  width: 100%;
  margin-bottom: 25px;
}
.faq_filter__no-hide .faq_filter_list_item {
  margin-bottom: 10px;
}
.faq_list_item_link-hidden a {
  font-family: 'PT Serif', serif;
  font-size: 22px;
  line-height: 33px;
  color: #666666;
  text-decoration: none;
  border-bottom: 1px dotted #666666;
}
.faq_list_item_link-hidden a:hover {
  border-bottom: 1px dotted transparent;
}
.faq_form_content {
  background: #eef3f4;
  padding: 30px 32px 60px;
  margin-top: 24px;
}
.contacts-list, .contacts-list_search {
  padding-top: 32px;
  text-align: center;
}

@media (min-width: 1020px) {
  .contacts-list, .contacts-list_search {
    width: 870px;
    *zoom: 1;
    margin-left: -15px;
  }

  .contacts-list:before,
  .contacts-list:after,
  .contacts-list_search:before,
  .contacts-list_search:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .contacts-list:after,
  .contacts-list_search:after {
    clear: both;
  }
}
@media (min-width: 1310px) {
  .contacts-list {
    width: 1130px;
  }
}
.contacts-list_item {
  background: #eef3f4;
  padding: 23px 21px 0;
  width: 260px;
  height: 240px;
  margin: 0 15px 33px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
@media (min-width: 1020px) {
  .contacts-list_item {
    width: 260px;
    height: 240px;
    margin: 0 15px 33px;
    float: left;
    padding: 23px 14px 0;
  }
}
@media (min-width: 1310px) {
  .contacts-list_item {
    width: 252px;
  }
}
.contacts-list_item_job-title {
  font-family: 'PT Serif', serif;
  font-size: 14px;
  line-height: 16px;
  color: #cc3333;
  height: 64px;
}
.contacts-list_item_name {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 22px;
  color: #333333;
  height: 54px;
}
.contacts-list_item_phone {
  font-family: 'PT Serif', serif;
  font-size: 14px;
  line-height: 20px;
  color: #004b87;
  height: 45px;
}
.contacts-list_item_email {
  font-family: 'PT Serif', serif;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
}
.header-contacts_map {
  height: 359px;
}
#map-contacts {
  width: 100%;
  height: 100%;
  background: #666;
}
.header-contacts_info {
  background: #00a9e0;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding: 22px 0 24px;
}
.header-contacts-col {
  padding: 0 21px;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1020px) {
  .header-contacts_info {
    *zoom: 1;
    padding: 22px 0 54px;
    font-size: 22px;
    line-height: 33px;
  }
  .header-contacts_info:before,
  .header-contacts_info:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .header-contacts_info:after {
    clear: both;
  }
  .header-contacts-col {
    width: 50%;
    float: left;
    padding: 0 0 0 25px;
    text-align: left;
    margin-bottom: 30px;
  }
}
@media (min-width: 1310px) {
  .header-contacts-col {
    padding-left: 32px;
  }
}
.header-contacts_header {
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 10px;
}
.header-contacts_text {
  margin-bottom: 10px;
}
.header-contacts_links a {
  color: #004b87;
  text-decoration: underline;
}
.header-contacts_links a:hover {
  text-decoration: none;
}
@media (min-width: 1020px) {
  .header-contacts_header {
    font-size: 38px;
    line-height: 38px;
    height: 58px;
    margin-bottom: 0;
  }
  .header-contacts_text {
    min-height: 80px;
    margin-bottom: 0;
  }
}
.other-news .page-header {
  margin-bottom: 46px;
}
.other-news .museum-press_list_item {
  margin-bottom: 30px;
}
.post-slider_header {
  font-family: 'PT Serif', serif;
  font-size: 22px;
  color: #e0364c;
  text-align: center;
  margin-bottom: 20px;
}
.post-slider_header span {
  color: #999999;
  text-decoration: underline;
}
@media (min-width: 1020px) {
  .post-slider_header {
    font-size: 28px;
  }
}
.post-slider {
  margin: 0;
  padding: 0;
}
.post-slider .bx-controls-direction a {
  width: 22px;
  height: 42px;
  background-image: url('../img/facts_slider_ctrl.png');
}
.post-slider li {
  list-style: none;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.post-slider li.active {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.post-slider li img {
  margin-bottom: 0;
}
.post-slider_wrap {
  overflow: hidden;
  width: 100%;
  padding: 0 0 60px;
}
.post-slider_wrap .bx-viewport {
  overflow: visible !important;
}
.post-slider_wrap .bx-controls-direction a {
  width: 22px;
  height: 42px;
  background-image: url('../img/facts_slider_ctrl.png');
}
.post-slider_wrap .bx-controls-direction a:hover {
  background-position: 0 0;
}
.post-slider_wrap .bx-controls-direction .bx-next {
  background-position: -22px 0;
}
.post-slider_wrap .bx-controls-direction .bx-next:hover {
  background-position: -22px 0;
}
.post-slider_wrap .bx-pager {
  bottom: auto;
}
.post-slider_wrap .bx-pager.bx-default-pager a {
  width: 14px;
  height: 14px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  border: 1px solid #4fb3d4;
  background: transparent;
}
.post-slider_wrap .bx-pager.bx-default-pager a.bx-pager-link.active {
  background: #4fb3d4;
}
.post-slider_wrap .bx-pager.bx-default-pager a:hover {
  background: #4fb3d4;
}
@media (min-width: 1020px) {
  .post-slider_wrap {
    width: 900px;
    margin-left: -40px;
    padding: 0 40px 60px;
  }
}
@media (min-width: 1310px) {
  .post-slider_wrap {
    width: 1180px;
    margin-left: -180px;
    padding: 0 180px 60px;
  }
}
.header-menu__news-post .header-menu_footer_item {
  display: inline-block;
  margin: 0;
}
.header-menu__news-post .header-menu_date {
  display: none;
}
.header-menu__news-post .header-menu_info {
  display: none;
}
.header-menu__news-post {
  display: flex;
}
@media (min-width: 1020px) {
  .header-menu__news-post {
    padding-top: 15px;
  }
  .header-menu__news-post .header-menu_date {
    display: block;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    text-align: center;
    color: white;
    margin-bottom: 8px;
  }
  .header-menu__news-post .header-menu_info {
    display: block;
    font-size: 21px;
    color: #ffffff;
    text-align: center;
    padding: 0 40px;
    line-height: 30px;
    margin-bottom: 0px;
  }
  .header-menu__news-post .header-menu_header {
    padding: 0 40px;
    margin-bottom: 23px;
  }
}
@media (min-width: 1310px) {
  .header-menu__news-post .header-menu_info {
    padding: 0 180px;
  }
  .header-menu__news-post .header-menu_header {
    padding: 0 180px;
  }
}
.suppot-buttons_item {
  background: url("/assets/img/suppot-buttons_item__red.jpg") 0 0 repeat;
  height: 150px;
  color: #ffffff;
  text-align: center;
  line-height: 150px;
  font-family: 'PT Serif', serif;
  font-size: 32px;
}
.suppot-buttons_item__yellow {
  background: url("/assets/img/suppot-buttons_item__yellow.jpg") 0 0 repeat;
}
.suppot-buttons_item__blue {
  background: url("/assets/img/suppot-buttons_item__blue.jpg") 0 0 repeat;
}
.suppot-buttons_item__aqua {
  background: url("/assets/img/suppot-buttons_item__aqua.jpg") 0 0 repeat;
}
@media (min-width: 1020px) {
  .suppot-buttons {
    *zoom: 1;
  }
  .suppot-buttons:before,
  .suppot-buttons:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .suppot-buttons:after {
    clear: both;
  }
  .suppot-buttons_item {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1310px) {
  .suppot-buttons_item {
    width: 25%;
    height: 267px;
    line-height: 267px;
  }
}
.support-info {
  background: #eef3f4;
  padding: 25px 32px 37px;
}
.support-info_item {
  margin-bottom: 15px;
}
.support-info_item:last-child {
  margin-bottom: 0;
}
.support-info_item_header {
  color: #004b87;
  margin-right: 10px;
}
.support-info_item_info {
  color: #333333;
}
.support-info_item__phone .support-info_item_header {
  display: inline-block;
}
.support-info_item__phone .support-info_item_info {
  display: inline-block;
}
.support-info_item__email .support-info_item_header {
  display: inline-block;
}
.support-info_item__email .support-info_item_info {
  display: inline-block;
}
@media (min-width: 1020px) {
  .support-info_item {
    margin-bottom: 0;
  }
  .support-info_item:first-child {
    margin-bottom: 15px;
  }
  .support-info_item .support-info_item_header {
    margin-right: 10px;
  }
  .support-info_item__phone {
    display: inline-block;
    margin-right: 90px;
  }
  .support-info_item__email {
    display: inline-block;
  }
}
.report-activities-wrap {
  background: #e4eaeb;
  padding: 13px 14px 0;
  margin-bottom: 55px;
}
.report-activities-wrap__link {
  margin-bottom: 25px;
  text-align: center;
}
.report-activities-wrap__link a {
  display: inline-block;
  color: #000;
  text-decoration: underline;
  margin-bottom: 14px;
}
.report-activities-wrap__link a:hover {
  text-decoration: none;
}
.report-activities_link {
  display: inline-block;
  color: #000;
  position: relative;
  line-height: 22px;
  padding-left: 28px;
  margin-bottom: 25px;
}
.report-activities_link:hover {
  color: #000;
}
.report-activities_link:after {
  content: '';
  background: url("/assets/img/report-activities_link_icon.png") 0 0 no-repeat;
  width: 16px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
}
.donate-online {
  margin-bottom: 30px;
}
.donate-online_logo-wrap {
  text-align: center;
  margin-bottom: 17px;
}
.donate-online_logo-wrap img {
  max-width: 50px;
  margin: 0;
}
@media (min-width: 1020px) {
  .donate-online_logo-wrap img {
    margin: 0 17px;
  }
}
.donate-online_form-wrap {
  position: relative;
  background: #eef3f4;
  padding: 25px 30px 30px;
}
.support-card {
  font-family: 'PT Serif', serif;
  color: #333333;
  font-size: 18px;
  line-height: 24px;
  margin: 42px auto 55px;
  width: 254px;
}
.support-card_l-col {
  text-align: center;
}
.support-card_r-col {
  background: #eef3f4;
  padding: 22px 10px 25px;
}
.support-card_name {
  font-size: 20px;
  line-height: 24px;
  color: #e0364c;
  margin-bottom: 9px;
}
.support-card_phone-header {
  font-size: 18px;
  line-height: 22px;
  color: #e0364c;
}
.support-card_email-header {
  font-size: 18px;
  line-height: 22px;
  color: #e0364c;
}
.support-card_info {
  margin-bottom: 20px;
}
.support-card_phone {
  margin-bottom: 20px;
}
@media (min-width: 1020px) {
  .support-card {
    *zoom: 1;
    height: 354px;
    width: auto;
  }
  .support-card:before,
  .support-card:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .support-card:after {
    clear: both;
  }
  .support-card_l-col {
    float: left;
    width: 254px;
    height: 354px;
  }
  .support-card_r-col {
    float: left;
    width: 564px;
    height: 354px;
    padding: 22px 30px 25px;
  }
  .support-card_name {
    font-size: 28px;
    line-height: 33px;
  }
  .support-card_phone-header {
    font-size: 20px;
    line-height: 24px;
  }
  .support-card_email-header {
    font-size: 20px;
    line-height: 24px;
  }
}
.support-salutation {
  background: #eef3f4;
  padding: 24px 30px 50px;
  margin: 50px 0 56px;
}
.support-salutation_signature {
  font-style: italic;
  color: #999999;
}
.frienslist-card {
  text-align: center;
  margin: 80px 0 58px;
}
.frienslist-card_l-col {
  height: 480px;
}
.frienslist-card_r-col {
  background: #eef3f4;
  height: 480px;
  padding: 55px 0 0;
}
.frienslist-card_info {
  background: #004b87;
  height: 176px;
  font-family: 'PT Serif', serif;
  font-size: 22px;
  line-height: 27px;
  color: #ffffff;
  padding: 20px 30px 0;
}
.frienslist-card_info span {
  color: #7dd6f3;
}
.frienslist-card_let {
  margin-bottom: 17px;
}
.frienslist-card_desc {
  font-family: 'PT Serif', serif;
  font-size: 14px;
  color: #000;
}
.frienslist-card_img {
  overflow: hidden;
  width: 100%;
  height: 304px;
  background: url("/assets/img/frienslist-card_img.jpg") 50% 0 no-repeat;
  background-size: cover;
}
@media (min-width: 1020px) {
  .frienslist-card {
    *zoom: 1;
  }
  .frienslist-card:before,
  .frienslist-card:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .frienslist-card:after {
    clear: both;
  }
  .frienslist-card_l-col {
    float: left;
    width: 456px;
    height: 480px;
  }
  .frienslist-card_r-col {
    float: left;
    width: 364px;
    height: 480px;
  }
  .frienslist-card_info {
    text-align: left;
    font-size: 28px;
    line-height: 33px;
  }
  .frienslist-card_img {
    width: 456px;
  }
}
.child-links_col {
  position: relative;
  height: 322px;
  color: #ffffff;
  font-family: 'PT Serif', serif;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  padding-top: 54px;
}
.child-links_col__yellow {
  background: url("/assets/img/suppot-buttons_item__yellow.jpg") 0 0 repeat;
}
.child-links_col__yellow:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("/assets/img/child-links_col__yellow.png") 50% 100% no-repeat;
  top: 0;
  left: 0;
}
.child-links_col__aqua {
  background: url("/assets/img/suppot-buttons_item__aqua.jpg") 0 0 repeat;
}
.child-links_col__aqua:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("/assets/img/child-links_col__aqua.png?v=2") 50% 100% no-repeat;
  top: 0;
  left: 0;
  background-size: auto 75%;
}
.child-links_header {
  position: relative;
}
@media (min-width: 1020px) {
  .child-links {
    *zoom: 1;
  }
  .child-links:before,
  .child-links:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .child-links:after {
    clear: both;
  }
  .child-links_col {
    float: left;
    width: 50%;
  }
}
.child-enum {
  margin: 0 0 30px;
  padding: 0;
}
.child-enum li {
  list-style: none;
  display: inline-block;
}
@media (min-width: 1020px) {
  .child-enum li {
    width: 50%;
  }
}
.child-contact-block {
  background: #eef3f4;
  padding: 28px 30px 40px;
  margin: 15px 0 55px;
}
.child-contact-block_header {
  font-family: 'PT Serif', serif;
  font-size: 28px;
  line-height: 28px;
  color: #e0364c;
}
.child-contact-block_info {
  color: #333333;
  font-size: 16px;
  line-height: 22px;
}
.child-contact-block_info span {
  color: #004b87;
}
.child-contact-block_info .mr20 {
  color: #333333;
  margin-right: 20px;
}
@media (min-width: 1020px) {
  .child-contact-block_info {
    font-size: 22px;
    line-height: 33px;
  }
  .child-contact-block_header {
    font-size: 30px;
    line-height: 33px;
  }
}
.child-img-list {
  text-align: center;
}
.child-img-list_item {
  width: 252px;
  display: inline-block;
  margin: 0 15px 55px;
}
.child-img-list_img {
  display: block;
  width: 252px;
  height: 252px;
  overflow: hidden;
  margin-bottom: 9px;
}
.child-img-list_img img {
  margin: 0;
}
.child-img-list_info {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 22px;
  color: #004b87;
}
.child-img-list_desc {
  font-family: 'PT Sans', sans-serif;
  color: #00a9e0;
  font-size: 14px;
  margin-bottom: 3px;
}
@media (min-width: 1020px) {
  .child-img-list {
    width: 850px;
    margin-left: -15px;
  }
  .child-img-list_item {
    display: inline-block;
    margin: 0 15px 55px;
  }
  .child-img-list_info {
    text-align: left;
  }
  .child-img-list_desc {
    text-align: left;
  }
}
.child-coast-block {
  background: #eef3f4;
  text-align: center;
  padding: 18px 0 24px;
}
.child-coast-block_header {
  font-size: 18px;
  line-height: 22px;
  color: #e0364c;
}
.child-coast-block_info {
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}
@media (min-width: 1020px) {
  .child-coast-block_header {
    font-size: 28px;
    line-height: 33px;
  }
  .child-coast-block_info {
    font-size: 22px;
    line-height: 33px;
  }
}
.child-game_name {
  height: 322px;
  text-align: center;
  background: url("/assets/img/child-game_name.jpg") 0 0 no-repeat;
  background-size: cover;
  padding: 85px 21px 0;
}
.child-game_info {
  font-family: 'PT Serif', serif;
  height: 322px;
  background: #024983;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  padding: 50px 30px 0;
}
.child-game_name_text {
  font-family: 'PT Serif', serif;
  font-size: 38px;
  line-height: 44px;
  color: #ffffff;
  margin-bottom: 10px;
}
.child-game_name_link {
  text-align: center;
}
.child-game_name_link:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (min-width: 1020px) {
  .child-game {
    *zoom: 1;
  }
  .child-game:before,
  .child-game:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .child-game:after {
    clear: both;
  }
  .child-game_name {
    width: 50%;
    float: left;
  }
  .child-game_info {
    width: 50%;
    float: left;
    padding: 100px 30px 0;
  }
}
.child-game-new {
  margin-bottom: 60px;
}
.child-game-new_img {
  height: 280px;
  background: url("/assets/img/child-game-new_img.jpg") 50% 0 no-repeat;
  background-size: cover;
}
.child-game-new_info {
  background: #eef3f4;
  padding: 40px 45px 43px;
}
.child-game-new_header {
  font-family: 'PT Serif', serif;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 24px;
}
.child-game-new_text {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 23px;
}
@media (min-width: 1020px) {
  .child-game-new_header {
    font-size: 38px;
    line-height: 38px;
  }
  .child-game-new_text {
    font-size: 22px;
    line-height: 33px;
  }
}
.seach-result_block_list {
  padding-top: 25px;
  margin-bottom: 60px;
}
.seach-result_block_list_item {
  text-align: center;
  margin-bottom: 30px;
}
.seach-result_block_list_item .child-img-list_img {
  margin: 0 auto 9px;
}
@media (min-width: 1020px) {
  .seach-result_block_list {
    *zoom: 1;
    width: 850px;
    margin-left: -15px;
  }
  .seach-result_block_list:before,
  .seach-result_block_list:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .seach-result_block_list:after {
    clear: both;
  }
  .seach-result_block_list_item {
    width: 252px;
    margin: 0 15px;
    text-align: left;
    float: left;
  }
  .seach-result_block_list_item .child-img-list_img {
    margin: 0 0 9px;
  }
}
.seach-result-null {
  font-family: 'PT Serif', serif;
  color: #666666;
  font-size: 16px;
  line-height: 21px;
  padding-top: 24px;
}
.multimedia_links_item {
  height: 322px;
  position: relative;
  padding-top: 50px;
  cursor: pointer;
}
.multimedia_links_item__video {
  background: url("/assets/img/suppot-buttons_item__blue.jpg") 0 0 repeat;
}
.multimedia_links_item__video:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../img/multimedia_links_item__video.png') 50% 50% no-repeat;
}
.multimedia_links_item__projects {
  position: relative;
  background: url("/assets/img/suppot-buttons_item__aqua.jpg") 0 0 repeat;
}
.multimedia_links_item__projects:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../img/multimedia_links_item__projects.png') 50% 100% no-repeat;
}
.multimedia_links_item__video-page {
  background: 50% 0 no-repeat;
  background-size: cover;
}
.multimedia_links_item__video-page:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../img/multimedia_links_item__video.png') 50% 50% no-repeat;
}
.multimedia_links_item__video-page__1 {
  background-image: url("/assets/img/multimedia_links_item__video-page__1.jpg");
}
.multimedia_links_item__video-page__2 {
  background-image: url("/assets/img/multimedia_links_item__video-page__2.jpg");
}
.multimedia_links_item_info {
  position: relative;
  font-size: 36px;
  font-family: 'PT Serif', serif;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 1020px) {
  .multimedia_links {
    *zoom: 1;
  }
  .multimedia_links:before,
  .multimedia_links:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .multimedia_links:after {
    clear: both;
  }
  .multimedia_links_item {
    width: 50%;
    float: left;
  }
}
.multimedia_list {
  text-align: center;
}
.multimedia_list_item {
  display: inline-block;
  width: 252px;
  margin: 0 20px 40px;
  vertical-align: top;
}
.multimedia_list__pt30 {
  padding-top: 30px;
}
@media (min-width: 1020px) {
  .multimedia_list {
    *zoom: 1;
    width: 870px;
    margin-left: -15px;
    text-align: left;
  }
  .multimedia_list:before,
  .multimedia_list:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .multimedia_list:after {
    clear: both;
  }
  .multimedia_list_item {
    float: left;
    width: 252px;
    height: 420px;
    margin: 0 15px;
  }
  .multimedia_list_item__mini {
    height: 280px;
  }
}
@media (min-width: 1310px) {
  .multimedia_list {
    width: 1130px;
    margin-left: -15px;
  }
}
/* quick styles for small media projects at multimedia/projects */
.small_media_project > p {
  width: 33%;
  float: left;
  padding: 5px;
}
.small_media_project:after, .small_media_project:before {
  clear: both;
  content: " ";
  display: table;
}
.small_media_project a {
  display: block;
  line-height: 1.1em;
}
@media(max-width:400px) {
  .small_media_project a {
    font-size: 14px;
  }
}
.small_media_project img {
  margin-bottom: 10px;
}
.small_media_project em {
  font-size: 14px;
  line-height: 15px;
  display: inline-block;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-counter {
  position: absolute;
  top: 100px;
  left: 50%;
  margin-left: -100px;
  line-height: 18px;
  white-space: nowrap;
  font-family: 'PT Serif', serif;
  color: #666666;
  font-size: 18px;
  width: 200px;
  text-align: center;
}
.mfp-arrow {
  position: absolute;
  margin: 0;
  top: 50%;
  padding: 0;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  padding-bottom: 120px;
}
.mfp-iframe-scaler .mfp-bottom-bar {
  margin-top: -120px;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 30px 150px;
  margin: 0 auto;
}
.mfp-iframe {
  padding: 30px 30px 150px;
  background: url("/assets/img/popup-bg.jpg") 0 0 repeat;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
  background: url("/assets/img/popup-bg.jpg") 0 0 repeat;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
  height: 150px;
  margin-top: -150px;
  background: url("/assets/img/popup-logo.png") 50% 20px no-repeat;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
  padding: 0;
}
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}
.mfp-arrow {
  width: 22px;
  height: 42px;
  margin-top: -21px;
  border: 0;
}
.mfp-arrow:focus {
  outline: none;
}
.mfp-arrow-left {
  background: url("/assets/img/popup-ctrl_prev.png") 0 0 no-repeat;
  left: 20px;
  z-index: 1085;
}
.mfp-arrow-right {
  background: url("/assets/img/popup-ctrl_next.png") 0 0 no-repeat;
  right: 20px;
  z-index: 1085;
}
.mfp-close {
  width: 43px;
  height: 42px;
  border: 0;
  background: url("/assets/img/popup-btn-close.png") 0 0 no-repeat;
  position: absolute;
  top: 0;
  right: 20px;
}
.mfp-close:focus {
  outline: none;
}
.mfp-content {
  padding: 60px 0 0;
}
.mfp-thumb {
  position: absolute;
  top: 20px;
  width: 87px;
  cursor: pointer;
}
.mfp-thumb img {
  max-width: 100%;
}
.mfp-thumb__prev {
  left: 30px;
}
.mfp-thumb__next {
  right: 30px;
}
.white-popup {
  padding: 25px 31px 35px;
  position: relative;
  background: #ffffff url("/assets/img/popup-bg.jpg") 0 0 repeat;
  width: auto;
  max-width: 820px;
  margin: 20px auto;
}
.white-popup .mfp-close {
  top: -60px;
}
.white-popup_header {
  font-family: 'PT Serif', serif;
  font-size: 28px;
  line-height: 33px;
  color: #cc3333;
  margin-bottom: 27px;
}
.white-popup_content {
  font-family: 'PT Serif', serif;
  font-size: 22px;
  line-height: 33px;
  color: #333333;
  margin-bottom: 50px;
}
.white-popup_footer {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 21px;
  color: #004b87;
}
.text-gallery {
  cursor: pointer;
}
.b-concealed.active .b-concealed_body {
  display: block;
}
.b-concealed_body {
  display: none;
}
video::-webkit-media-controls {
    overflow: hidden !important
}
video::-webkit-media-controls-enclosure {
    width: calc(100% + 32px);
    margin-left: auto;
}
.video_html5 {
	width: 100%; 
	height: auto; 
	max-height: 100%;
}

/* Age Of Museums Specials */
@media (min-width: 1020px){
  .aof_promo_wrap .double-slider_bot_item.aom {
      background-color: #ffffff;
      height: 267px;
  }
  .aof_promo_wrap #bm_animation_100, .aof_promo_wrap #bm_static_logo {
      width:90%;
  }
}
@media (max-width: 1019px){
  .aof_promo_wrap #bm_animation_100, .aof_promo_wrap #bm_static_logo {
      left: 50%;
      transform: translate(-50%, 0);
  }

  .aof_promo_wrap .promo-bottom_slider-bot_header {
    color: black;
  }
}
.aof_promo_wrap .aom .promo-bottom_slider-bot_header {
  bottom: 10px;
  left: unset;
}

.aof_promo_wrap .double-slider_bot_item {
  padding: 30px 30px 0
}

.aof_promo_wrap .aom .promo-bottom_slider-bot_info {
  color:#000000;
  font-family: 'PT Sans', sans-serif;
  margin-left:7px;
  margin-top: 7px;
  letter-spacing: 0.005em;
}

.aof_promo_wrap .header-menu_shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 58%, rgba(255,255,255,0.7) 78%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 58%,rgba(255,255,255,0.7) 78%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 58%,rgba(255,255,255,0.7) 78%,rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff00', endColorstr='#ffffff',GradientType=0 );
  background-size: 100% 360px;
  bottom: 0;
  left: 0;
  background-size: cover;
}

.aof_promo_wrap #bm_animation_100, .aof_promo_wrap #bm_static_logo {
  width:90%;
  max-width: 600px;
}

.aof_disabled #bm_static_logo, .aof_disabled #bm_animation_100  {
  display : none;
}

.aof_promo_wrap #promo-bottom_slider-bot_header_text {
  display : none;
}

.aof_promo_wrap .promo-bottom_slider-bot_info a {
  display: block;
}

.plyr {
  max-width: 600px!important;
}

/* global warning */
/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

.header_warn a {
  color: #fff;
  text-decoration: underline;
}
.header_warn { /* text */
  height: 78px;
  background-color: #e0364c;
  position: fixed;
  z-index: 2147483647;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  bottom: -90px;
  width: 100%;
}

.header_warn_close { /* button */
  width: 43px;
  height: 42px;
  border: 0;
  background: url(/assets/img/popup-btn-close.png) 0 0 no-repeat;
  position: fixed;
  z-index: 2147483647;
  bottom: -80px;
  right: 13px;
}

.quick {
  -webkit-transition-delay: 0s !important;
  -o-transition-delay: 0s !important;
  transition-delay: 0s !important;
}

@media (min-width: 1020px) { /* position for desktop */
  
  .header_warn div {
    width: 85%;
    margin-left: -60px;
  }
  .header_warn {
      top: -78px;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      width: 800px;
      height: 78px;
      font-size: 18px;
      z-index: 100;
      text-align: center;
      -webkit-transition: top 0.5s ease-in 1.5s;
      -o-transition: top 0.5s ease-in 1.5s;
      transition: top 0.5s ease-in 1.5s;
      border-radius: 10px;
  }
  .header_warn_close {
      top: -61px;
      left: calc(50% + 340px);
      cursor: pointer;
      display: block;
      -webkit-transition: top 0.5s ease-in 1.5s;
      -o-transition: top 0.5s ease-in 1.5s;
      transition: top 0.5s ease-in 1.5s;
  }
  .header_warn.in {
      top: 10px;
  }
  .header_warn_close.in {
      top: 27px;
  }
  .header_warn_close.out {
      -webkit-transition: top 0.2s ease-out;
      -o-transition: top 0.2s ease-out;
      transition: top 0.2s ease-out;
      top: -67px;
  }
  .header_warn.out {
      -webkit-transition: top 0.2s ease-out;
      -o-transition: top 0.2s ease-out;
      transition: top 0.2s ease-out;
      top: -78px;
  }

}

@media (max-width: 375px) {
  .header_warn div {
    font-size: 13px;
  }
}

@media (max-width: 1019px) { /* positions for mobile */
  .header_warn {
    height: 88px;
  }
  .header_warn div {
      width: 80%;
      margin-right: 20%;
      margin-left: 10px;
  }
  .header_warn_close.in {
      -webkit-transition: bottom 0.5s ease-in 1.5s;
      -o-transition: bottom 0.5s ease-in 1.5s;
      transition: bottom 0.5s ease-in 1.5s;
      bottom: 22px;
  }
  .header_warn.in {
      -webkit-transition: bottom 0.5s ease-in 1.5s;
      -o-transition: bottom 0.5s ease-in 1.5s;
      transition: bottom 0.5s ease-in 1.5s;
      bottom: 0px;
  }
  .header_warn_close.out {
      -webkit-transition: bottom 0.2s ease-out;
      -o-transition: bottom 0.2s ease-out;
      transition: bottom 0.2s ease-out;
      bottom: -80px;
  }
  .header_warn.out {
      -webkit-transition: bottom 0.2s ease-out;
      -o-transition: bottom 0.2s ease-out;
      transition: bottom 0.2s ease-out;
      bottom: -90px;
  }
}
/* circle btn */
.circle {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;   
  cursor: pointer;     
}
.circle-1 {
  width: 44px;
  height: 44px;
  background: #e0364c;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: fixed;
  left: 10px;
  bottom: -100px;
  z-index: 4;
  -webkit-transition: bottom 0.5s ease-in;
  -o-transition: bottom 0.5s ease-in;
  transition: bottom 0.5s ease-in;
}
.circle-2 {
  background: #fff;
  width: 36px;
  height: 36px;
}
.circle-3 {
  background: #e0364c;
  width: 30px;
  height: 30px;
}
.circle_in {
  bottom: 10px;
}
/* global warning end */
.cookie_alert {
  background: #ffffff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: 5;
  text-align: center;
}

.cookie_alert_btn {
  display: inline-block;
  position: relative;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  color: #333333;
  height: 33px;
  line-height: 33px;
  padding: 0 26px 0 12px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #009dd4;
  color: #ffffff;
  padding: 0 12px;
  cursor: pointer;
}

.cookie_alert_btn:hover {
  text-decoration: none;
}

.cookie_alert_btn:after {
  background: transparent;
}

.cookie_alert div {
  margin-right: 10px;
  display: inline-block;
}

@media (max-width: 768px) {
  .cookie_alert {
    text-align: left;
    padding-right: 60px;
    padding-left: 20px;
    padding-bottom: 10px;
  }  
}

iframe[src^="https://vk.com"] {
  max-width: 100%;
}

/* ==== FOOTER LOGOTYPES ==== */
.main_partners_container {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* show partners in row on tablets and xl screens */
@media (min-width: 768px) and (max-width: 1019px), (min-width: 1310px) {
  .main_partners_container {
      flex-direction: row;
  }
}

.main_partners_container .mpc_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* align logos to flex start on desktop views */
@media (min-width: 1020px) {
  .main_partners_container .mpc_item {
      justify-content: flex-start;
  }   
}

/* images should not overflow containers */
.main_partners_container .mpc_item img {
  max-width: 100%;
}

/* images sizes from mockups */
.mpc_item.mkrf img {
  max-width: 100px;
}
.mpc_item.assembly img {
  max-width: 150px;
}

.partners_footer {
  margin-top: 150px;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 1020px) {
  .partners_footer {
      flex-wrap: nowrap;
      justify-content: space-between;
  }
}

.partners_footer .pf_item {
  margin-bottom: 20px;
}

.partners_footer .pf_item img {
  max-width: 150px;
}
/* ==== END FOOTER LOGOTYPES ==== */

/* ==== ALL PAGES BANNER ==== */
.header.main-container.info-on {
  padding: 0;
  background-size: 92px 93px;
}
.header.main-container.info-on.black {
  background-image: url('/assets/img/pattern_black.png');
}
.header.main-container.info-on.gold {
  background-image: url('/assets/img/pattern_gold.png');
}
.header.main-container.info-on.blue {
  background-image: url('/assets/img/pattern_blue.png');
}
.header.main-container.info-on.skyblue {
  background-image: url('/assets/img/pattern_sky_blue.png');
}

.all-pages-banner {
  width: 100%;
  height: 158px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.all-pages-banner .logo {
  height: 93px;
}
.all-pages-banner .logo img {
  max-height: 100%;
}

.all-pages-banner .promo {
  height: 100%;
  display: flex;
  justify-content: center;
}
.all-pages-banner .promo img {
  max-height: 100%;
  margin-left: 50px;
}

.all-pages-banner a {
  position: relative;
}

.all-pages-banner-hover {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

.all-pages-banner-hover:hover {
  opacity: 1;
}

@media (min-width: 1020px) {
  .all-pages-banner-mobile {
      display: none;
  }
}

.all-pages-banner-mobile img {
  max-width: 100%;
  width: 100%;
}
/* ==== END ALL PAGES BANNER ==== */

/* ==== PRICES v5 ==== */
.prices_v5 .price_value {
  position: relative;
  font-family: 'PT Serif', serif;
  font-size: 28px;
  line-height: 30px;
  color: #000;
  text-align: center;
  margin-top: 32px;
  display: inline-block;
  color: #004b87;
}

.prices_v5 {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
}

@media (min-width: 1020px) {
    .prices_v5 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1310px) {
    .prices_v5 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 1019px) {
    .prices_v5 .docs-info {
        text-align: center;
    }
}

.prices_v5 .price_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1020px) {
    .prices_v5 .price_item {
        display: block;
    }
}

.prices_v5 .categories {
    background-color: transparent;
    border-width: 0;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    padding: 0;
    border-bottom: 1px dashed;
}
/* ==== END OF PRICES v5 ==== */

.sberpay {
  background-color: #21A038;
  color: white;
  border-width: 0;
  border-radius: 3px;
  display: flex;
  padding: 0 14px;
  height: 60px;
  font-size: 24px;
  font-family: 'PT Sans';
  align-items: center;
  transition: background-color 0.1s ease-in;
}

.sberpay:hover {
  background-color: #21BA72;
}

.sberpay img {
  max-width: 70px;
  margin-bottom: 0;
  margin-left: 10px;
}

.sberpay-waiting {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #b3d4fc;
  align-items: center;
  justify-content: center;
  display: none;
  border-radius: 10px;
}