@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; }

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */ }

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */ }

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

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

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0; }

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0; }

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

/**
 * Add the correct display in IE.
 */
main {
  display: block; }

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0; }

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

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted; }

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

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

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

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

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

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none; }

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

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor; }

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

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse; }

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0; }

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */ }

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */ }

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible; }

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none; }

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */ }

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0; }

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

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto; }

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

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none; }

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

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none; }

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block; }

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content; }

dialog:not([open]) {
  display: none; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */ }

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

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress; }

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer; }

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed; }

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial; }

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute; }

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

html {
  word-break: normal; }

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

/*@import "vendor/normalize/_ew4_normalize_overrides";*/
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

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

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

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

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

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

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

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

pre {
  overflow: auto; }

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

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

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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

input {
  line-height: normal; }

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

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

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

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

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

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.3333333333%; }
  .col-sm-2 {
    width: 16.6666666667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.3333333333%; }
  .col-sm-5 {
    width: 41.6666666667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.3333333333%; }
  .col-sm-8 {
    width: 66.6666666667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.3333333333%; }
  .col-sm-11 {
    width: 91.6666666667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.3333333333%; }
  .col-sm-pull-2 {
    right: 16.6666666667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.3333333333%; }
  .col-sm-pull-5 {
    right: 41.6666666667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.3333333333%; }
  .col-sm-pull-8 {
    right: 66.6666666667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.3333333333%; }
  .col-sm-pull-11 {
    right: 91.6666666667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.3333333333%; }
  .col-sm-push-2 {
    left: 16.6666666667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.3333333333%; }
  .col-sm-push-5 {
    left: 41.6666666667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.3333333333%; }
  .col-sm-push-8 {
    left: 66.6666666667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.3333333333%; }
  .col-sm-push-11 {
    left: 91.6666666667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%; }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%; }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%; }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%; }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.3333333333%; }
  .col-md-2 {
    width: 16.6666666667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.3333333333%; }
  .col-md-5 {
    width: 41.6666666667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.3333333333%; }
  .col-md-8 {
    width: 66.6666666667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.3333333333%; }
  .col-md-11 {
    width: 91.6666666667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.3333333333%; }
  .col-md-pull-2 {
    right: 16.6666666667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.3333333333%; }
  .col-md-pull-5 {
    right: 41.6666666667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.3333333333%; }
  .col-md-pull-8 {
    right: 66.6666666667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.3333333333%; }
  .col-md-pull-11 {
    right: 91.6666666667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.3333333333%; }
  .col-md-push-2 {
    left: 16.6666666667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.3333333333%; }
  .col-md-push-5 {
    left: 41.6666666667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.3333333333%; }
  .col-md-push-8 {
    left: 66.6666666667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.3333333333%; }
  .col-md-push-11 {
    left: 91.6666666667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.3333333333%; }
  .col-md-offset-2 {
    margin-left: 16.6666666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.3333333333%; }
  .col-md-offset-5 {
    margin-left: 41.6666666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.3333333333%; }
  .col-md-offset-8 {
    margin-left: 66.6666666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.3333333333%; }
  .col-md-offset-11 {
    margin-left: 91.6666666667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.3333333333%; }
  .col-lg-2 {
    width: 16.6666666667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.3333333333%; }
  .col-lg-5 {
    width: 41.6666666667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.3333333333%; }
  .col-lg-8 {
    width: 66.6666666667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.3333333333%; }
  .col-lg-11 {
    width: 91.6666666667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.3333333333%; }
  .col-lg-pull-2 {
    right: 16.6666666667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.3333333333%; }
  .col-lg-pull-5 {
    right: 41.6666666667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.3333333333%; }
  .col-lg-pull-8 {
    right: 66.6666666667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.3333333333%; }
  .col-lg-pull-11 {
    right: 91.6666666667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.3333333333%; }
  .col-lg-push-2 {
    left: 16.6666666667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.3333333333%; }
  .col-lg-push-5 {
    left: 41.6666666667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.3333333333%; }
  .col-lg-push-8 {
    left: 66.6666666667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.3333333333%; }
  .col-lg-push-11 {
    left: 91.6666666667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%; }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%; }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%; }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%; }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

/*//
// Pagination (multiple pages)
// --------------------------------------------------
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 40px 0 20px 0;

  > li {
    display: inline; // Remove list-style and block-level defaults
	background: none;
	padding: 0;
	
    > a,
    > span {
      position: relative;
      float: left; // Collapse white-space
      padding: $padding-base-vertical $padding-base-horizontal;
      line-height: $line-height-base;
      text-decoration: none;
      color: $pagination-color;
      background-color: $pagination-bg;
      border: 1px solid $pagination-border;
      margin-left: -1px;
    }
    &:first-child {
      > a,
      > span {
        margin-left: 0;
        @include border-left-radius(0);
      }
    }
    &:last-child {
      > a,
      > span {
        @include border-right-radius(0);
      }
    }
  }

  > li > a,
  > li > span {
    &:hover,
    &:focus {
      z-index: 3;
      color: $pagination-hover-color;
      background-color: $pagination-hover-bg;
      border-color: $pagination-hover-border;
    }
  }

  > .active > a,
  > .active > span {
    &,
    &:hover,
    &:focus {
      z-index: 2;
      color: $pagination-active-color;
      background-color: $pagination-active-bg;
      border-color: $pagination-active-border;
      cursor: default;
    }
  }

  > .disabled {
    > span,
    > span:hover,
    > span:focus,
    > a,
    > a:hover,
    > a:focus {
      color: $pagination-disabled-color;
      background-color: $pagination-disabled-bg;
      border-color: $pagination-disabled-border;
      cursor: $cursor-disabled;
    }
  }
}

// Sizing
// --------------------------------------------------

// Large
.pagination-lg {
  @include pagination-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $border-radius-large);
}

// Small
.pagination-sm {
  @include pagination-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small);
}*/
.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }

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

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

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

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

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px; }

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

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

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

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

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

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

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

/*@import "vendor/bootstrap/utilities";
@import "vendor/bootstrap/responsive-utilities";*/
html {
  box-sizing: border-box;
  font-size: 10px; }

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

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

body {
  background: #fff; }

body, p, td, div {
  font-family: "LatoRegular", sans-serif;
  color: #22252A;
  font-size: 1.4rem;
  line-height: 1.4285714286; }
  @media screen and (min-width: 480px) {
    body, p, td, div {
      font-size: 1.4rem;
      line-height: 1.4285714286; } }
  @media screen and (min-width: 768px) {
    body, p, td, div {
      font-size: 1.4rem;
      line-height: 1.4285714286; } }
  @media screen and (min-width: 1024px) {
    body, p, td, div {
      font-size: 1.4rem;
      line-height: 1.4285714286; } }
  @media screen and (min-width: 1600px) {
    body, p, td, div {
      font-size: 1.4rem;
      line-height: 1.4285714286; } }
p {
  margin: 16px 0; }

a {
  color: #4552CE;
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: underline; }

strong {
  font-family: "LatoBold", sans-serif; }

i {
  font-style: italic; }

h1, .h1 {
  font-size: 2.8rem;
  line-height: 1.2105263158;
  font-family: "PT Serif", serif; }
  @media screen and (min-width: 1024px) {
    h1, .h1 {
      font-size: 3.8rem;
      line-height: 1.2105263158; } }
  @media screen and (min-width: 1600px) {
    h1, .h1 {
      font-size: 3.8rem;
      line-height: 1.2105263158; } }
h2, .h2 {
  font-size: 2.4rem;
  line-height: 1.2857142857;
  font-weight: 700;
  font-family: "PT Serif", serif; }
  @media screen and (min-width: 1024px) {
    h2, .h2 {
      font-size: 2.8rem;
      line-height: 1.2857142857; } }
h3, .h3 {
  font-size: 1.8rem;
  line-height: 1.3888888889;
  font-weight: 700;
  font-family: "PT Serif", serif; }
  @media screen and (min-width: 1024px) {
    h3, .h3 {
      font-size: 1.8rem;
      line-height: 1.3888888889; } }
h4, .h4 {
  font-size: 1.6rem;
  line-height: 1.375; }
  @media screen and (min-width: 480px) {
    h4, .h4 {
      font-size: 1.6rem;
      line-height: 1.375; } }
  @media screen and (min-width: 768px) {
    h4, .h4 {
      font-size: 1.6rem;
      line-height: 1.375; } }
  @media screen and (min-width: 1024px) {
    h4, .h4 {
      font-size: 1.6rem;
      line-height: 1.375; } }
  @media screen and (min-width: 1600px) {
    h4, .h4 {
      font-size: 1.6rem;
      line-height: 1.375; } }
h5, .h5 {
  font-size: 1.4rem;
  line-height: 1.4285714286; }
  @media screen and (min-width: 480px) {
    h5, .h5 {
      font-size: 1.4rem;
      line-height: 1.4285714286; } }
  @media screen and (min-width: 768px) {
    h5, .h5 {
      font-size: 1.4rem;
      line-height: 1.4285714286; } }
  @media screen and (min-width: 1024px) {
    h5, .h5 {
      font-size: 1.4rem;
      line-height: 1.4285714286; } }
  @media screen and (min-width: 1600px) {
    h5, .h5 {
      font-size: 1.4rem;
      line-height: 1.4285714286; } }
h6, .h6 {
  font-size: 1.2rem;
  line-height: 1.5; }
  @media screen and (min-width: 480px) {
    h6, .h6 {
      font-size: 1.2rem;
      line-height: 1.5; } }
  @media screen and (min-width: 768px) {
    h6, .h6 {
      font-size: 1.2rem;
      line-height: 1.5; } }
  @media screen and (min-width: 1024px) {
    h6, .h6 {
      font-size: 1.2rem;
      line-height: 1.5; } }
  @media screen and (min-width: 1600px) {
    h6, .h6 {
      font-size: 1.2rem;
      line-height: 1.5; } }
h1, h2, h3, .h1, .h2, .h3 {
  margin: 0; }

h4, h5, h6, .h4, .h5, .h6 {
  margin: 0; }

ul, ol, li {
  margin: 0;
  padding: 0; }

ul {
  margin: 0 0 16px;
  list-style-type: none;
  overflow: hidden; }
  ul li:before {
    content: '';
    width: 4px;
    height: 4px;
    display: inline-block;
    margin: 0 6px 3px 0;
    background-color: #5D9FEA; }

ol {
  margin: 0 0 16px;
  overflow: hidden;
  padding-left: 35px; }

hr {
  border: 0;
  height: 1px;
  background: #4552CE; }

mark {
  background: #4552CE;
  padding: 0 5px;
  color: #fff; }

pre {
  font-family: monospace;
  margin: 0px;
  padding: 12px;
  border: 1px solid #999;
  background-color: white; }

iframe {
  border: 0; }

table {
  empty-cells: show;
  margin: 0 0 20px 0;
  border-collapse: collapse;
  border-spacing: 0; }
  table th, table td {
    padding: 10px 12px;
    border: 1px solid #67728B;
    text-align: left; }
    @media only screen and (min-width: 1024px) {
      table th, table td {
        padding: 16px 20px; } }
  table tr.lenteles_antraste td, table td.lenteles_antraste, table thead td, table th {
    background-color: #585F66;
    color: #FFFFFF;
    padding: 12px 12px; }
    table tr.lenteles_antraste td strong, table tr.lenteles_antraste td *, table td.lenteles_antraste strong, table td.lenteles_antraste *, table thead td strong, table thead td *, table th strong, table th * {
      color: #FFFFFF !important; }
    @media only screen and (min-width: 1024px) {
      table tr.lenteles_antraste td, table td.lenteles_antraste, table thead td, table th {
        padding: 16px 20px; } }
  table.linear-gradient-head {
    width: 100%; }
    table.linear-gradient-head thead tr {
      background: linear-gradient(to right, #9BA8C6 0%, #C9D0DF 100%) !important; }
      table.linear-gradient-head thead tr th {
        border: 0;
        border-top: 1px solid #67728B;
        border-bottom: 1px solid #67728B;
        background: transparent; }
        table.linear-gradient-head thead tr th:first-child {
          border-left: 1px solid #67728B; }
        table.linear-gradient-head thead tr th:last-child {
          border-right: 1px solid #67728B; }
    table.linear-gradient-head tbody tr td {
      border: 0;
      border-bottom: 1px solid #67728B; }
      table.linear-gradient-head tbody tr td:first-child {
        border-left: 1px solid #67728B; }
      table.linear-gradient-head tbody tr td:last-child {
        border-right: 1px solid #67728B; }
    table.linear-gradient-head tbody tr:nth-child(even) td {
      background-color: #F8F8FB; }
    table.linear-gradient-head .download {
      text-align: center; }
      table.linear-gradient-head .download img {
        width: 18px;
        min-width: 18px; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  table.linear-gradient-head thead {
    background: #4552CE !important; } }

table:not([border]),
table[border="0"] {
  border: 0 none; }

table[border="1"] td {
  border-width: 1px; }

table[border="2"] td {
  border-width: 2px; }

table[border="3"] td {
  border-width: 3px; }

table[border="4"] td {
  border-width: 4px; }

table[border="5"] td {
  border-width: 5px; }

form {
  margin: 0;
  padding: 0; }

input[type=text], input[type=email], input[type=password], input[type=url], input[type=tel], input[type=number], input[type=search], input[type=date], input[type=month], input[type=week], input[type=datetime], input[type=datetime-local], textarea {
  background-color: transparent;
  height: 2.2rem;
  margin: 0;
  padding: 0 0;
  outline: none;
  -webkit-appearance: none;
  border: 0;
  border-bottom: 1px solid #22252A;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  width: 100%; }
  input[type=text].placeholder, input[type=email].placeholder, input[type=password].placeholder, input[type=url].placeholder, input[type=tel].placeholder, input[type=number].placeholder, input[type=search].placeholder, input[type=date].placeholder, input[type=month].placeholder, input[type=week].placeholder, input[type=datetime].placeholder, input[type=datetime-local].placeholder, textarea.placeholder {
    color: #A8A8A8;
    font-size: 1.2rem; }
  input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, input[type=password]:-moz-placeholder, input[type=url]:-moz-placeholder, input[type=tel]:-moz-placeholder, input[type=number]:-moz-placeholder, input[type=search]:-moz-placeholder, input[type=date]:-moz-placeholder, input[type=month]:-moz-placeholder, input[type=week]:-moz-placeholder, input[type=datetime]:-moz-placeholder, input[type=datetime-local]:-moz-placeholder, textarea:-moz-placeholder {
    font-size: 1.2rem;
    color: #A8A8A8; }
  input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=month]::-webkit-input-placeholder, input[type=week]::-webkit-input-placeholder, input[type=datetime]::-webkit-input-placeholder, input[type=datetime-local]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 1.2rem;
    color: #A8A8A8; }
  input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input[type=datetime]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 1.2rem;
    color: #A8A8A8; }
  input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=url]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=search]:focus, input[type=date]:focus, input[type=month]:focus, input[type=week]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, textarea:focus {
    border-color: #4552CE; }
  @media only screen and (min-width: 769px) {
    input[type=text], input[type=email], input[type=password], input[type=url], input[type=tel], input[type=number], input[type=search], input[type=date], input[type=month], input[type=week], input[type=datetime], input[type=datetime-local], textarea {
      max-width: 35.2rem; } }
  @media only screen and (min-width: 1024px) {
    input[type=text], input[type=email], input[type=password], input[type=url], input[type=tel], input[type=number], input[type=search], input[type=date], input[type=month], input[type=week], input[type=datetime], input[type=datetime-local], textarea {
      height: 2.2rem; } }
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1; }

input[readonly]:not(.datepicker) {
  border-color: #ddd;
  cursor: not-allowed; }

button, input[type=submit], input[type=button], input[type=reset], a.mygtukas, span.mygtukas a {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  height: 3.9rem;
  margin: 0;
  padding: 0 20px;
  font-size: 1.2rem;
  font-family: "LatoBold", sans-serif;
  border-radius: 4px;
  border: 0;
  color: #fff;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(to right, #5AA4E8, #4552CE);
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  @media only screen and (min-width: 1024px) {
    button, input[type=submit], input[type=button], input[type=reset], a.mygtukas, span.mygtukas a {
      height: 3.9rem;
      line-height: calc(3.9rem - 1px*2); } }
  button:hover, input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover, a.mygtukas:hover, span.mygtukas a:hover {
    background: linear-gradient(#4552CE, #4552CE); }
  button.btn_inverted, input[type=submit].btn_inverted, input[type=button].btn_inverted, input[type=reset].btn_inverted, a.mygtukas.btn_inverted, span.mygtukas a.btn_inverted {
    color: #4552CE;
    background: #fff;
    border: 1px solid #4552CE; }
    button.btn_inverted:hover, input[type=submit].btn_inverted:hover, input[type=button].btn_inverted:hover, input[type=reset].btn_inverted:hover, a.mygtukas.btn_inverted:hover, span.mygtukas a.btn_inverted:hover {
      color: #fff;
      background: linear-gradient(to right, #5AA4E8, #4552CE);
      border: 0; }

input[disabled], button[disabled] {
  background: #ddd;
  cursor: not-allowed;
  color: #22252A;
  border: 0; }
  input[disabled]:hover, input[disabled]:focus, button[disabled]:hover, button[disabled]:focus {
    background-color: #ccc;
    color: #22252A;
    border: 0; }

textarea {
  resize: vertical;
  width: 100%;
  min-height: 150px;
  max-height: 450px;
  padding: 16px;
  border: 1px solid #22252A;
  border-radius: 4px;
  transition: none;
  -webkit-transition: 150ms border ease-in-out;
  -moz-transition: 150ms border ease-in-out;
  -o-transition: 150ms border ease-in-out;
  -ms-transition: 150ms border ease-in-out;
  transition: 150ms border ease-in-out; }
  @media only screen and (min-width: 768px) {
    textarea {
      max-width: 50rem; } }
select {
  outline: none; }

input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: inherit;
  margin-top: 3px;
  height: auto;
  line-height: inherit;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0; }

input[type=radio] {
  margin: 0;
  padding: 0;
  height: auto;
  line-height: inherit;
  background: inherit;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0; }

li > p {
  margin: 0;
  padding: 0; }

table td p:first-of-type {
  margin-top: 0; }

table td p:last-of-type {
  margin-bottom: 0; }

.paveiksliukas_prie_teksto_kaireje {
  float: left;
  margin: 0 10px 8px 0; }
  @media only screen and (min-width: 1024px) {
    .paveiksliukas_prie_teksto_kaireje {
      margin: 0 20px 15px 0; } }
.paveiksliukas_prie_teksto_desineje {
  float: right;
  margin: 0 0px 8px 10px; }
  @media only screen and (min-width: 1024px) {
    .paveiksliukas_prie_teksto_desineje {
      margin: 0 0px 15px 20px; } }
a.mygtukas, span.mygtukas a {
  /*display: inline-block;*/
  text-decoration: none; }

table.lentele_minimali {
  border: 1px solid #C9D0DF;
  background: none;
  padding: 0px;
  color: #22252A;
  width: auto; }
  table.lentele_minimali td, table.lentele_minimali th {
    background: transparent !important;
    padding: 10px 18px;
    border: 1px solid #C9D0DF; }

.didesnis_tekstas {
  font-size: 1.4em; }

ul.buletavimas_prie_paveikslelio {
  overflow: hidden; }

.seniunaiciu_teises_aktai {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #4552CE; }
  .seniunaiciu_teises_aktai:before {
    content: '\e92a';
    margin: 0 12px 0 0;
    font-size: 2.4rem;
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .seniunaiciu_teises_aktai .legislations p {
    margin-bottom: 16px; }
    .seniunaiciu_teises_aktai .legislations p:last-of-type {
      margin: 0; }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
      .select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice:before {
        display: none; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline:before {
      display: none; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

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

.select2-results {
  display: block; }

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

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

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

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

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

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

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

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

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

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

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

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

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

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

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

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

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

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

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

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

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

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

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

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0; }

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

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

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

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

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

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

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

.select2 {
  width: 100% !important;
  max-width: 35.2rem;
  outline: none; }
  @media only screen and (max-width: 768px) {
    .select2 {
      max-width: none; } }
.select2-container--default {
  outline: none; }
  .select2-container--default .select2-selection--single {
    outline: none;
    height: 2.2rem;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #22252A;
    border-radius: 0 !important; }
    .select2-container--default .select2-selection--single:focus {
      border-color: #4552CE; }
    @media only screen and (min-width: 1200px) {
      .select2-container--default .select2-selection--single {
        height: 2.2rem; } }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
      color: #22252A;
      padding-right: 25px;
      padding-left: 0;
      line-height: calc(2.2rem - 1px*2); }
      @media only screen and (min-width: 1200px) {
        .select2-container--default .select2-selection--single .select2-selection__rendered {
          padding-right: 2.2rem;
          line-height: calc(2.2rem - 1px*2); } }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
      top: 1px;
      right: 1px;
      height: calc(2.2rem - 1px*2);
      width: calc(2.2rem - 1px*2);
      border: none;
      background-color: none; }
      @media only screen and (min-width: 1200px) {
        .select2-container--default .select2-selection--single .select2-selection__arrow {
          height: calc(2.2rem - 1px*2);
          width: calc(2.2rem - 1px*2); } }
      .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border: 0;
        font-size: 0.9rem;
        height: 100%;
        width: 100%;
        line-height: calc(2.2rem - 1px*2);
        display: inline-block;
        text-align: center;
        margin: 0;
        left: 0;
        top: 0;
        color: #4552CE; }
        .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
          /* use !important to prevent issues with browser extensions that change fonts */
          font-family: 'icomoon' !important;
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          display: inline-block;
          vertical-align: middle;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          -webkit-transition: all 150ms ease-in-out;
          -moz-transition: all 150ms ease-in-out;
          -o-transition: all 150ms ease-in-out;
          -ms-transition: all 150ms ease-in-out;
          transition: all 150ms ease-in-out;
          content: "\e90a"; }
  .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border: 0;
    margin: 0; }
    .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:after {
      -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
      -o-transform: rotate(-180deg);
      transform: rotate(-180deg); }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #A8A8A8;
  font-size: 1.2rem; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #fff;
  opacity: 0.6;
  cursor: not-allowed; }

.select2-dropdown {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-color: #C9D0DF;
  border-width: 1px; }

.select2-container--default .select2-results__option {
  margin: 12px 8px 0;
  padding: 0 0 12px;
  border-bottom: 1px solid #C9D0DF;
  font-size: 1.4rem;
  background: none;
  line-height: 1.3;
  color: #22252A; }
  .select2-container--default .select2-results__option:last-child {
    border-bottom: 0; }
  .select2-container--default .select2-results__option[role=group] {
    padding: 0; }
  .select2-container--default .select2-results__option[aria-disabled=true] {
    color: #67728B; }
  .select2-container--default .select2-results__option:before {
    display: none; }
  .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: transparent;
    font-family: "LatoBold", sans-serif; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: transparent;
  color: #4552CE;
  text-decoration: underline;
  font-weight: bold; }

.select2-container--open .select2-dropdown--below {
  top: 2px;
  border-top: 1px solid #C9D0DF;
  border-radius: 4px; }

select.select2 {
  height: 0 !important;
  position: absolute;
  opacity: 0; }

.select2.select2-container + .fake_select {
  display: none; }

.fake_select {
  max-width: 35.2rem;
  height: 2.2rem;
  border-bottom: 1px solid #22252A;
  border-radius: 0;
  background-color: transparent; }

.select2_basic {
  height: 0 !important;
  position: absolute;
  opacity: 0; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: url("../img/reused/loading32.gif"); }

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

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

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

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

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

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

body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s, visibility 0s linear .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity .25s, visibility 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  height: 100%;
  margin-right: -.25em;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--next {
  z-index: 99995; }

.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px 6px 0 6px; }

.fancybox-slide--iframe {
  padding: 44px 44px 0; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px 0;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-can-drag .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-dragging .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(100% - 44px);
  margin-bottom: 44px; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

.fancybox-iframe {
  vertical-align: top; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  transition: color .2s;
  vertical-align: top;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff; }

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default; }

.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision; }

.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3; }

.fancybox-button--play svg path:nth-child(2) {
  display: none; }

.fancybox-button--pause svg path:nth-child(1) {
  display: none; }

.fancybox-button--play svg path,
.fancybox-button--share svg path,
.fancybox-button--thumbs svg path {
  fill: currentColor; }

.fancybox-button--share svg path {
  stroke-width: 1; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px; }

.fancybox-show-nav .fancybox-navigation .fancybox-button {
  transition: opacity .25s, visibility 0s, color .25s; }

.fancybox-navigation .fancybox-button::after {
  content: '';
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10; }

.fancybox-close-small svg {
  fill: transparent;
  opacity: .8;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: stroke .1s; }

.fancybox-close-small:focus {
  outline: none; }

.fancybox-close-small:hover svg {
  opacity: 1; }

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px; }

.fancybox-slide--image .fancybox-close-small:hover svg,
.fancybox-slide--video .fancybox-close-small:hover svg,
.fancybox-slide--iframe .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none; }

/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0; }

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1; }

.fancybox-caption::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  content: '';
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate .8s infinite linear;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  border: 6px solid rgba(100, 100, 100, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: .6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-family: "LatoBold", sans-serif;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-family: "LatoBold", sans-serif;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x > ul {
  overflow: hidden; }

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs > ul > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1); }

.fancybox-thumbs > ul > li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px); } }

.fancybox-infobar {
  font-family: "LatoRegular", sans-serif;
  font-size: 1.1em; }

.fancybox-button, button.fancybox-button, .fancybox-navigation a.fancybox-button {
  width: 50px;
  height: 50px;
  background: transparent;
  min-width: none;
  color: #fff; }
  .fancybox-button:after, .fancybox-button:before, button.fancybox-button:after, button.fancybox-button:before, .fancybox-navigation a.fancybox-button:after, .fancybox-navigation a.fancybox-button:before {
    display: none; }
  @media only screen and (min-width: 1300px) {
    .fancybox-button, button.fancybox-button, .fancybox-navigation a.fancybox-button {
      width: 60px;
      height: 60px; } }
  .fancybox-button:hover, .fancybox-button:focus, .fancybox-button:active, button.fancybox-button:hover, button.fancybox-button:focus, button.fancybox-button:active, .fancybox-navigation a.fancybox-button:hover, .fancybox-navigation a.fancybox-button:focus, .fancybox-navigation a.fancybox-button:active {
    background: transparent;
    opacity: 0.7; }

.fancybox-close-small {
  color: #000; }
  .fancybox-close-small:after, .fancybox-close-small:before {
    display: none; }
  .fancybox-close-small:hover, .fancybox-close-small:focus, .fancybox-close-small:active {
    background: transparent;
    opacity: 0.5; }

.fancybox-bg {
  background: #000; }

.fancybox-is-open .fancybox-bg {
  opacity: 0.85; }

.fancybox-content {
  width: 100%;
  margin: 0;
  padding: 0; }
  @media only screen and (min-width: 769px) {
    .fancybox-content {
      width: 85%; } }
.fancybox-close-small:hover {
  color: #22252A; }

.fancybox-close-small svg {
  width: 32px;
  height: 32px; }

.fancybox-navigation svg path {
  stroke: #FFF; }

.fancybox-button--play svg {
  display: none; }
  .fancybox-button--play svg:first-child {
    display: block; }

.fancybox-button--pause svg:first-child {
  display: none; }

.fancybox-button--pause svg:nth-child(2) {
  display: block; }

.fancybox-button--pause svg path:nth-child(1) {
  display: block; }

.fancybox-button[disabled] svg path {
  stroke: rgba(255, 255, 255, 0.6); }

/*! lightgallery - v1.2.6 - 2015-10-29
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2015 Sachin N; Licensed Apache 2.0 */
@font-face {
  font-family: 'lg';
  src: url("../../../libs/lightgallery/fonts/lg.eot?n1z373");
  src: url("../../../libs/lightgallery/fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../../../libs/lightgallery/fonts/lg.woff?n1z373") format("woff"), url("../../../libs/lightgallery/fonts/lg.ttf?n1z373") format("truetype"), url("../../../libs/lightgallery/fonts/lg.svg?n1z373#lg") format("svg");
  font-weight: normal;
  font-style: normal; }

.lg-icon {
  font-family: 'lg';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080; }

.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5; }

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: #FFF; }

.lg-actions .lg-next {
  right: 20px; }

.lg-actions .lg-next:before {
  content: "\e095"; }

.lg-actions .lg-prev {
  left: 20px; }

.lg-actions .lg-prev:after {
  content: "\e094"; }

@-webkit-keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@-moz-keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@-ms-keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@-webkit-keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

@-moz-keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

@-ms-keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

@keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative; }

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative; }

.lg-toolbar {
  z-index: 1080;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45); }

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none; }

.lg-toolbar .lg-icon:hover {
  color: #FFF; }

.lg-toolbar .lg-close:after {
  content: "\e070"; }

.lg-toolbar .lg-download:after {
  content: "\e0f2"; }

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080; }

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold; }

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0; }

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle; }

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0); }

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0); }

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0); }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms ease 0s, opacity 250ms !important;
  -moz-transition: -moz-transform 250ms ease 0s, opacity 250ms !important;
  -o-transition: -o-transform 250ms ease 0s, opacity 250ms !important;
  transition: transform 250ms ease 0s, opacity 250ms !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1; }

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing; }

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important; }

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0); }

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px; }

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px; }

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease; } }

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #a90707; }

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%; }

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px; }

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0; }

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease; }

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px; }

.lg-outer .lg-toogle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px; }

.lg-outer .lg-toogle-thumb:after {
  content: "\e1ff"; }

.lg-outer .lg-toogle-thumb:hover {
  color: #FFF; }

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px; }

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative; }

.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; }

.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer; }

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../../../libs/lightgallery/img/vimeo-play.png") no-repeat scroll 0 0 transparent; }

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../../../libs/lightgallery/img/vimeo-play.png") no-repeat scroll 0 -58px transparent; }

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../../../libs/lightgallery/img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8; }

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1; }

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../../../libs/lightgallery/img/youtube-play.png") no-repeat scroll 0 0 transparent; }

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../../../libs/lightgallery/img/youtube-play.png") no-repeat scroll 0 -60px transparent; }

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0; }

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden; }

.lg-outer .lg-has-video.lg-video-palying .lg-object, .lg-outer .lg-has-video.lg-video-palying .lg-video-play {
  display: none; }

.lg-outer .lg-has-video.lg-video-palying .lg-video-object {
  visibility: visible; }

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s; }

.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0; }

.lg-progress-bar.lg-start .lg-progress {
  width: 100%; }

.lg-show-autoplay .lg-progress-bar {
  opacity: 1; }

.lg-autoplay-button:after {
  content: "\e01d"; }

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a"; }

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  -moz-transition: -moz-transform 0.3s ease 0s;
  -o-transition: -o-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s ease 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s ease 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s ease 0s, opacity 0.15s !important;
  transition: transform 0.3s ease 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0; }

#lg-zoom-in:after {
  content: "\e311"; }

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none; }

#lg-zoom-out:after {
  content: "\e312"; }

.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto; }

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px; }

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible; }

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px; }

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset; }

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0); }

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%; }

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px; }

.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset; }

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0; }

.lg-fullscreen:after {
  content: "\e20c"; }

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d"; }

.group {
  *zoom: 1; }

.group:before, .group:after {
  display: table;
  content: "";
  line-height: 0; }

.group:after {
  clear: both; }

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s; }

.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.lg-outer.lg-visible {
  opacity: 1; }

.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important; }

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1; }

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing; }

.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%; }

.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap; }

.lg-outer .lg-item {
  background: url(../img/reused/loading32.gif) no-repeat scroll center center transparent;
  display: none !important; }

.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important; }

.lg-outer.lg-css .lg-current {
  display: inline-block !important; }

.lg-outer .lg-item, .lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%; }

.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px; }

.lg-outer .lg-img-wrap {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 5px; }

.lg-outer .lg-item.lg-complete {
  background-image: none; }

.lg-outer .lg-item.lg-current {
  z-index: 1060; }

.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important; }

.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s; }

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1; }

.lg-outer .lg-empty-html {
  display: none; }

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s; }

.lg-backdrop.in {
  opacity: 1; }

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important; }

.lg-css3.lg-use-css3 .lg-item {
  will-change: transform, opacity; }

.lg-css3.lg-use-left .lg-item {
  will-change: left, opacity; }

.lg-css3.lg-fade .lg-item {
  opacity: 0; }

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1; }

.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s; }

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0; }

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0; }

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%; }

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%; }

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1; }

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }

/*# sourceMappingURL=lightgallery.css.map */
.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.8); }

.lg-outer {
  background-color: transparent; }
  .lg-outer .lg-thumb.group {
    margin-left: auto;
    margin-right: auto; }
  .lg-outer .lg-thumb-outer {
    margin: 0 0 20px;
    background: transparent; }
    @media only screen and (max-width: 768px) {
      .lg-outer .lg-thumb-outer {
        display: none; } }
    .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
      cursor: pointer; }
  .lg-outer .lg-thumb-item {
    position: relative;
    border: none;
    border-radius: 4px;
    background-color: #080808; }
    .lg-outer .lg-thumb-item:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.4);
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
    .lg-outer .lg-thumb-item.active:before, .lg-outer .lg-thumb-item:hover:before {
      background-color: transparent; }
  .lg-outer .lg-thumb {
    padding: 0; }
  .lg-outer .lg-img-wrap:before {
    height: 56%;
    padding: 0; }
    @media only screen and (min-width: 769px) {
      .lg-outer .lg-img-wrap:before {
        height: 50%; } }
  .lg-outer .lg-item {
    padding: 0; }
  .lg-outer img.lg-image {
    padding: 0 10px 42px 10px;
    max-height: 72% !important; }
    @media only screen and (max-width: 768px) {
      .lg-outer img.lg-image {
        padding: 0 10px 0px 10px;
        max-height: 70% !important; } }
  .lg-outer .lg-toogle-thumb {
    background-color: rgba(0, 0, 0, 0.7);
    left: 10px;
    top: -40px; }
  .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    top: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 1059; }

.lg-toolbar.group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  top: 24px;
  left: auto;
  right: 20px;
  width: auto;
  z-index: 6000;
  background: transparent; }
  @media only screen and (max-width: 768px) {
    .lg-toolbar.group {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-align-items: flex-end;
      -moz-align-items: flex-end;
      -ms-align-items: flex-end;
      -ms-flex-align: flex-end;
      align-items: flex-end;
      top: 4px;
      right: 8px; } }
  .lg-toolbar.group #lg-counter {
    -webkit-box-ordinal-group: -1;
    -moz-box-ordinal-group: -1;
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
    padding: 0 24px 0 0;
    font-size: 1.4rem;
    font-family: "LatoBold", sans-serif;
    color: #22252A; }
    @media only screen and (max-width: 768px) {
      .lg-toolbar.group #lg-counter {
        padding: 0;
        color: #fff; } }
  .lg-toolbar.group .lg-close {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 1.6rem;
    height: 1.6rem;
    padding: 0;
    font-size: 1.6rem;
    color: #4552CE;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    @media only screen and (max-width: 768px) {
      .lg-toolbar.group .lg-close {
        width: 40px;
        height: 36px;
        padding: 0;
        font-size: 2.1rem; } }
    .lg-toolbar.group .lg-close:after {
      content: "\e90e";
      vertical-align: -4px;
      /* use !important to prevent issues with browser extensions that change fonts */
      font-family: 'icomoon' !important;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      display: inline-block;
      vertical-align: middle;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .lg-toolbar.group .lg-close:hover {
      color: #4552CE; }
  .lg-toolbar.group .lg-fullscreen {
    display: none; }
  .lg-toolbar.group .gallery_share {
    display: none; }

.lg-toolbar.album_title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  min-height: 81px;
  padding: 9px 170px 9px 30px;
  font-size: 2rem;
  background-color: #fff;
  text-align: left;
  z-index: 5555; }
  @media only screen and (max-width: 768px) {
    .lg-toolbar.album_title {
      padding: 8px 65px 8px 16px;
      background-color: transparent; } }
  .lg-toolbar.album_title .date_title_container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .lg-toolbar.album_title .album_title_text {
    display: inline-block;
    padding: 0 0 3px 0;
    font-size: 1.4rem;
    font-family: "LatoBold", sans-serif; }
    @media only screen and (max-width: 768px) {
      .lg-toolbar.album_title .album_title_text {
        color: #fff; } }
  .lg-toolbar.album_title .album_title_description {
    padding: 0 0 3px 23px;
    position: relative;
    font-weight: 500;
    font-size: 1.6rem; }
    @media only screen and (max-width: 768px) {
      .lg-toolbar.album_title .album_title_description {
        display: none;
        color: #fff; } }
    .lg-toolbar.album_title .album_title_description:before {
      content: "\e920";
      position: absolute;
      top: 5px;
      left: 0;
      font-size: 1.6rem;
      /* use !important to prevent issues with browser extensions that change fonts */
      font-family: 'icomoon' !important;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      display: inline-block;
      vertical-align: middle;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
  .lg-toolbar.album_title .album_date {
    margin-right: 8px;
    font-size: 1.2rem;
    font-weight: 400; }
    @media only screen and (max-width: 768px) {
      .lg-toolbar.album_title .album_date {
        color: #fff; } }
.lg-actions {
  display: none; }
  @media only screen and (min-width: 769px) {
    .lg-actions {
      display: block; } }
  .lg-actions .lg-next:before, .lg-actions .lg-prev:before, .lg-actions .lg-prev:after {
    content: ""; }
  .lg-actions .lg-icon.lg-next, .lg-actions .lg-icon.lg-prev {
    margin-top: -50px;
    width: 3.7rem;
    height: 3.7rem;
    padding: 0;
    border-radius: 4px;
    border: 3px solid #fff;
    color: #fff;
    background-color: transparent;
    text-align: center;
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .lg-actions .lg-icon.lg-next:after, .lg-actions .lg-icon.lg-prev:after {
      content: "\e905";
      display: inline-block;
      font-size: 1.6rem;
      vertical-align: -1px; }
    .lg-actions .lg-icon.lg-next:hover, .lg-actions .lg-icon.lg-prev:hover {
      border-color: #4552CE;
      color: #4552CE; }
  .lg-actions .lg-icon.lg-prev {
    transform: rotate(180deg); }
    .lg-actions .lg-icon.lg-prev:after {
      content: "\e905"; }

.photo_title {
  display: none;
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 12px;
  color: #fff;
  font-size: 1.6rem;
  text-align: left; }
  @media only screen and (max-width: 768px) {
    .photo_title {
      display: block; } }
.youtubegallery_popup .lg-toolbar {
  background: none; }

.mm-panel, html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -moz-transition: -moz-transform .4s ease;
  -o-transition: -o-transform .4s ease; }

.mm-indexer, .mm-menu, .mm-menu > .mm-panel, .mm-navbar .mm-btn, .mm-page, .mm-search, .mm-search input {
  box-sizing: border-box; }

.mm-listview a, .mm-listview a:hover, .mm-navbar a, .mm-navbar a:hover {
  text-decoration: none; }

.mm-arrow:after, .mm-listview .mm-next:before, .mm-listview > li:not(.mm-divider):after, .mm-next:after, .mm-prev:before {
  content: '';
  bottom: 0;
  position: absolute; }

.mm-divider > span, .mm-listview .mm-divider, .mm-listview > li > a, .mm-listview > li > span, .mm-navbar .mm-title, .mm-navbar > .mm-breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap; }

.mm-hidden {
  display: none !important; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-navbar, .mm-navbar .mm-btn {
  position: absolute;
  height: 40px; }

.mm-menu, .mm-menu > .mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.mm-menu {
  display: block;
  overflow: hidden;
  padding: 0; }

.mm-panel {
  -webkit-transition: -webkit-transform .4s ease;
  -ms-transition: -ms-transform .4s ease;
  transition: transform .4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-slideout, html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform .4s ease;
  -ms-transition: -ms-transform .4s ease; }

.mm-fixeddivider, .mm-panel.mm-opened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0); }

.mm-panel.mm-opened {
  transform: translate3d(0, 0, 0); }

.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-panel.mm-highest {
  z-index: 1; }

.mm-menu > .mm-panel {
  background: inherit;
  border-color: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20px; }

.mm-menu > .mm-panel.mm-hasnavbar {
  padding-top: 40px; }

.mm-menu > .mm-panel:after, .mm-menu > .mm-panel:before {
  content: '';
  display: block;
  height: 20px; }

.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important; }

.mm-listview .mm-vertical .mm-panel, .mm-vertical .mm-listview .mm-panel {
  display: none;
  padding: 10px 0 10px 10px; }

.mm-navbar > *, .mm-vertical li.mm-opened > .mm-panel, li.mm-vertical.mm-opened > .mm-panel {
  display: block; }

.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after, .mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent; }

.mm-listview > li.mm-vertical > .mm-next, .mm-vertical .mm-listview > li > .mm-next {
  height: 40px;
  bottom: auto; }

.mm-listview > li.mm-vertical > .mm-next:after, .mm-vertical .mm-listview > li > .mm-next:after {
  top: 16px;
  bottom: auto; }

.mm-listview > li.mm-vertical.mm-opened > .mm-next:after, .mm-vertical .mm-listview > li.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  padding: 0 40px;
  margin: 0;
  top: 0;
  left: 0;
  right: 0; }

.mm-navbar > * {
  padding: 10px 0; }

.mm-navbar .mm-title {
  overflow: hidden; }

.mm-navbar .mm-btn {
  width: 40px;
  top: 0;
  z-index: 1; }

.mm-navbar .mm-btn:first-child {
  padding-left: 20px;
  left: 0; }

.mm-navbar .mm-btn:last-child {
  text-align: right;
  padding-right: 20px;
  right: 0; }

.mm-panel .mm-navbar {
  display: none; }

.mm-panel.mm-hasnavbar .mm-navbar {
  display: block; }

.mm-listview, .mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-listview {
  font: inherit;
  font-size: 14px;
  line-height: 20px; }

.mm-listview > li {
  position: relative; }

.mm-listview > li, .mm-listview > li .mm-next, .mm-listview > li .mm-next:before, .mm-listview > li:after {
  border-color: inherit; }

.mm-listview > li > a, .mm-listview > li > span {
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0; }

.mm-listview > li > a.mm-arrow, .mm-listview > li > span.mm-arrow {
  padding-right: 50px; }

.mm-listview > li:not(.mm-divider):after {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  right: 0;
  left: 20px; }

.mm-listview .mm-next {
  background: rgba(3, 2, 1, 0);
  width: 50px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2; }

.mm-listview .mm-next:before {
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  top: 0;
  left: 0; }

.mm-listview .mm-next + a, .mm-listview .mm-next + span {
  margin-right: 50px; }

.mm-listview .mm-next.mm-fullsubopen {
  width: 100%; }

.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none; }

.mm-listview .mm-next.mm-fullsubopen + a, .mm-listview .mm-next.mm-fullsubopen + span {
  padding-right: 50px;
  margin-right: 0; }

.mm-menu > .mm-panel > .mm-listview {
  margin: 20px -20px; }

.mm-menu > .mm-panel > .mm-listview:first-child, .mm-menu > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px; }

.mm-listview .mm-inset {
  list-style: disc inside;
  padding: 0 10px 15px 40px;
  margin: 0; }

.mm-listview .mm-inset > li {
  padding: 5px 0; }

.mm-listview .mm-divider {
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px; }

.mm-listview .mm-spacer {
  padding-top: 40px; }

.mm-listview .mm-spacer > .mm-next {
  top: 40px; }

.mm-listview .mm-spacer.mm-divider {
  padding-top: 25px; }

.mm-arrow:after, .mm-next:after, .mm-prev:before {
  border: 2px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px; }

.mm-arrow:after, .mm-next:after {
  border-top: none;
  border-left: none;
  right: 20px; }

.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7); }

.mm-menu .mm-navbar a, .mm-menu .mm-navbar > *, .mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-navbar .mm-btn:after, .mm-menu .mm-navbar .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview {
  border-color: rgba(0, 0, 0, 0.1); }

.mm-menu .mm-listview > li .mm-arrow:after, .mm-menu .mm-listview > li .mm-next:after {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.5); }

.mm-menu .mm-divider, .mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background: rgba(0, 0, 0, 0.05); }

.mm-page {
  position: relative; }

.mm-slideout {
  transition: transform .4s ease; }

html.mm-opened {
  overflow: hidden;
  position: relative; }

html.mm-opened body {
  overflow: hidden; }

html.mm-background .mm-page {
  background: inherit; }

#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999; }

html.mm-blocking #mm-blocker, html.mm-opened #mm-blocker {
  display: block; }

.mm-menu.mm-offcanvas {
  display: none;
  position: fixed; }

.mm-menu.mm-current, em.mm-counter {
  display: block; }

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0); }

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0); } }

@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0); } }

.mm-menu.mm-bottom.mm-autoheight, .mm-menu.mm-top.mm-autoheight {
  max-height: 80%; }

.mm-menu.mm-bottom.mm-autoheight.mm-fullscreen, .mm-menu.mm-top.mm-autoheight.mm-fullscreen {
  max-height: 100%; }

.mm-menu.mm-measureheight > .mm-panel {
  bottom: auto !important;
  height: auto !important; }

em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%; }

.mm-collapsed:not(.mm-uncollapsed), .mm-nosubresults > .mm-counter {
  display: none; }

em.mm-counter + a.mm-next {
  width: 90px; }

em.mm-counter + a.mm-next + a, em.mm-counter + a.mm-next + span {
  margin-right: 90px; }

em.mm-counter + a.mm-fullsubopen {
  padding-left: 0; }

.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0; }

.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px; }

.mm-divider > span {
  overflow: hidden;
  padding: 0;
  line-height: 25px; }

.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  transform: translate3d(0, 0, 0); }

.mm-iconpanel .mm-panel.mm-subopened, .mm-menu > .mm-navbar {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0); }

.mm-fixeddivider:after {
  content: none !important;
  display: none !important; }

.mm-hasdividers .mm-fixeddivider {
  display: block; }

.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05); }

html.mm-opened.mm-dragging #mm-blocker, html.mm-opened.mm-dragging .mm-fixed-bottom, html.mm-opened.mm-dragging .mm-fixed-top, html.mm-opened.mm-dragging .mm-menu, html.mm-opened.mm-dragging .mm-page {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s; }

.mm-iconpanel .mm-panel {
  -webkit-transition-property: -webkit-transform,left,right;
  -moz-transition-property: -moz-transform,left,right;
  -ms-transition-property: -ms-transform,left,right;
  -o-transition-property: -o-transform,left,right;
  transition-property: transform,left,right; }

.mm-iconpanel .mm-panel.mm-opened {
  border-left: 1px solid;
  border-color: inherit; }

.mm-navbar-bottom, .mm-navbar-top ~ .mm-navbar-top {
  border-bottom: none; }

.mm-iconpanel .mm-panel.mm-subopened {
  overflow-y: hidden;
  left: -40px;
  transform: translate3d(0, 0, 0); }

.mm-iconpanel .mm-panel.mm-iconpanel-0 {
  left: 0; }

.mm-iconpanel .mm-panel.mm-iconpanel-1 {
  left: 40px; }

.mm-iconpanel .mm-panel.mm-iconpanel-2 {
  left: 80px; }

.mm-iconpanel .mm-panel.mm-iconpanel-3 {
  left: 120px; }

.mm-iconpanel .mm-panel.mm-iconpanel-4 {
  left: 160px; }

.mm-iconpanel .mm-panel.mm-iconpanel-5 {
  left: 200px; }

.mm-iconpanel .mm-panel.mm-iconpanel-6 {
  left: 240px; }

.mm-subblocker {
  background: inherit;
  opacity: 0;
  display: block;
  -webkit-transition: opacity .4s ease;
  -moz-transition: opacity .4s ease;
  -ms-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.mm-subopened .mm-subblocker {
  opacity: .6;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -100000px;
  left: 0;
  z-index: 3; }

.mm-menu > .mm-navbar {
  background: inherit;
  padding: 0;
  z-index: 3;
  transform: translate3d(0, 0, 0); }

.mm-navbar-bottom {
  border-top-width: 1px;
  border-top-style: solid;
  top: auto;
  bottom: 0; }

.mm-navbar-bottom ~ .mm-navbar-bottom {
  border-top: none; }

.mm-navbar.mm-hasbtns {
  padding: 0 40px; }

.mm-close:after {
  content: 'x'; }

.mm-navbar[class*=mm-navbar-content-] > * {
  box-sizing: border-box;
  display: block;
  float: left; }

.mm-navbar > .mm-breadcrumbs {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 17px; }

.mm-navbar > .mm-breadcrumbs > * {
  display: inline-block;
  padding: 10px 3px; }

.mm-navbar > .mm-breadcrumbs > a {
  text-decoration: underline; }

.mm-navbar.mm-hasbtns .mm-breadcrumbs {
  margin-left: -40px; }

.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden) + .mm-breadcrumbs {
  margin-left: 0;
  padding-left: 0; }

.mm-navbar-top-1 {
  top: 0; }

.mm-hasnavbar-top-1 .mm-panel {
  top: 40px; }

.mm-hasnavbar-top-1 .mm-indexer {
  top: 50px; }

.mm-hasnavbar-top-1 .mm-fixeddivider, .mm-navbar-top-2 {
  top: 40px; }

.mm-hasnavbar-top-2 .mm-panel {
  top: 80px; }

.mm-hasnavbar-top-2 .mm-indexer {
  top: 90px; }

.mm-hasnavbar-top-2 .mm-fixeddivider, .mm-navbar-top-3 {
  top: 80px; }

.mm-hasnavbar-top-3 .mm-panel {
  top: 120px; }

.mm-hasnavbar-top-3 .mm-indexer {
  top: 130px; }

.mm-hasnavbar-top-3 .mm-fixeddivider, .mm-navbar-top-4 {
  top: 120px; }

.mm-hasnavbar-top-4 .mm-panel {
  top: 160px; }

.mm-hasnavbar-top-4 .mm-indexer {
  top: 170px; }

.mm-hasnavbar-top-4 .mm-fixeddivider {
  top: 160px; }

.mm-navbar-bottom-1 {
  bottom: 0; }

.mm-hasnavbar-bottom-1 .mm-panel {
  bottom: 40px; }

.mm-hasnavbar-bottom-1 .mm-indexer {
  bottom: 50px; }

.mm-navbar-bottom-2 {
  bottom: 40px; }

.mm-hasnavbar-bottom-2 .mm-panel {
  bottom: 80px; }

.mm-hasnavbar-bottom-2 .mm-indexer {
  bottom: 90px; }

.mm-navbar-bottom-3 {
  bottom: 80px; }

.mm-hasnavbar-bottom-3 .mm-panel {
  bottom: 120px; }

.mm-hasnavbar-bottom-3 .mm-indexer {
  bottom: 130px; }

.mm-navbar-bottom-4 {
  bottom: 120px; }

.mm-hasnavbar-bottom-4 .mm-panel {
  bottom: 160px; }

.mm-hasnavbar-bottom-4 .mm-indexer {
  bottom: 170px; }

.mm-navbar-size-2 {
  height: 80px; }

.mm-navbar-size-3 {
  height: 120px; }

.mm-navbar-size-4 {
  height: 160px; }

.mm-navbar-content-2 > * {
  width: 50%; }

.mm-navbar-content-3 > * {
  width: 33.33%; }

.mm-navbar-content-4 > * {
  width: 25%; }

.mm-navbar-content-5 > * {
  width: 20%; }

.mm-navbar-content-6 > * {
  width: 16.67%; }

.mm-search {
  height: 40px;
  padding: 7px 10px 0; }

.mm-search input {
  border: none;
  border-radius: 26px;
  font: inherit;
  font-size: 14px;
  line-height: 26px;
  outline: 0;
  display: block;
  width: 100%;
  height: 26px;
  margin: 0;
  padding: 0 10px; }

.mm-search input::-ms-clear {
  display: none; }

.mm-panel > .mm-search {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.mm-panel.mm-hassearch {
  padding-top: 40px; }

.mm-panel.mm-hassearch.mm-hasnavbar {
  padding-top: 80px; }

.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
  top: 40px; }

.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0; }

.mm-noresults .mm-noresultsmsg {
  display: block; }

.mm-noresults .mm-indexer {
  display: none !important; }

li.mm-nosubresults > a.mm-next {
  display: none; }

li.mm-nosubresults > a.mm-next + a, li.mm-nosubresults > a.mm-next + span {
  padding-right: 10px; }

.mm-menu .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7); }

.mm-menu .mm-indexer a, .mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3); }

.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  width: 20px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -100px;
  z-index: 3;
  -webkit-transition: right .4s ease;
  -moz-transition: right .4s ease;
  -ms-transition: right .4s ease;
  -o-transition: right .4s ease;
  transition: right .4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-indexer a {
  text-decoration: none;
  display: block;
  height: 3.85%; }

.mm-indexer ~ .mm-panel.mm-hasindexer {
  padding-right: 40px; }

.mm-hasindexer .mm-indexer {
  right: 0; }

.mm-hasindexer .mm-fixeddivider {
  right: 20px; }

input.mm-check, input.mm-toggle {
  position: absolute;
  left: -10000px; }

label.mm-check, label.mm-toggle {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2;
  right: 20px; }

label.mm-check:before, label.mm-toggle:before {
  content: '';
  display: block; }

label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px; }

label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px; }

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right; }

label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px; }

label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: .1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1; }

li.mm-vertical label.mm-check, li.mm-vertical label.mm-toggle {
  bottom: auto;
  margin-top: 0;
  top: 5px; }

label.mm-toggle + a, label.mm-toggle + span {
  padding-right: 80px; }

label.mm-check + a, label.mm-check + span {
  padding-right: 60px; }

a.mm-next + label.mm-check, a.mm-next + label.mm-toggle {
  right: 60px; }

a.mm-next + label.mm-check + a, a.mm-next + label.mm-check + span, a.mm-next + label.mm-toggle + a, a.mm-next + label.mm-toggle + span {
  margin-right: 50px; }

a.mm-next + label.mm-toggle + a, a.mm-next + label.mm-toggle + span {
  padding-right: 70px; }

a.mm-next + label.mm-check + a, a.mm-next + label.mm-check + span {
  padding-right: 50px; }

em.mm-counter + a.mm-next + label.mm-check, em.mm-counter + a.mm-next + label.mm-toggle {
  right: 100px; }

em.mm-counter + a.mm-next + label.mm-check + a, em.mm-counter + a.mm-next + label.mm-check + span, em.mm-counter + a.mm-next + label.mm-toggle + a, em.mm-counter + a.mm-next + label.mm-toggle + span {
  margin-right: 90px; }

.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu label.mm-toggle:before {
  background: #f3f3f3; }

.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7); }

.mm-listview.mm-border-none > li:after, .mm-menu.mm-border-none .mm-listview > li:after {
  content: none; }

.mm-listview.mm-border-full > li:after, .mm-menu.mm-border-full .mm-listview > li:after {
  left: 0 !important; }

html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  transition: transform .4s ease; }

html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center; }

html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center; }

html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

html.mm-effect-slide-menu .mm-menu.mm-effect-slide-menu {
  -webkit-transition: -webkit-transform .4s ease;
  -moz-transition: -moz-transform .4s ease;
  -ms-transition: -ms-transform .4s ease;
  -o-transition: -o-transform .4s ease;
  transition: transform .4s ease; }

html.mm-effect-slide-menu.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }

html.mm-effect-slide-menu.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0); }

html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

html.mm-effect-fade-menu .mm-menu.mm-effect-fade-menu {
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  -moz-transition: opacity .4s ease;
  -ms-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

html.mm-effect-fade-menu.mm-opening .mm-menu.mm-effect-fade-menu {
  opacity: 1; }

.mm-menu.mm-effect-zoom-panels .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center; }

.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0, 0, 0);
  -o-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0); }

.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li {
  -webkit-transition: -webkit-transform .4s ease;
  -moz-transition: -moz-transform .4s ease;
  -ms-transition: -ms-transform .4s ease;
  -o-transition: -o-transform .4s ease;
  transition: transform .4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(1) {
  -webkit-transition-delay: .1s;
  -moz-transition-delay: .1s;
  -ms-transition-delay: .1s;
  -o-transition-delay: .1s;
  transition-delay: .1s; }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(2) {
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  -ms-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s; }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(3) {
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  -ms-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s; }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(4) {
  -webkit-transition-delay: .4s;
  -moz-transition-delay: .4s;
  -ms-transition-delay: .4s;
  -o-transition-delay: .4s;
  transition-delay: .4s; }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(5) {
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  -ms-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s; }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(6) {
  -webkit-transition-delay: .6s;
  -moz-transition-delay: .6s;
  -ms-transition-delay: .6s;
  -o-transition-delay: .6s;
  transition-delay: .6s; }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(7) {
  -webkit-transition-delay: .7s;
  -moz-transition-delay: .7s;
  -ms-transition-delay: .7s;
  -o-transition-delay: .7s;
  transition-delay: .7s; }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(8) {
  -webkit-transition-delay: .8s;
  -moz-transition-delay: .8s;
  -ms-transition-delay: .8s;
  -o-transition-delay: .8s;
  transition-delay: .8s; }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(9) {
  -webkit-transition-delay: .9s;
  -moz-transition-delay: .9s;
  -ms-transition-delay: .9s;
  -o-transition-delay: .9s;
  transition-delay: .9s; }

html.mm-effect-slide-listitems.mm-opening .mm-menu.mm-effect-slide-listitems .mm-panel.mm-opened .mm-listview > li {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px; }

html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0); }

@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0); } }

@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0); } }

html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0); }

@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0); } }

@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0); } }

.mm-menu.mm-fullscreen.mm-bottom, .mm-menu.mm-fullscreen.mm-top {
  height: 100%;
  min-height: 140px;
  max-height: 10000px; }

html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important; }

.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > a, .mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > span, .mm-menu.mm-multiline .mm-listview > li > a, .mm-menu.mm-multiline .mm-listview > li > span {
  text-overflow: clip;
  white-space: normal; }

.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.mm-menu.mm-pageshadow.mm-front:after, .mm-menu.mm-pageshadow.mm-next:after, .mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none; }

.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%; }

.mm-menu.mm-bottom, .mm-menu.mm-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 80%;
  min-height: 140px;
  max-height: 880px; }

.mm-menu.mm-right {
  left: auto;
  right: 0; }

html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0); }

@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0); } }

@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0); } }

html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important; }

.mm-menu.mm-front {
  z-index: 1; }

.mm-menu.mm-front, .mm-menu.mm-next {
  -webkit-transition: -webkit-transform .4s ease;
  -ms-transition: -ms-transform .4s ease;
  transition: transform .4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu.mm-front.mm-right, .mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0); }

html.mm-opening .mm-menu.mm-front, html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu.mm-theme-dark {
  background: #333;
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.8); }

.mm-menu.mm-theme-dark .mm-navbar a, .mm-menu.mm-theme-dark .mm-navbar > *, .mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after, .mm-menu.mm-theme-dark .mm-navbar .mm-btn:before {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark .mm-listview {
  border-color: rgba(0, 0, 0, 0.15); }

.mm-menu.mm-theme-dark .mm-listview > li .mm-arrow:after, .mm-menu.mm-theme-dark .mm-listview > li .mm-next:after {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu.mm-theme-dark .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu.mm-theme-dark .mm-divider, .mm-menu.mm-theme-dark .mm-fixeddivider span, .mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background: rgba(255, 255, 255, 0.05); }

.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8); }

.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8); }

.mm-menu.mm-theme-dark .mm-indexer a, .mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15); }

.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333; }

.mm-menu.mm-theme-dark input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu.mm-theme-white {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6); }

.mm-menu.mm-theme-white .mm-navbar a, .mm-menu.mm-theme-white .mm-navbar > *, .mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-theme-white .mm-navbar .mm-btn:after, .mm-menu.mm-theme-white .mm-navbar .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-theme-white .mm-listview {
  border-color: rgba(0, 0, 0, 0.1); }

.mm-menu.mm-theme-white .mm-listview > li .mm-arrow:after, .mm-menu.mm-theme-white .mm-listview > li .mm-next:after {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-theme-white .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu.mm-theme-white .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.05); }

.mm-menu.mm-theme-white .mm-divider, .mm-menu.mm-theme-white .mm-fixeddivider span, .mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6); }

.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6); }

.mm-menu.mm-theme-white .mm-indexer a, .mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu.mm-theme-white label.mm-toggle:before {
  background: #fff; }

.mm-menu.mm-theme-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu.mm-theme-black {
  background: #000;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6); }

.mm-menu.mm-theme-black .mm-navbar a, .mm-menu.mm-theme-black .mm-navbar > *, .mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black .mm-navbar .mm-btn:after, .mm-menu.mm-theme-black .mm-navbar .mm-btn:before {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black .mm-listview {
  border-color: rgba(255, 255, 255, 0.2); }

.mm-menu.mm-theme-black .mm-listview > li .mm-arrow:after, .mm-menu.mm-theme-black .mm-listview > li .mm-next:after {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu.mm-theme-black .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-theme-black .mm-divider, .mm-menu.mm-theme-black .mm-fixeddivider span, .mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background: rgba(255, 255, 255, 0.2); }

.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6); }

.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6); }

.mm-menu.mm-theme-black .mm-indexer a, .mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2); }

.mm-menu.mm-theme-black label.mm-toggle:before {
  background: #000; }

.mm-menu.mm-theme-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu .mm-tileview.mm-listview:after, .mm-menu.mm-tileview .mm-listview:after {
  content: '';
  display: block;
  clear: both; }

.mm-menu .mm-tileview.mm-listview > li > .mm-next:after, .mm-menu .mm-tileview.mm-listview > li > .mm-next:before, .mm-menu.mm-tileview .mm-listview > li > .mm-next:after, .mm-menu.mm-tileview .mm-listview > li > .mm-next:before, .mm-menu.mm-tileview .mm-panel:after {
  content: none;
  display: none; }

.mm-menu .mm-tileview.mm-listview > li, .mm-menu.mm-tileview .mm-listview > li {
  width: 50%;
  height: 0;
  padding: 50% 0 0;
  float: left;
  position: relative; }

.mm-menu .mm-tileview.mm-listview > li:after, .mm-menu.mm-tileview .mm-listview > li:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1; }

.mm-menu .mm-tileview.mm-listview > li.mm-tile-xs, .mm-menu.mm-tileview .mm-listview > li.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%; }

.mm-menu .mm-tileview.mm-listview > li.mm-tile-s, .mm-menu.mm-tileview .mm-listview > li.mm-tile-s {
  width: 25%;
  padding-top: 25%; }

.mm-menu .mm-tileview.mm-listview > li.mm-tile-l, .mm-menu.mm-tileview .mm-listview > li.mm-tile-l {
  width: 75%;
  padding-top: 75%; }

.mm-menu .mm-tileview.mm-listview > li.mm-tile-xl, .mm-menu.mm-tileview .mm-listview > li.mm-tile-xl {
  width: 100%;
  padding-top: 100%; }

.mm-menu .mm-tileview.mm-listview > li > a, .mm-menu .mm-tileview.mm-listview > li > span, .mm-menu.mm-tileview .mm-listview > li > a, .mm-menu.mm-tileview .mm-listview > li > span {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0; }

.mm-menu .mm-tileview.mm-listview > li > .mm-next, .mm-menu.mm-tileview .mm-listview > li > .mm-next {
  width: auto; }

.mm-menu.mm-tileview .mm-panel {
  padding-left: 0;
  padding-right: 0; }

.mm-menu.mm-tileview .mm-listview {
  margin: 0; }

#hamburger {
  box-sizing: border-box;
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  z-index: 4;
  outline: none; }
  @media only screen and (min-width: 1024px) {
    #hamburger {
      display: none; } }
#hamburger:before,
#hamburger:after,
#hamburger span {
  background: #4552CE;
  content: '';
  display: block;
  width: 35px;
  height: 5px;
  position: absolute;
  left: 7px; }

#hamburger:before {
  top: 12px; }

#hamburger span {
  top: 22px; }

#hamburger:after {
  top: 32px; }

/* Hamburger animation */
#hamburger:before,
#hamburger:after,
#hamburger span {
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out; }

html.mm-opening #hamburger:before,
html.mm-opening #hamburger:after {
  top: 20px; }

html.mm-opening #hamburger span {
  left: -50px;
  opacity: 0; }

html.mm-opening #hamburger:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

html.mm-opening #hamburger:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.mm-listview {
  font-size: inherit;
  text-transform: uppercase; }
  .mm-listview li:before {
    display: none; }
  .mm-listview > li {
    background: none; }
    .mm-listview > li .mm-next {
      height: 100% !important; }
    .mm-listview > li > a {
      padding-left: 15px;
      white-space: break-spaces; }
      .mm-listview > li > a .icon {
        display: none; }
  .mm-listview a {
    text-decoration: none;
    border: none; }
    .mm-listview a:hover, .mm-listview a:focus, .mm-listview a.active {
      background-color: #eee; }

.mm-search, .mm-navbar-top {
  height: 22.2rem;
  border-bottom: 0;
  padding-top: 10px; }

.mm-navbar .mm-search input[type=text] {
  background-image: url("../img/reused/icon_search.png");
  background-position: right 10px center;
  background-repeat: no-repeat; }

.mm-hasnavbar-top-1 .mm-panel {
  top: 14.2rem; }

html.mm-opened #mm-blocker, html.mm-blocking #mm-blocker {
  display: block; }

.mm-opening #mm-blocker {
  background-color: rgba(47, 59, 177, 0.7);
  transition: background 500ms ease 0.3s; }

ul.mm-listview {
  border-top: 1px solid #f2f2f2 !important; }
  ul.mm-listview ul.mm-listview {
    border-top: 0px solid #f2f2f2; }

.mm-menu > .mm-panel {
  background: inherit;
  border-color: inherit;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20px; }

.mm-vertical .mm-listview .mm-panel ul a {
  text-transform: none;
  font-size: 1.2rem; }

.mm-listview .mm-vertical .mm-panel {
  padding: 0 0 0 0px; }

#mobile_menu {
  z-index: 2; }

.NFI-wrapper {
  background: transparent; }

.NFI-button {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 2rem;
  border: none;
  cursor: pointer;
  outline: none;
  background-color: none;
  color: #4552CE;
  text-decoration: none;
  text-align: left !important;
  text-transform: uppercase;
  font-family: "LatoBold", sans-serif;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  .NFI-button:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e91a";
    display: inline-block;
    padding: 0 6px 0 0;
    font-size: 1.2rem;
    vertical-align: 0; }
  .NFI-button:hover, .NFI-button:focus {
    text-decoration: underline; }
    .NFI-button:hover:before, .NFI-button:focus:before {
      text-decoration: none; }
  .NFI-button label.error {
    text-transform: none;
    text-decoration: none !important;
    font-weight: 400;
    letter-spacing: 0;
    border: 0; }

input.NFI-filename {
  line-height: 21px;
  padding-left: 10px !important;
  padding-right: 10px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: transparent;
  border: none;
  width: 150px;
  height: 21px;
  font-size: 14px; }
  @media only screen and (min-width: 768px) {
    input.NFI-filename {
      width: 200px;
      padding-left: 10px !important;
      padding-right: 10px !important; } }
  input.NFI-filename:hover, input.NFI-filename:focus {
    border: none; }

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  margin-top: 2px;
  padding: 5px 0 10px;
  position: relative;
  width: 280px;
  color: #22252A;
  background: #4552CE;
  border: 1px solid #C9D0DF;
  border-radius: 4px;
  box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15); }
  .pika-single.is-hidden {
    display: none; }
  .pika-single.is-bound {
    position: absolute; }

.pika-single {
  *zoom: 1; }
  .pika-single:before, .pika-single:after {
    content: " ";
    display: table; }
  .pika-single:after {
    clear: both; }

.pika-lendar {
  float: left;
  width: 100%;
  margin: 0px; }
  .pika-lendar table tbody tr:nth-child(even) {
    background-color: #4552CE; }

.pika-title {
  position: relative;
  text-align: left;
  padding-left: 12px; }
  .pika-title .pika-label {
    color: #fff; }
  .pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0; }

.pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0 7px 0 0;
  padding: 5px 3px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500; }
  .pika-label:after {
    content: '\e90a';
    display: inline-block;
    margin: 0 0 3px 4px;
    font-size: 0.9rem;
    color: #fff;
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  background: transparent;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  height: 28px;
  text-indent: 20px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0ms 150ms ease-in-out;
  -moz-transition: 0ms 150ms ease-in-out;
  -o-transition: 0ms 150ms ease-in-out;
  -ms-transition: 0ms 150ms ease-in-out;
  transition: 0ms 150ms ease-in-out; }
  .pika-prev:hover,
  .pika-next:hover {
    opacity: 1;
    background-color: transparent; }
  .pika-prev.is-disabled,
  .pika-next.is-disabled {
    cursor: default; }

.pika-prev,
.is-rtl .pika-next {
  position: absolute;
  right: 24px;
  top: 3px;
  padding: 5px;
  *right: 0; }
  .pika-prev:after,
  .is-rtl .pika-next:after {
    display: inline-block;
    position: absolute;
    left: 8px;
    top: 9px;
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 6px solid #fff;
    border-bottom: 6px solid transparent;
    border-top: 0.6rem solid transparent;
    border-right: 0.6rem solid #fff;
    border-bottom: 0.6rem solid transparent; }
  .pika-prev:hover,
  .is-rtl .pika-next:hover {
    opacity: 0.6; }

.pika-next,
.is-rtl .pika-prev {
  position: absolute;
  right: 4px;
  top: 3px;
  padding: 5px; }
  .pika-next:after,
  .is-rtl .pika-prev:after {
    display: inline-block;
    position: absolute;
    left: 8px;
    top: 9px;
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
    border-top: 0.6rem solid transparent;
    border-bottom: 0.6rem solid transparent;
    border-left: 0.6rem solid #fff; }
  .pika-next:hover,
  .is-rtl .pika-prev:hover {
    opacity: 0.6; }

.pika-select {
  display: inline-block;
  *display: inline; }
  .pika-select option {
    color: #4552CE; }

table.pika-table tbody tr:nth-child(odd) td,
table.pika-table tbody tr:nth-child(even) td {
  background-color: transparent; }

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  margin: 0; }
  .pika-table th,
  .pika-table td {
    width: 14.285714285714286%;
    padding: 0;
    border: none;
    background: transparent; }
  .pika-table th {
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    font-weight: 500;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px; }
  .pika-table abbr {
    border: none;
    text-decoration: none; }

.pika-button {
  cursor: pointer;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 0px;
  font-weight: normal;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: transparent;
  border-radius: 4px; }
  .is-today .pika-button {
    color: #262626;
    background-color: #fff; }
  .is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #4552CE;
    box-shadow: inset 0 1px 3px #4552CE;
    color: #fff; }
  .is-disabled .pika-button, .is-outside-current-month .pika-button {
    pointer-events: none;
    cursor: default;
    color: #67728B;
    opacity: 1; }
  .pika-button:hover {
    color: #262626;
    background: #fff;
    box-shadow: none; }
  .pika-button:after {
    display: none; }

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

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

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

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

/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute; }

.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
  flex: 1 1 auto; }

.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto; }

.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden; }

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity; }

.tooltipster-fade.tooltipster-show {
  opacity: 1; }

/* grow */
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden; }

.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

/* swing */
.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform; }

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4); }

/* fall */
.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-fall.tooltipster-initial {
  top: 0 !important; }

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0 !important;
  opacity: 0; }

/* slide */
.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-slide.tooltipster-initial {
  left: -40px !important; }

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0 !important;
  opacity: 0; }

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.tooltipster-update-fade {
  animation: tooltipster-fading 400ms; }

/* rotate */
@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg); }
  75% {
    transform: rotate(2deg); }
  100% {
    transform: rotate(0); } }

.tooltipster-update-rotate {
  animation: tooltipster-rotating 600ms; }

/* scale */
@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.tooltipster-update-scale {
  animation: tooltipster-scaling 600ms; }

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid black;
  border-radius: 4px; }

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

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

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

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

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
  color: white;
  line-height: 18px;
  padding: 6px 14px; }

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px; }

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0; }

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0;
  top: 3px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0;
  top: -3px; }

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: black; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: black; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: black; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: black; }

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative; }

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

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

.tooltip {
  width: 17px;
  height: 17px;
  background: #5D9FEA;
  position: relative;
  display: inline-block;
  margin-left: 3px;
  vertical-align: -3px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  .tooltip:after {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "?";
    position: absolute;
    left: 5px;
    top: 0;
    font-size: 14px;
    color: #fff; }
  .tooltip:hover {
    background: #4552CE; }

div.tooltipster-base .tooltipster-box {
  background: #5D9FEA;
  border: 0;
  box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
  border: 1px solid #5D9FEA; }

div.tooltipster-base .tooltipster-content {
  color: #fff;
  padding: 14px 14px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.22px; }

div.tooltipster-base .tooltipster-arrow-border {
  border: 0; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #5D9FEA; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #5D9FEA; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #5D9FEA; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #5D9FEA; }

html.accessibility_version {
  font-size: 12px; }

html {
  box-sizing: border-box; }

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

.global_container {
  max-width: 1118px;
  margin: 0 auto; }

#mm-0 {
  overflow: hidden; }

.index_container {
  padding-top: 70px;
  padding-bottom: 30px;
  min-height: 400px;
  position: relative; }
  @media only screen and (min-width: 1024px) {
    .index_container {
      padding-top: 194px; } }
.hero_container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 617px;
  background-color: #F6F6FE;
  background: linear-gradient(#F6F6FE, #FFFFFF);
  z-index: -1; }
  @media only screen and (min-width: 1024px) {
    .hero_container {
      height: 667px; } }
.homepage_container {
  padding-top: 60px;
  padding-bottom: 30px;
  overflow: hidden;
  min-height: 600px; }
  @media only screen and (min-width: 1024px) {
    .homepage_container {
      padding-top: 30px; } }
img {
  max-width: 100%;
  height: auto; }

.content_date {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 16px 0;
  color: #67728B;
  font-size: 1.2rem; }
  @media only screen and (min-width: 1024px) {
    .content_date {
      margin: 0 0 32px; } }
  .content_date .icon {
    margin-right: 12px;
    font-size: 1.6rem; }

h1.main_title {
  margin: 0 0 12px 0; }
  h1.main_title.no_updatetime {
    margin: 0 0 32px; }

h2.main_title {
  margin: 0 0 12px 0;
  font-size: 2.8rem;
  line-height: 1.21053;
  font-family: "PT Serif", serif;
  font-weight: 600; }
  h2.main_title.no_updatetime {
    margin: 0 0 32px; }
  @media only screen and (min-width: 1024px) {
    h2.main_title {
      font-size: 3.8rem; } }
h2.object_title {
  margin: 0 0 16px 0; }
  @media only screen and (min-width: 1200px) {
    h2.object_title {
      margin: 0 0 16px 0; } }
h3.widget_title {
  margin: 0 0 16px 0; }
  @media only screen and (min-width: 1200px) {
    h3.widget_title {
      margin: 0 0 16px 0; } }
.one_widget {
  margin: 0 0 20px 0; }

.more_btn_cont {
  text-align: center; }
  .more_btn_cont button {
    margin: 20px 0; }

.loader_content {
  display: none;
  padding: 20px 0;
  text-align: center; }

/* Basic helpers */
.clear {
  *zoom: 1; }

.clear:before, .clear:after {
  content: "";
  display: table; }

.clear:after {
  clear: both; }

.tar {
  text-align: right; }

.tal {
  text-align: left; }

.no_bg {
  background: none !important;
  border: none !important; }

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

.fleft {
  float: left; }

.fright {
  float: right; }

.notoppadd {
  padding-top: 0px !important; }

.vis_hidden {
  visibility: hidden; }

.vis_hidden_1px {
  visibility: hidden;
  height: 1px; }

@media only screen and (min-width: 768px) {
  .disp_table {
    display: table;
    width: 100%;
    table-layout: fixed; } }

.disp_cell {
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) {
    .disp_cell {
      height: 100%;
      margin: 0;
      display: table-cell;
      vertical-align: top;
      padding-left: 15px; } }
  .disp_cell:first-child {
    padding-left: 0; }
  .disp_cell:last-child {
    margin-bottom: 0; }

.disp_table_all {
  display: table;
  width: 100%;
  table-layout: fixed; }

.disp_cell_all {
  margin: 0;
  display: table-cell;
  vertical-align: top;
  height: 100%; }

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

.formatted_text > *:first-child {
  margin-top: 0; }

.formatted_text > *:last-child {
  margin-bottom: 0; }

.loader_content_filter {
  display: none;
  padding: 20px 0;
  text-align: center; }

.iframe_wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  clear: both;
  padding-bottom: 56.25%;
  /*padding-bottom: 75%;	// 4x3 Aspect Ratio*/ }
  .iframe_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.content_template ul {
  overflow: hidden; }

.h1, .h2, .h3, .h4, .h5, .h6 {
  display: block; }

/* Basic helpers end */
.main_layout {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 100%; }

.sidebar_content {
  -webkit-box-flex: 0 0 31%;
  -moz-box-flex: 0 0 31%;
  -webkit-flex: 0 0 31%;
  -ms-flex: 0 0 31%;
  flex: 0 0 31%;
  padding-left: 16px; }
  @media only screen and (max-width: 1023px) {
    .sidebar_content {
      display: none; } }
.main_content {
  width: 100%; }

.bg_image {
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.hidden {
  visibility: hidden;
  opacity: 0; }

.visible {
  visibility: visible; }

.display_none {
  display: none; }

.hidden_promoblocks {
  visibility: hidden;
  height: 0; }

.hidden_mobile_menu {
  height: 0;
  visibility: hidden; }
  .hidden_mobile_menu .mobile_menu_parent {
    height: 0; }
  .hidden_mobile_menu .soc_icons {
    height: 0; }
  .hidden_mobile_menu ul {
    height: 0;
    margin: 0; }

.label_hidden {
  visibility: hidden;
  position: absolute;
  font-size: 0px; }

.four-cols-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%; }
  .four-cols-list .list_item {
    width: 23.5%;
    margin: 1%;
    float: none; }
    .four-cols-list .list_item:nth-child(4n+1) {
      margin-left: 0; }
    .four-cols-list .list_item:nth-child(4n) {
      margin-right: 0; }
    .four-cols-list .list_item:nth-child(-n+4) {
      margin-top: 0; }
    @media only screen and (max-width: 1023px) {
      .four-cols-list .list_item {
        width: 32%; }
        .four-cols-list .list_item:nth-child(-n+4) {
          margin-top: 1%; }
        .four-cols-list .list_item:nth-child(4n+1) {
          margin-left: 1%; }
        .four-cols-list .list_item:nth-child(4n) {
          margin-right: 1%; }
        .four-cols-list .list_item:nth-child(3n+1) {
          margin-left: 0; }
        .four-cols-list .list_item:nth-child(3n) {
          margin-right: 0; }
        .four-cols-list .list_item:nth-child(-n+3) {
          margin-top: 0; } }
    @media only screen and (max-width: 768px) {
      .four-cols-list .list_item {
        width: 49%; }
        .four-cols-list .list_item:nth-child(odd) {
          margin: 1% 1% 1% 0; }
        .four-cols-list .list_item:nth-child(even) {
          margin: 1% 0 1% 1%; }
        .four-cols-list .list_item:nth-child(-n+2) {
          margin-top: 0; } }
    @media only screen and (max-width: 500px) {
      .four-cols-list .list_item {
        width: 100%; }
        .four-cols-list .list_item:nth-child(odd) {
          margin: 0.8rem 0; }
        .four-cols-list .list_item:nth-child(even) {
          margin: 0.8rem 0; }
        .four-cols-list .list_item:first-child {
          margin-top: 0; } }
.three-cols-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%; }
  .three-cols-list .list_item {
    width: 32%;
    margin: 1%;
    float: none; }
    .three-cols-list .list_item:nth-child(3n+1) {
      margin-left: 0; }
    .three-cols-list .list_item:nth-child(3n) {
      margin-right: 0; }
    @media only screen and (max-width: 1023px) {
      .three-cols-list .list_item {
        width: 49%; }
        .three-cols-list .list_item:nth-child(odd) {
          margin: 1% 1% 1% 0; }
        .three-cols-list .list_item:nth-child(even) {
          margin: 1% 0 1% 1%; } }
    @media only screen and (max-width: 768px) {
      .three-cols-list .list_item {
        width: 100%; }
        .three-cols-list .list_item:nth-child(odd) {
          margin: 0.8rem 0; }
        .three-cols-list .list_item:nth-child(even) {
          margin: 0.8rem 0; }
        .three-cols-list .list_item:first-child {
          margin-top: 0; } }
.two-cols-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%; }
  .two-cols-list .list_item {
    width: 49.5%; }
    .two-cols-list .list_item:nth-child(odd) {
      margin: 0.5% 0.5% 0.5% 0; }
    .two-cols-list .list_item:nth-child(even) {
      margin: 0.5% 0 0.5% 0.5%; }
    @media only screen and (max-width: 768px) {
      .two-cols-list .list_item {
        width: 100%; }
        .two-cols-list .list_item:nth-child(odd) {
          margin: 0.8rem 0; }
        .two-cols-list .list_item:nth-child(even) {
          margin: 0.8rem 0; }
        .two-cols-list .list_item:first-child {
          margin-top: 0; } }
.btn_back_wrapper {
  margin: 32px 0 0 0;
  padding: 16px 0 0 0;
  border-top: 1px solid #C9D0DF; }

[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak,
.ng-hide:not(.ng-hide-animate) {
  display: none !important; }

ng\:form {
  display: block; }

.ng-animate-shim {
  visibility: hidden; }

.ng-anchor {
  position: absolute; }

.photos_gallery {
  margin: 30px 0 0 0; }
  .photos_gallery ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0; }
    .photos_gallery ul li {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      position: relative;
      width: 24%;
      margin: 0 1% 1% 0;
      padding: 0;
      background-image: none; }
      @media only screen and (max-width: 769px) {
        .photos_gallery ul li {
          width: 32%; } }
      @media only screen and (max-width: 499px) {
        .photos_gallery ul li {
          width: 49%; } }
      .photos_gallery ul li:before {
        display: none; }
      .photos_gallery ul li a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        padding-bottom: 50%;
        border-radius: 4px;
        overflow: hidden;
        text-decoration: none; }
  .photos_gallery h3 {
    margin: 0 0 24px 0; }

.tac {
  text-align: center; }

.w50 {
  width: 50%; }

.titlepage_outer.content-is-prepared {
  min-height: calc(100vh - 300px);
  padding-top: 40px; }
  .titlepage_outer.content-is-prepared .section_slides {
    margin-bottom: 50px; }
  .titlepage_outer.content-is-prepared h1 {
    text-align: center;
    margin: 50px 0; }

button:focus, .mygtukas:focus, .slick-arrow:focus {
  outline: 2px solid black;
  outline-offset: 2px;
  border-radius: 5px; }

.section_important_information:focus-within {
  outline: 2px solid black !important;
  outline-offset: 2px;
  border-radius: 5px; }

.equalheight_activity:focus .drop_shadow {
  outline: 2px solid black !important;
  outline-offset: 2px;
  border-radius: 5px; }

.select2-selection:focus-within:not(:active), .select2-results__option:focus-within:not(:active), input:focus-within:not(:active), .input_group_parent:focus-within:not(:active) {
  outline: 2px solid black;
  outline-offset: 2px;
  border-radius: 5px; }

.select2-selection:focus:not(:focus-visible), .select2-results__option:focus:not(:focus-visible), input:focus:not(:focus-visible), .input_group_parent:focus:not(:focus-visible) {
  outline: none; }

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

.header_container .header_bg {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
  background-color: #fff;
  z-index: 3; }

.header_container .header_layout {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  height: 73px;
  position: relative;
  background-color: #fff; }
  .header_container .header_layout:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
    background-color: #fff;
    z-index: -1; }

.header_container .header_top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1088px;
  height: 37px;
  border-bottom: 1px solid #C9D0DF;
  -webkit-transition: all 50ms linear;
  -moz-transition: all 50ms linear;
  -o-transition: all 50ms linear;
  -ms-transition: all 50ms linear;
  transition: all 50ms linear; }
  .header_container .header_top.hidden_header_top {
    height: 0;
    visibility: hidden;
    opacity: 0; }
  .header_container .header_top .address {
    font-size: 1.2rem; }
    .header_container .header_top .address .text {
      margin-right: 3px; }

.header_container .logo_link {
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  height: 84px;
  width: 70px; }
  .header_container .logo_link img {
    display: block;
    width: 100%;
    height: 100%; }

.search_cont {
  margin: 8px 52px 8px auto; }
  .search_cont .search_suggest_form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative; }
    .search_cont .search_suggest_form:focus button {
      color: #4552CE; }
    .search_cont .search_suggest_form input {
      width: 200px;
      height: 20px;
      padding: 0 0 5px;
      border: 0;
      border-radius: 0;
      border-bottom: 1px solid #22252A;
      font-size: 1.2rem; }
      .search_cont .search_suggest_form input.placeholder {
        color: #A8A8A8;
        font-size: 1.2rem; }
      .search_cont .search_suggest_form input:-moz-placeholder {
        font-size: 1.2rem;
        color: #A8A8A8; }
      .search_cont .search_suggest_form input::-webkit-input-placeholder {
        font-size: 1.2rem;
        color: #A8A8A8; }
      .search_cont .search_suggest_form input:-ms-input-placeholder {
        font-size: 1.2rem;
        color: #A8A8A8; }
      .search_cont .search_suggest_form input:focus {
        border-color: #4552CE; }
      .search_cont .search_suggest_form input:focus + button {
        color: #4552CE; }
    .search_cont .search_suggest_form button {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      height: 20px;
      padding: 0 0 5px;
      font-size: 1.6rem;
      color: #22252A;
      background: none; }
      .search_cont .search_suggest_form button:hover {
        background: none; }
  .search_cont .search_suggest_results {
    position: absolute;
    box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
    z-index: 3;
    background-color: #fff; }

.menu_icons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .menu_icons .soc_icons {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .menu_icons .site_icons {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .menu_icons .menu_icon {
    margin-right: 22px;
    color: #22252A; }
    .menu_icons .menu_icon:hover {
      color: #4552CE;
      text-decoration: none; }
    .menu_icons .menu_icon:focus {
      text-decoration: none; }
    .menu_icons .menu_icon.theme_switch {
      font-size: 1.6rem; }
    .menu_icons .menu_icon.active {
      color: #4552CE; }
  .menu_icons .icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    font-size: 1.9rem; }
  @media only screen and (min-width: 1024px) {
    .menu_icons .search {
      display: none; } }
.select_language {
  margin: 0 9px 0 auto; }
  @media only screen and (min-width: 1024px) {
    .select_language {
      margin: 0; } }
  .select_language .current_lang, .select_language .other_lang {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    font-size: 1.6rem;
    color: #22252A;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .select_language .current_lang .icon, .select_language .other_lang .icon {
      margin: 0 0 0 6px;
      font-size: 0.8rem; }
    .select_language .current_lang:hover, .select_language .other_lang:hover {
      color: #4552CE;
      text-decoration: none; }
  .select_language .current_lang_conts {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%; }
    .select_language .current_lang_conts a:not(:last-child) {
      margin-right: 10px; }
    .select_language .current_lang_conts a.active {
      font-weight: 700; }
  .select_language .dropped .current_lang {
    color: #4552CE; }
    .select_language .dropped .current_lang .icon {
      transform: rotate(180deg); }
  .select_language .langs_cont {
    position: relative;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center; }
  .select_language .langs_drop {
    position: absolute;
    top: 43px;
    left: 0;
    width: 100%;
    border-radius: 4px;
    overflow: hidden; }
    @media only screen and (min-width: 1024px) {
      .select_language .langs_drop {
        top: 37px; } }
    .select_language .langs_drop .langs_drop_cont {
      position: relative;
      display: none;
      text-align: center;
      width: 100%; }
    .select_language .langs_drop .other_lang {
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-flex-pack: flex-start; }

/* NAV for desktops*/
.topnav {
  position: absolute;
  bottom: 13px; }
  .topnav.left {
    right: 55%; }
    .topnav.left > ul > li > a {
      padding-right: 32px; }
  .topnav.right {
    left: 55%; }
    .topnav.right > ul > li > a {
      padding-left: 32px; }
  .topnav ul {
    margin: 0;
    padding: 0;
    overflow: visible;
    list-style-type: none; }
  .topnav li {
    display: block;
    margin: 0;
    padding: 0;
    background: none;
    list-style-type: none; }
    .topnav li:before {
      display: none; }
    .topnav li .icon {
      display: inline-block;
      margin-left: 6px;
      font-size: 0.8rem; }
    .topnav li:hover > a {
      color: #4552CE;
      text-decoration: none; }
      .topnav li:hover > a .icon {
        transform: rotate(180deg);
        -webkit-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -o-transition: all 150ms ease-in-out;
        -ms-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in-out; }
      .topnav li:hover > a .text {
        text-decoration: underline; }
    .topnav li:hover > ul {
      display: block; }
  .topnav a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
  .topnav > ul {
    /* submenu*/ }
    .topnav > ul > li {
      display: inline-block;
      position: relative;
      text-align: center;
      padding: 16px 0;
      cursor: pointer;
      /*            &.Selected {
                > a {
                    color: $active_color;
                }
            }*/ }
      .topnav > ul > li > a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        vertical-align: middle;
        font-size: 1.6rem;
        line-height: 1;
        text-align: center;
        border: none;
        color: #22252A;
        font-family: "LatoBold", sans-serif;
        text-decoration: none; }
        .topnav > ul > li > a.Selected {
          color: #4552CE; }
      .topnav > ul > li:hover > a, .topnav > ul > li:focus > a {
        color: #4552CE; }
        .topnav > ul > li:hover > a .icon, .topnav > ul > li:focus > a .icon {
          transform: rotate(180deg); }
      .topnav > ul > li:hover > ul, .topnav > ul > li:focus > ul {
        display: block; }
      .topnav > ul > li > ul:before {
        content: "";
        width: 12px;
        height: 12px;
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        border-top: 1px solid #C9D0DF;
        border-left: 1px solid #C9D0DF;
        background-color: #fff; }
      .topnav > ul > li > ul > li {
        position: relative; }
        .topnav > ul > li > ul > li:hover a {
          text-decoration: none; }
        .topnav > ul > li > ul > li a {
          -webkit-justify-content: space-between;
          -moz-justify-content: space-between;
          -ms-justify-content: space-between;
          justify-content: space-between;
          -ms-flex-pack: space-between;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          -ms-flex-align: center;
          align-items: center; }
          .topnav > ul > li > ul > li a .icon {
            margin: 0; }
        .topnav > ul > li > ul > li > ul {
          top: 0;
          left: 100%;
          transform: translate(0); }
      .topnav > ul > li:last-child > ul {
        left: unset;
        right: unset; }
        .topnav > ul > li:last-child > ul:before {
          left: 73%; }
    .topnav > ul ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 220px;
      background: #fff;
      text-align: left;
      border: 1px solid #C9D0DF;
      border-radius: 4px;
      z-index: 2; }
      .topnav > ul ul li {
        padding: 0 8px; }
        .topnav > ul ul li a {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          color: #22252A;
          padding: 12px 0px;
          border-bottom: 1px solid #C9D0DF; }
          .topnav > ul ul li a:hover, .topnav > ul ul li a:focus {
            color: #4552CE;
            text-decoration: underline; }
        .topnav > ul ul li:last-child a {
          border-bottom: 0; }
        .topnav > ul ul li.Selected a.active, .topnav > ul ul li.Selected a.in_path {
          color: #4552CE; }
          .topnav > ul ul li.Selected a.active .text, .topnav > ul ul li.Selected a.in_path .text {
            text-decoration: underline; }

li.has-submenu.open > ul {
  display: block; }

.fixfixed .fixed_header {
  position: absolute; }

.fixed_header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: fixed;
  top: 0;
  height: 50px;
  width: 100%;
  box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
  background-color: #fff;
  text-align: center;
  z-index: 3; }
  @media only screen and (min-width: 1024px) {
    .fixed_header {
      display: none; } }
  .fixed_header a.logo_link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    vertical-align: middle;
    border: none; }
    .fixed_header a.logo_link img {
      height: 38px;
      width: auto;
      margin-top: 6px; }

.mobile_menu_parent li:before {
  display: none; }

.mobile_menu_parent a,
.mobile_menu_parent a:focus {
  color: #4552CE;
  text-decoration: none; }

.mobile_menu_parent .menu_icons {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center; }
  .mobile_menu_parent .menu_icons .site_icons .menu_icon:last-child {
    margin: 0; }

.user_control {
  position: relative; }
  .user_control.mobile {
    margin-top: 15px;
    text-align: center; }
    .user_control.mobile .user_control__links {
      width: 100%;
      right: none;
      right: unset; }
  .user_control__button {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #4552CE;
    border-radius: 4px;
    font-size: 1.4rem;
    color: #4552CE;
    cursor: pointer;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .user_control__button:hover {
      background-color: #4552CE;
      color: #fff; }
    .user_control__button .icon.icon-user-profile {
      margin-right: 8px;
      font-size: 1.9rem; }
    .user_control__button .icon.icon-chevron-down {
      font-size: 0.8rem; }
    .user_control__button .text {
      margin-right: 8px; }
  .user_control__links {
    display: none;
    position: absolute;
    top: 108%;
    right: 0;
    padding: 20px 16px;
    border: 1px solid #4552CE;
    border-radius: 4px;
    background-color: #fff;
    z-index: 5; }
  .user_control__link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #C9D0DF;
    color: #22252A;
    text-decoration: none;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .user_control__link:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: 0; }
    .user_control__link:hover, .user_control__link:focus {
      color: #4552CE;
      text-decoration: none; }
    .user_control__link .icon {
      margin-right: 16px;
      font-size: 2.1rem; }

.menu_icons .site_icons .accessibility_icon {
  margin-right: 22px; }
  .menu_icons .site_icons .accessibility_icon img {
    width: 21px;
    height: 21px; }

.footer_container {
  margin: 0;
  background: #F6F6FE;
  padding: 32px 0 0 0; }
  @media only screen and (min-width: 1024px) {
    .footer_container {
      padding: 52px 0 0 0; } }
  .footer_container p, .footer_container div, .footer_container a, .footer_container span {
    color: #22252A; }
  .footer_container span a {
    color: #4552CE; }
  .footer_container .footer_title {
    display: block;
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-family: "LatoBold", sans-serif;
    color: #22252A; }

.footer_top {
  margin-bottom: 30px; }
  @media only screen and (min-width: 769px) {
    .footer_top {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row wrap;
      -moz-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap; } }
  .footer_top .content {
    margin-bottom: 20px; }
    @media only screen and (min-width: 769px) {
      .footer_top .content.menu {
        width: 65%; } }
    @media only screen and (min-width: 340px) {
      .footer_top .content.menu ul {
        column-count: 2; } }
    @media only screen and (min-width: 1024px) {
      .footer_top .content.menu ul {
        column-count: 3;
        margin-right: 45px; } }
  .footer_top ul {
    margin: 0; }
    .footer_top ul li {
      margin-bottom: 12px; }
      .footer_top ul li:last-child {
        margin-bottom: 0; }
      .footer_top ul li a.active, .footer_top ul li a.in_path {
        color: #4552CE;
        text-decoration: underline; }
      .footer_top ul li a:hover {
        color: #4552CE; }
  .footer_top .one_widget {
    margin: 0; }
    @media only screen and (min-width: 769px) {
      .footer_top .one_widget {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1; } }
    .footer_top .one_widget form {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      @media only screen and (min-width: 1024px) {
        .footer_top .one_widget form {
          -webkit-flex-direction: row;
          -moz-flex-direction: row;
          -ms-flex-direction: row;
          flex-direction: row; } }
      .footer_top .one_widget form .type_item {
        margin: 0 0 12px; }
        @media only screen and (min-width: 1024px) {
          .footer_top .one_widget form .type_item {
            margin: 0 16px 0 0;
            width: 100%; } }
        .footer_top .one_widget form .type_item input {
          max-width: none;
          border: 1px solid #C9D0DF;
          border-radius: 4px;
          padding-left: 16px;
          height: 40px;
          background-color: #fff; }
          @media only screen and (min-width: 1024px) {
            .footer_top .one_widget form .type_item input {
              height: 45px; } }
      .footer_top .one_widget form button {
        width: 100%; }
        @media only screen and (min-width: 1024px) {
          .footer_top .one_widget form button {
            height: 45px; } }
  .footer_top .newsletter_container {
    -webkit-box-flex: 1 0 0%;
    -moz-box-flex: 1 0 0%;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%; }
    .footer_top .newsletter_container .reportbug_container {
      margin-top: 27px; }
      .footer_top .newsletter_container .reportbug_container .reportbug {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        color: #4552CE;
        text-decoration: none; }
        .footer_top .newsletter_container .reportbug_container .reportbug .icon {
          margin-right: 11px;
          font-size: 1.7rem;
          color: inherit; }
        .footer_top .newsletter_container .reportbug_container .reportbug .text {
          color: inherit; }
        .footer_top .newsletter_container .reportbug_container .reportbug:hover .text {
          text-decoration: underline; }

.footer_bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 0 27px;
  border-top: 1px solid #C9D0DF; }
  .footer_bottom p, .footer_bottom div, .footer_bottom a, .footer_bottom span, .footer_bottom li {
    font-size: 1.2rem; }
  .footer_bottom .details_container,
  .footer_bottom .contacts_container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    align-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 16px; }
  .footer_bottom .footer_title {
    text-align: center;
    font-size: 1.4rem; }
  .footer_bottom .logo_container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 0 0 16px; }
    .footer_bottom .logo_container img {
      width: 70px;
      height: 84px; }
  .footer_bottom .details_container .municipality_details p {
    margin: 0;
    text-align: center; }
  .footer_bottom .contacts_container ul {
    margin: 0; }
    .footer_bottom .contacts_container ul li:before {
      display: none; }
    .footer_bottom .contacts_container ul li .content_item {
      display: block;
      text-align: center; }
      .footer_bottom .contacts_container ul li .content_item.email a {
        word-break: break-all; }
      .footer_bottom .contacts_container ul li .content_item .text {
        margin-right: 3px; }
  .footer_bottom .copyright_container {
    width: 100%;
    font-size: 1.2rem;
    color: #22252A;
    text-align: center; }
    .footer_bottom .copyright_container a, .footer_bottom .copyright_container span {
      color: #22252A; }
  @media only screen and (min-width: 769px) {
    .footer_bottom {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -ms-flex-align: flex-start;
      align-items: flex-start;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .footer_bottom .details_container,
      .footer_bottom .contacts_container {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-content: flex-start;
        -moz-align-content: flex-start;
        -ms-align-content: flex-start;
        align-content: flex-start;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0 32px 0 0;
        max-width: 250px; }
      .footer_bottom .footer_title {
        margin-bottom: 7px;
        text-align: left; }
      .footer_bottom .logo_container {
        margin: 0 16px 0 0; }
      .footer_bottom .details_container .municipality_details p {
        text-align: left; }
      .footer_bottom .contacts_container ul li .content_item {
        text-align: left; }
      .footer_bottom .copyright_container {
        margin-top: 16px; } }
  @media only screen and (min-width: 1024px) {
    .footer_bottom {
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
      .footer_bottom .copyright_container {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-align-self: center;
        -moz-align-self: center;
        -ms-align-self: center;
        align-self: center;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: flex-end;
        -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
        justify-content: flex-end;
        -ms-flex-pack: flex-end;
        -webkit-box-flex: 1 0 0%;
        -moz-box-flex: 1 0 0%;
        -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        height: 100%;
        width: auto;
        margin-top: 0; } }
/*! Info and error container */
.error_container, .info_container {
  margin: 0 0 20px 0;
  padding: 10px 18px; }
  @media only screen and (min-width: 1600px) {
    .error_container, .info_container {
      padding: 20px 28px; } }
.error_container p, .info_container p {
  margin: 10px 0;
  font-family: "LatoBold", sans-serif; }
  .error_container p:first-of-type, .info_container p:first-of-type {
    margin-top: 0; }
  .error_container p:last-of-type, .info_container p:last-of-type {
    margin-bottom: 0; }
  .error_container p:only-child, .info_container p:only-child {
    margin: 0; }

.error_container {
  border: 1px solid #ED4D4D;
  border-radius: 4px; }

.error_container p {
  color: #ED4D4D; }

.info_container {
  border: 1px solid #1f8a70;
  border-radius: 4px; }

.info_container p {
  color: #1f8a70; }

label.error {
  display: block;
  color: #ED4D4D;
  font-size: 0.8em;
  line-height: 1.3;
  margin: 5px 0 15px 0; }

.type_item.error input, .type_item.error textarea, .type_item.error .select2-container--default .select2-selection--single {
  border-color: #ED4D4D; }

/*! Info and error container END*/
/* Cookie notice*/
#cookie_block {
  position: relative;
  display: none;
  width: 100%;
  top: 0px;
  left: 0px;
  background: #d4d7dc;
  padding: 15px 41px 15px 20px;
  z-index: 9999; }
  #cookie_block p {
    margin: 0;
    line-height: 1.3;
    font-size: 0.9em; }
  @media only screen and (min-width: 1024px) {
    #cookie_block .cookie_cont {
      display: table;
      table-layout: auto;
      width: 100%; }
      #cookie_block .cookie_cont .cookie_text {
        display: table-cell;
        vertical-align: top;
        padding-right: 15px; }
      #cookie_block .cookie_cont .cookie_btn_cell {
        display: table-cell;
        vertical-align: top; } }
  @media only screen and (max-width: 1023px) {
    #cookie_block .cookie_btn_cell {
      padding-top: 20px; } }
  #cookie_block .hide_cookie_msg {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    color: #4552CE;
    font-size: 1.2em; }
    #cookie_block .hide_cookie_msg:hover {
      opacity: 0.7; }

.breadcrumbs {
  display: none; }
  @media only screen and (min-width: 1024px) {
    .breadcrumbs {
      display: block;
      margin: 0 0 32px 0; } }
  .breadcrumbs a {
    font-size: 1.2rem;
    color: #67728B; }
    .breadcrumbs a:hover, .breadcrumbs a:focus {
      text-decoration: underline; }
  .breadcrumbs .breadcrumb_separator {
    display: inline-block;
    margin: 0 9px;
    color: #67728B;
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
    .breadcrumbs .breadcrumb_separator:after {
      content: "\e905";
      vertical-align: 3px;
      display: inline-block;
      font-size: 0.8rem; }
    .breadcrumbs .breadcrumb_separator:first-child {
      display: none; }
  .breadcrumbs .last_breadcrumb {
    font-size: 1.2rem; }

.phpcaptcha_container .disp_table {
  table-layout: auto;
  width: auto; }

.phpcaptcha_container .disp_cell {
  vertical-align: top; }

.phpcaptcha_container img {
  margin: -15px 0 0 0; }

.phpcaptcha_container button {
  background: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
  padding: 0;
  height: auto;
  line-height: auto;
  color: #4552CE;
  vertical-align: middle;
  display: none; }
  @media only screen and (min-width: 768px) {
    .phpcaptcha_container button {
      display: inline-block; } }
  .phpcaptcha_container button span {
    display: inline-block;
    font-size: 20px; }
  .phpcaptcha_container button:after {
    display: none; }
  .phpcaptcha_container button.mobile_refresh_button {
    display: inline-block;
    vertical-align: top; }
    @media only screen and (min-width: 768px) {
      .phpcaptcha_container button.mobile_refresh_button {
        display: none; } }
.text_before {
  margin: 0 0 25px 0;
  overflow: hidden; }
  .text_before p:first-of-type {
    margin-top: 0; }
  .text_before p:last-of-type {
    margin-bottom: 0; }
  .text_before p:only-child {
    margin: 0; }

.text_after {
  margin: 25px 0 0 0;
  overflow: hidden; }
  .text_after p:first-of-type {
    margin-top: 0; }
  .text_after p:last-of-type {
    margin-bottom: 0; }
  .text_after p:only-child {
    margin: 0; }

.album_loading {
  display: none;
  position: fixed;
  z-index: 55;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  border-radius: 5px;
  background-color: #2e2e2e;
  background-image: url("../img/reused/loading32_dark.gif");
  background-position: center;
  background-repeat: no-repeat; }

.pager, .pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 25px 0 0; }
  .pager li, .pagination li {
    background-image: none; }
  .pager a, .pagination a {
    margin: 0 7px 0 0;
    color: #67728B;
    font-size: 1.6rem;
    line-height: 1;
    text-decoration: none;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .pager a:first-child, .pagination a:first-child {
      margin: 0 9px 0 0; }
    .pager a:last-child, .pagination a:last-child {
      margin: 0; }
    .pager a:hover, .pagination a:hover {
      color: #4552CE;
      font-family: "LatoBold", sans-serif; }
    .pager a.current, .pagination a.current {
      color: #4552CE;
      font-family: "LatoBold", sans-serif; }
  .pager .separator, .pagination .separator {
    margin: 0 7px 0 0; }
  .pager .back_button,
  .pager .forw_button, .pagination .back_button,
  .pagination .forw_button {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    margin-top: 0;
    font-size: 1.4rem;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
    color: #5D9FEA; }
    .pager .back_button.dis,
    .pager .forw_button.dis, .pagination .back_button.dis,
    .pagination .forw_button.dis {
      color: #67728B; }
      .pager .back_button.dis:hover,
      .pager .forw_button.dis:hover, .pagination .back_button.dis:hover,
      .pagination .forw_button.dis:hover {
        cursor: auto; }
        .pager .back_button.dis:hover .icon,
        .pager .forw_button.dis:hover .icon, .pagination .back_button.dis:hover .icon,
        .pagination .forw_button.dis:hover .icon {
          color: #67728B; }
    .pager .back_button .icon,
    .pager .forw_button .icon, .pagination .back_button .icon,
    .pagination .forw_button .icon {
      font-size: 1.6rem; }
    .pager .back_button .left,
    .pager .forw_button .left, .pagination .back_button .left,
    .pagination .forw_button .left {
      display: inline-block;
      transform: rotate(180deg); }
    .pager .back_button:hover .icon,
    .pager .forw_button:hover .icon, .pagination .back_button:hover .icon,
    .pagination .forw_button:hover .icon {
      color: #4552CE;
      border-color: #4552CE; }

.pagination {
  margin: 0; }
  .pagination li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 0;
    line-height: 1; }
    .pagination li:before {
      display: none; }
    .pagination li.active a {
      color: #4552CE;
      font-weight: 500; }
    .pagination li.disabled a {
      cursor: auto; }
    .pagination li.prev, .pagination li.next {
      margin-left: 16px; }
      .pagination li.prev a, .pagination li.next a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        border-radius: 50%;
        width: 3.2rem;
        height: 3.2rem;
        margin: 0;
        box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
        color: #5D9FEA;
        font-size: 0; }
        .pagination li.prev a:before, .pagination li.next a:before {
          font-size: 1.4rem;
          content: "\e905";
          background-color: #fff;
          /* use !important to prevent issues with browser extensions that change fonts */
          font-family: 'icomoon' !important;
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          display: inline-block;
          vertical-align: middle;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
      .pagination li.prev.disabled, .pagination li.next.disabled {
        cursor: auto; }
        .pagination li.prev.disabled a, .pagination li.next.disabled a {
          color: #67728B; }
    .pagination li.prev {
      margin: 0 16px 0 0; }
      .pagination li.prev a:before {
        display: inline-block;
        transform: rotate(180deg); }

.news_filters {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0 0 20px; }
  .news_filters .filter {
    width: 300px;
    margin: 16px 16px 0 0; }
    .news_filters .filter.disabled .select_name {
      color: #67728B; }
    .news_filters .filter .select2 {
      font-size: 1.2rem; }
    @media only screen and (max-width: 769px) {
      .news_filters .filter {
        width: 100%;
        margin: 16px 0 0 0; }
        .news_filters .filter .select2 {
          max-width: none; } }
    .news_filters .filter .select_name {
      display: inline-block;
      margin: 0 0 8px;
      font-size: 1.6rem;
      font-family: "LatoBold", sans-serif; }
  @media only screen and (max-width: 769px) {
    .news_filters .fake_select {
      max-width: none; } }
.reset_search {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
  align-self: flex-end;
  margin: 16px 0 0 0;
  font-size: 1.4rem;
  text-decoration: none; }
  @media only screen and (min-width: 769px) {
    .reset_search {
      margin: 0 0 7px 0; } }
  .reset_search:hover .text {
    text-decoration: underline; }
  .reset_search .text {
    margin: 0 5px 0 0;
    font-size: 1.4rem; }
  .reset_search .icon {
    font-size: 1.2rem; }

.years_months_selectable_filters .filters_container,
.meetings_filter .filters_container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 32px; }
  @media only screen and (min-width: 769px) {
    .years_months_selectable_filters .filters_container,
    .meetings_filter .filters_container {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }
.years_months_selectable_filters .filter,
.meetings_filter .filter {
  margin-bottom: 16px; }
  @media only screen and (min-width: 769px) {
    .years_months_selectable_filters .filter,
    .meetings_filter .filter {
      min-width: 168px;
      margin: 0 32px 0 0; } }
.years_months_selectable_filters .label,
.meetings_filter .label {
  display: block;
  margin-bottom: 4px;
  font-size: 1.6rem;
  font-family: "LatoBold", sans-serif; }

.years_months_selectable_filters .btn_search,
.meetings_filter .btn_search {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
  align-self: flex-end;
  margin: 0 0 16px 0; }
  @media only screen and (min-width: 768px) {
    .years_months_selectable_filters .btn_search,
    .meetings_filter .btn_search {
      margin: 0 32px 0 0; } }
.years_months_selectable_filters .btn_reset,
.meetings_filter .btn_reset {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  margin: 0; }
  @media only screen and (min-width: 769px) {
    .years_months_selectable_filters .btn_reset,
    .meetings_filter .btn_reset {
      -webkit-align-self: flex-end;
      -moz-align-self: flex-end;
      -ms-align-self: flex-end;
      align-self: flex-end; } }
  .years_months_selectable_filters .btn_reset .icon,
  .meetings_filter .btn_reset .icon {
    margin-left: 4px; }
  .years_months_selectable_filters .btn_reset:hover,
  .meetings_filter .btn_reset:hover {
    text-decoration: none; }
    .years_months_selectable_filters .btn_reset:hover .text,
    .meetings_filter .btn_reset:hover .text {
      text-decoration: underline; }

.sidebar_content.bottom {
  margin-top: auto; }
  .sidebar_content.bottom .submenu_block {
    position: relative;
    top: auto; }

.submenu_block {
  position: relative;
  overflow: hidden;
  border: 1px solid #C9D0DF;
  border-radius: 4px;
  background-color: #fff; }
  .submenu_block.fixed {
    position: fixed;
    /*top: 130px;*/
    top: 93px;
    width: 320px; }
  .submenu_block a.in_path {
    color: #4552CE; }
    .submenu_block a.in_path .text {
      text-decoration: underline; }
  .submenu_block .text {
    max-width: 86%; }
  .submenu_block .icon {
    color: #67728B; }
  .submenu_block > ul {
    margin: 0;
    padding: 20px 16px;
    overflow: hidden; }
    .submenu_block > ul li:before {
      display: none; }
    .submenu_block > ul > li {
      position: relative;
      margin: 0;
      padding: 16px 0;
      border-bottom: 1px solid #C9D0DF; }
      .submenu_block > ul > li:first-child {
        padding-top: 0; }
      .submenu_block > ul > li:last-child {
        padding-bottom: 0;
        border: none; }
      .submenu_block > ul > li.show > a > .icon {
        display: inline-block;
        transform: rotate(180deg); }
      .submenu_block > ul > li.Selected.show > a > .icon {
        display: inline-block;
        transform: rotate(180deg); }
      .submenu_block > ul > li a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        color: #22252A;
        text-decoration: none; }
        .submenu_block > ul > li a .icon-chevron-down {
          margin-left: auto;
          font-size: 1.3rem;
          -webkit-transition: all 150ms ease-in-out;
          -moz-transition: all 150ms ease-in-out;
          -o-transition: all 150ms ease-in-out;
          -ms-transition: all 150ms ease-in-out;
          transition: all 150ms ease-in-out; }
        .submenu_block > ul > li a:hover {
          color: #4552CE; }
          .submenu_block > ul > li a:hover .text {
            text-decoration: underline; }
      .submenu_block > ul > li > ul li {
        padding: 0 0 0 16px;
        line-height: 1.375; }
        .submenu_block > ul > li > ul li:last-child {
          padding-bottom: 0; }
        .submenu_block > ul > li > ul li a {
          padding-top: 12px;
          font-size: 1.4rem;
          color: #67728B; }
          .submenu_block > ul > li > ul li a.active {
            color: #4552CE; }
        .submenu_block > ul > li > ul li ul {
          display: none; }

.cookie_container {
  position: fixed;
  z-index: 99;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 30px 0 20px 0;
  box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
  background-color: #fff; }
  @media only screen and (max-width: 767px) {
    .cookie_container {
      padding: 20px 0 15px 0; } }
  .cookie_container .global_container {
    position: relative; }
  .cookie_container .hide_cookie_bar {
    background: none;
    padding: 0;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #4552CE;
    position: absolute;
    right: 5px;
    top: -15px;
    border: 0; }
    .cookie_container .hide_cookie_bar:hover {
      color: #4552CE; }
  .cookie_container .cookie_text_above {
    padding-right: 81px;
    margin-bottom: 15px; }
    @media only screen and (max-width: 1023px) {
      .cookie_container .cookie_text_above {
        padding-right: 30px; } }
    .cookie_container .cookie_text_above h1:first-child, .cookie_container .cookie_text_above h1:first-of-type, .cookie_container .cookie_text_above h2:first-child, .cookie_container .cookie_text_above h2:first-of-type, .cookie_container .cookie_text_above h3:first-child, .cookie_container .cookie_text_above h3:first-of-type, .cookie_container .cookie_text_above h4:first-child, .cookie_container .cookie_text_above h4:first-of-type, .cookie_container .cookie_text_above h5:first-child, .cookie_container .cookie_text_above h5:first-of-type, .cookie_container .cookie_text_above h6:first-child, .cookie_container .cookie_text_above h6:first-of-type, .cookie_container .cookie_text_above p:first-child, .cookie_container .cookie_text_above p:first-of-type {
      margin-top: 0; }
  .cookie_container .cookies_checkboxes {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px; }
    .cookie_container .cookies_checkboxes .labels_wrapper {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row wrap;
      -moz-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      @media only screen and (min-width: 769px) {
        .cookie_container .cookies_checkboxes .labels_wrapper {
          margin-right: 20px; } }
    .cookie_container .cookies_checkboxes label {
      margin: 5px 30px 5px 0;
      padding-left: 23px;
      font-size: 1.4rem; }
      @media only screen and (max-width: 767px) {
        .cookie_container .cookies_checkboxes label {
          margin: 5px 12px 5px 0; } }
      .cookie_container .cookies_checkboxes label .checkbox_design, .cookie_container .cookies_checkboxes label .radio_design {
        top: 5px;
        left: 5px;
        border-radius: 0;
        width: 10px;
        height: 10px;
        background-color: #fff;
        border: 1px solid #4552CE; }
        .cookie_container .cookies_checkboxes label .checkbox_design:after, .cookie_container .cookies_checkboxes label .radio_design:after {
          content: '';
          background-color: #4552CE;
          top: -1px;
          left: -1px;
          width: 10px;
          height: 10px;
          border-radius: 0; }
    .cookie_container .cookies_checkboxes .input_group_parent input[disabled] + .checkbox_design:after {
      background-color: #4552CE; }
    .cookie_container .cookies_checkboxes button {
      height: 40px;
      vertical-align: 3px;
      line-height: 40px;
      padding: 0 18px; }
      @media only screen and (max-width: 767px) {
        .cookie_container .cookies_checkboxes button {
          margin-top: 7px;
          margin-bottom: 10px; } }
      .cookie_container .cookies_checkboxes button.loading {
        display: none; }
  .cookie_container .error_message {
    margin: -10px 0 13px 0; }
  .cookie_container .toggle_cookies_block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 2rem; }
    .cookie_container .toggle_cookies_block span {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      margin-left: 16px;
      font-size: 2.2rem;
      color: #4552CE;
      vertical-align: -1px; }
    .cookie_container .toggle_cookies_block.open span {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
  .cookie_container .cookies_pop {
    position: relative; }
  .cookie_container .sections_texts {
    margin-top: 12px;
    padding-top: 16px;
    height: 230px;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid #C9D0DF; }
    @media only screen and (min-width: 769px) {
      .cookie_container .sections_texts {
        padding-top: 32px; } }
    .cookie_container .sections_texts .one_section {
      font-size: 1.4rem;
      padding-bottom: 32px; }
      .cookie_container .sections_texts .one_section * {
        font-size: 1.4rem; }
      .cookie_container .sections_texts .one_section .title {
        display: block;
        margin: 0 0 12px;
        font-size: 1.4rem;
        font-family: "LatoBold", sans-serif;
        text-transform: uppercase; }
      .cookie_container .sections_texts .one_section h1:first-child, .cookie_container .sections_texts .one_section h1:first-of-type, .cookie_container .sections_texts .one_section h2:first-child, .cookie_container .sections_texts .one_section h2:first-of-type, .cookie_container .sections_texts .one_section h3:first-child, .cookie_container .sections_texts .one_section h3:first-of-type, .cookie_container .sections_texts .one_section h4:first-child, .cookie_container .sections_texts .one_section h4:first-of-type, .cookie_container .sections_texts .one_section h5:first-child, .cookie_container .sections_texts .one_section h5:first-of-type, .cookie_container .sections_texts .one_section h6:first-child, .cookie_container .sections_texts .one_section h6:first-of-type, .cookie_container .sections_texts .one_section p:first-child, .cookie_container .sections_texts .one_section p:first-of-type {
        margin-top: 0; }
      .cookie_container .sections_texts .one_section p:only-child {
        margin: 0; }
      .cookie_container .sections_texts .one_section table tr.lenteles_antraste td, .cookie_container .sections_texts .one_section table td.lenteles_antraste, .cookie_container .sections_texts .one_section table thead td, .cookie_container .sections_texts .one_section table table th {
        font-size: 1.4rem; }

.cookie_inner_section {
  margin: 0 0 40px 0; }
  .cookie_inner_section h3 {
    margin: 0 0 10px 0; }

.cookie_text_inner {
  margin: 0 0 30px 0; }
  .cookie_text_inner h1:first-child, .cookie_text_inner h1:first-of-type, .cookie_text_inner h2:first-child, .cookie_text_inner h2:first-of-type, .cookie_text_inner h3:first-child, .cookie_text_inner h3:first-of-type, .cookie_text_inner h4:first-child, .cookie_text_inner h4:first-of-type, .cookie_text_inner h5:first-child, .cookie_text_inner h5:first-of-type, .cookie_text_inner h6:first-child, .cookie_text_inner h6:first-of-type, .cookie_text_inner p:first-child, .cookie_text_inner p:first-of-type {
    margin-top: 0; }

.form_mod .type_question, form .type_question {
  display: block;
  margin: 0 0 4px 0;
  font-size: 1.6rem;
  font-family: "LatoBold", sans-serif; }
  .form_mod .type_question.required:before, form .type_question.required:before {
    content: "* ";
    color: #ED4D4D; }

.form_mod .type_item, form .type_item {
  margin: 0 0 32px 0; }
  .form_mod .type_item.other .type_question, form .type_item.other .type_question {
    margin: 0 0 17px 0; }

.form_mod .rules_txt, form .rules_txt {
  padding-left: 24px; }
  .form_mod .rules_txt p:only-child, form .rules_txt p:only-child {
    margin: 0; }

.form_mod .field_info, form .field_info {
  color: #999;
  font-size: 12px; }

.form_mod fieldset, form fieldset {
  border: 0;
  padding: 0; }

.acts_search_form {
  margin-bottom: 52px; }
  @media only screen and (min-width: 768px) {
    .acts_search_form {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }
  @media only screen and (min-width: 768px) {
    .acts_search_form .form_content {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .acts_search_form .form_content .type_item {
        -webkit-box-flex: 1 0 0%;
        -moz-box-flex: 1 0 0%;
        -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-right: 16px;
        margin-bottom: 16px; }
        .acts_search_form .form_content .type_item:last-child {
          margin-right: 0; }
        .acts_search_form .form_content .type_item.date {
          max-width: 100px; } }
  .acts_search_form .type_item.date {
    position: relative; }
    .acts_search_form .type_item.date .icon {
      position: absolute;
      bottom: 4px;
      right: 0;
      font-size: 1.6rem;
      color: #67728B; }
  .acts_search_form .btns_container .clear_filter {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 0 16px;
    text-decoration: none; }
    .acts_search_form .btns_container .clear_filter .icon {
      margin-left: 4px; }
    .acts_search_form .btns_container .clear_filter:hover .text {
      text-decoration: underline; }

.acts_search_cont .total_result {
  margin-bottom: 16px; }

.act_header {
  margin-bottom: 32px; }
  .act_header__item {
    display: block;
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-family: "PT Serif", serif; }
    .act_header__item .text {
      display: inline-block;
      margin-right: 3px;
      font-family: "LatoBold", sans-serif; }

.acts_list .title {
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "PT Serif", serif; }

.login_block,
.remind_pass_block,
.auth_register_block,
.sitelogin_block {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 769px) {
    .login_block,
    .remind_pass_block,
    .auth_register_block,
    .sitelogin_block {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }
  .login_block .auth_bg_gradient,
  .remind_pass_block .auth_bg_gradient,
  .auth_register_block .auth_bg_gradient,
  .sitelogin_block .auth_bg_gradient {
    position: relative; }
    .login_block .auth_bg_gradient:after,
    .remind_pass_block .auth_bg_gradient:after,
    .auth_register_block .auth_bg_gradient:after,
    .sitelogin_block .auth_bg_gradient:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: linear-gradient(180deg, #4552CEC1 0%, #4552CE 58%, #4552CE 100%);
      opacity: 1;
      z-index: -1; }
  .login_block .left-block,
  .remind_pass_block .left-block,
  .auth_register_block .left-block,
  .sitelogin_block .left-block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    height: 250px;
    z-index: 1; }
    @media only screen and (min-width: 769px) {
      .login_block .left-block,
      .remind_pass_block .left-block,
      .auth_register_block .left-block,
      .sitelogin_block .left-block {
        width: 50%;
        height: auto;
        min-height: 500px; } }
    .login_block .left-block:before,
    .remind_pass_block .left-block:before,
    .auth_register_block .left-block:before,
    .sitelogin_block .left-block:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("../img/auth_bg.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: -1; }
    .login_block .left-block--toptext,
    .remind_pass_block .left-block--toptext,
    .auth_register_block .left-block--toptext,
    .sitelogin_block .left-block--toptext {
      margin-bottom: 14px;
      background-color: #4552CE;
      padding: 0 0 0 24px;
      font-size: 2.8rem;
      font-weight: 700;
      font-family: "PT Serif", serif;
      color: #fff;
      text-align: left; }
      @media only screen and (min-width: 769px) {
        .login_block .left-block--toptext,
        .remind_pass_block .left-block--toptext,
        .auth_register_block .left-block--toptext,
        .sitelogin_block .left-block--toptext {
          padding: 0 83px;
          font-size: 2.8rem;
          margin-bottom: 101px; } }
    .login_block .left-block--bottomtext,
    .remind_pass_block .left-block--bottomtext,
    .auth_register_block .left-block--bottomtext,
    .sitelogin_block .left-block--bottomtext {
      padding: 0 0 0 24px;
      font-size: 1.6rem;
      font-family: "LatoBold", sans-serif;
      color: #fff;
      text-align: left; }
      @media only screen and (min-width: 769px) {
        .login_block .left-block--bottomtext,
        .remind_pass_block .left-block--bottomtext,
        .auth_register_block .left-block--bottomtext,
        .sitelogin_block .left-block--bottomtext {
          padding: 0 100px; } }
  .login_block .right-block,
  .remind_pass_block .right-block,
  .auth_register_block .right-block,
  .sitelogin_block .right-block {
    height: auto; }
    .login_block .right-block--meta,
    .remind_pass_block .right-block--meta,
    .auth_register_block .right-block--meta,
    .sitelogin_block .right-block--meta {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      @media only screen and (min-width: 769px) {
        .login_block .right-block--meta,
        .remind_pass_block .right-block--meta,
        .auth_register_block .right-block--meta,
        .sitelogin_block .right-block--meta {
          padding-left: 57px; } }
    .login_block .right-block--title,
    .remind_pass_block .right-block--title,
    .auth_register_block .right-block--title,
    .sitelogin_block .right-block--title {
      margin-bottom: 11px;
      font-family: "PT Serif", serif;
      font-size: 1.8rem;
      font-weight: 700; }
    .login_block .right-block--description,
    .remind_pass_block .right-block--description,
    .auth_register_block .right-block--description,
    .sitelogin_block .right-block--description {
      margin-bottom: 42px; }
    @media only screen and (min-width: 769px) {
      .login_block .right-block--authform,
      .remind_pass_block .right-block--authform,
      .auth_register_block .right-block--authform,
      .sitelogin_block .right-block--authform {
        padding-left: 57px; } }
    @media only screen and (min-width: 769px) {
      .login_block .right-block,
      .remind_pass_block .right-block,
      .auth_register_block .right-block,
      .sitelogin_block .right-block {
        width: 50%; } }
  .login_block .action-block,
  .remind_pass_block .action-block,
  .auth_register_block .action-block,
  .sitelogin_block .action-block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 32px; }
    @media only screen and (min-width: 769px) {
      .login_block .action-block.register,
      .remind_pass_block .action-block.register,
      .auth_register_block .action-block.register,
      .sitelogin_block .action-block.register {
        padding-left: 57px; } }
    @media only screen and (min-width: 769px) {
      .login_block .action-block,
      .remind_pass_block .action-block,
      .auth_register_block .action-block,
      .sitelogin_block .action-block {
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-pack: space-between;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center; } }
    .login_block .action-block--submit,
    .remind_pass_block .action-block--submit,
    .auth_register_block .action-block--submit,
    .sitelogin_block .action-block--submit {
      display: -webkit-inline-box;
      display: -moz-inline-box;
      display: -ms-inline-flexbox;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-self: flex-start;
      -moz-align-self: flex-start;
      -ms-align-self: flex-start;
      align-self: flex-start;
      margin-bottom: 16px; }
      @media only screen and (min-width: 769px) {
        .login_block .action-block--submit,
        .remind_pass_block .action-block--submit,
        .auth_register_block .action-block--submit,
        .sitelogin_block .action-block--submit {
          margin-bottom: 0; } }
  .login_block .register-block,
  .remind_pass_block .register-block,
  .auth_register_block .register-block,
  .sitelogin_block .register-block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    padding: 26px 0;
    background-color: #C9D0DF;
    height: 100%; }
    .login_block .register-block--title,
    .remind_pass_block .register-block--title,
    .auth_register_block .register-block--title,
    .sitelogin_block .register-block--title {
      margin-bottom: 11px;
      font-size: 1.8rem;
      font-family: "PT Serif", serif;
      font-weight: 700; }
    .login_block .register-block--description,
    .remind_pass_block .register-block--description,
    .auth_register_block .register-block--description,
    .sitelogin_block .register-block--description {
      max-width: 380px;
      margin-bottom: 16px;
      padding: 0 16px;
      font-size: 1.2rem;
      text-align: center; }
    .login_block .register-block .mygtukas,
    .remind_pass_block .register-block .mygtukas,
    .auth_register_block .register-block .mygtukas,
    .sitelogin_block .register-block .mygtukas {
      border: 1px solid #4552CE;
      background-color: #fff;
      background-image: none;
      color: #4552CE; }
      .login_block .register-block .mygtukas:hover,
      .remind_pass_block .register-block .mygtukas:hover,
      .auth_register_block .register-block .mygtukas:hover,
      .sitelogin_block .register-block .mygtukas:hover {
        background-image: linear-gradient(109deg, #5aa4e8 0%, #4552ce 100%);
        color: #fff;
        border: 0; }

.childlist_item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 0 16px 22px;
  border-radius: 4px;
  font-family: "LatoBold", sans-serif;
  color: #22252A;
  background: linear-gradient(to right, #9BA8C6, #C9D0DF);
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  .childlist_item:hover {
    box-shadow: 0 2px 30px rgba(103, 114, 139, 0.4);
    color: #4552CE;
    text-decoration: none; }
    .childlist_item:hover .icon:before {
      transform: scale(1.2); }
  .childlist_item:focus {
    text-decoration: none; }
  .childlist_item .title {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: "PT Serif", serif; }
  .childlist_item .icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    height: 100%;
    min-height: 51px;
    width: 72px;
    min-width: 72px;
    margin-left: auto;
    border-left: 1px solid #67728B;
    font-size: 1.6rem;
    color: #4552CE;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    @media only screen and (min-width: 768px) {
      .childlist_item .icon {
        min-height: 61px;
        width: 92px;
        min-width: 92px; } }
.contacts_search_form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0 0 32px; }
  .contacts_search_form .filter {
    width: 200px;
    margin: 16px 16px 0 0; }
    .contacts_search_form .filter .select2 .select2-selection--single, .contacts_search_form .filter .select2 .select2-selection__rendered {
      height: 100%; }
    @media only screen and (max-width: 768px) {
      .contacts_search_form .filter {
        width: 100%;
        margin: 16px 0 0 0; }
        .contacts_search_form .filter .select2 {
          max-width: none;
          font-size: 1.2rem;
          height: 3.5rem; }
        .contacts_search_form .filter input {
          max-width: none; } }
    .contacts_search_form .filter .label {
      display: block;
      margin: 0 0 8px;
      font-size: 1.6rem;
      font-family: "LatoBold", sans-serif; }
  .contacts_search_form .btns_container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    @media only screen and (max-width: 768px) {
      .contacts_search_form .btns_container {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column; } }
    .contacts_search_form .btns_container .btn_submit {
      line-height: 1;
      height: 38px;
      margin-top: 16px; }
      @media only screen and (min-width: 769px) {
        .contacts_search_form .btns_container .btn_submit {
          margin-top: auto; } }
  .contacts_search_form .filter_reset {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: flex-end;
    -moz-align-self: flex-end;
    -ms-align-self: flex-end;
    align-self: flex-end;
    margin: 16px 0 0 0;
    text-decoration: none; }
    @media only screen and (min-width: 769px) {
      .contacts_search_form .filter_reset {
        margin: 0 0 7px 16px; } }
    .contacts_search_form .filter_reset .text {
      font-size: 1.4rem; }
    .contacts_search_form .filter_reset:hover .text {
      text-decoration: underline; }
    .contacts_search_form .filter_reset .icon {
      margin: 0 0 0 5px;
      font-size: 1.2rem;
      text-decoration: none; }
  @media only screen and (max-width: 769px) {
    .contacts_search_form .fake_select {
      max-width: none; } }
.contacts_structure .item {
  display: block;
  margin-bottom: 38px; }
  .contacts_structure .item.has_childs .item__link {
    margin-bottom: 30px; }
    .contacts_structure .item.has_childs .item__link:after {
      content: '';
      position: absolute;
      top: 28px;
      bottom: auto;
      left: 5px;
      height: 3.4rem;
      width: 2px;
      background-color: #C9D0DF;
      z-index: -1; }
  .contacts_structure .item.has_childs .item__child__link {
    position: relative; }
  .contacts_structure .item__link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 34px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: "PT Serif", serif;
    text-decoration: none; }
    .contacts_structure .item__link:before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      width: 12px;
      height: 12px;
      background-color: #5D9FEA; }
    .contacts_structure .item__link .icon {
      margin-left: 12px;
      font-size: 1.6rem; }
    .contacts_structure .item__link:hover .title {
      text-decoration: underline; }
  .contacts_structure .item__child {
    font-size: 1.6rem; }
    .contacts_structure .item__child__link {
      display: block;
      position: relative;
      margin: 0 0 13px 38px;
      padding-left: 22px; }
      .contacts_structure .item__child__link:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background-color: #5D9FEA; }
      .contacts_structure .item__child__link:first-child .lines:before {
        height: 5rem; }
      .contacts_structure .item__child__link .lines {
        position: relative; }
        .contacts_structure .item__child__link .lines:before {
          content: '';
          position: absolute;
          bottom: 10px;
          left: -55px;
          height: 3.4rem;
          width: 2px;
          background-color: #C9D0DF;
          z-index: -1; }
        .contacts_structure .item__child__link .lines:after {
          content: '';
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: -55px;
          height: 2px;
          width: 3.3rem;
          background-color: #C9D0DF;
          z-index: -1; }
    .contacts_structure .item__child .second_child .item__child__link:first-child .lines:before {
      height: 3.2rem; }
    .contacts_structure .item__child .second_child .item__child__link {
      margin-left: 74px; }

.contacts_list {
  margin-top: 50px; }
  .contacts_list .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin-top: 34px !important;
    border-radius: 4px;
    border: 1px solid #C9D0DF;
    background-color: #fff; }
    .contacts_list .item.no_photo .meta_info {
      padding: 18px 16px; }
    .contacts_list .item .meta_info {
      padding: 77px 16px 18px; }
      .contacts_list .item .meta_info .title {
        display: block;
        margin-bottom: 6px;
        font-size: 1.8rem;
        font-family: "PT Serif", serif;
        font-weight: 700;
        color: #333333; }
      .contacts_list .item .meta_info .reach,
      .contacts_list .item .meta_info .position_title {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        color: rgba(34, 37, 42, 0.8); }
      .contacts_list .item .meta_info .reach {
        margin-bottom: 15px; }
        .contacts_list .item .meta_info .reach:last-child {
          margin: 0; }
        .contacts_list .item .meta_info .reach.phone .link {
          white-space: nowrap; }
        .contacts_list .item .meta_info .reach.email .link {
          word-break: break-all; }
      .contacts_list .item .meta_info .comma {
        margin-right: 3px; }
      .contacts_list .item .meta_info .position_title {
        margin-bottom: 32px; }
      .contacts_list .item .meta_info .icon {
        margin-right: 6px;
        font-size: 1.6rem;
        color: #C9D0DF; }
      .contacts_list .item .meta_info .cab .icon {
        font-size: 2.1rem; }
      .contacts_list .item .meta_info .link.desktop {
        color: rgba(34, 37, 42, 0.8);
        text-decoration: none;
        cursor: default; }
  .contacts_list .image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 124px;
    width: 124px;
    border-radius: 50%;
    background-color: #fff; }
  .contacts_list .bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    margin-top: auto; }
    .contacts_list .bottom a {
      width: 50%;
      padding: 12px 0;
      border-top: 1px solid #C9D0DF;
      text-transform: uppercase;
      font-size: 1.4rem;
      text-align: center; }
      .contacts_list .bottom a:first-child {
        border-right: 1px solid #C9D0DF; }
  .contacts_list + .dep_description {
    margin-top: 30px; }

.contacts_list + .contacts_structure {
  margin-top: 64px; }

.results_count {
  margin-bottom: 12px; }

.contacts_text_above {
  margin: 0px 0 25px 0; }
  .contacts_text_above p:first-of-type {
    margin-top: 0; }

.contact_popup {
  padding: 16px 12px;
  text-align: center; }
  @media only screen and (min-width: 769px) {
    .contact_popup {
      padding: 16px 32px; } }
  .contact_popup .image {
    margin-bottom: 20px; }
  .contact_popup .title {
    margin-bottom: 8px;
    font-size: 2rem; }
  .contact_popup .position {
    margin-bottom: 29px; }
  .contact_popup .text {
    text-align: left; }

/* Contacts end*/
.comments_prnt {
  margin-top: 32px;
  border-top: 1px solid #C9D0DF; }
  .comments_prnt .comments_title {
    margin: 32px 0;
    font-size: 1.8rem;
    font-family: "PT Serif", serif;
    font-weight: 700; }
  .comments_prnt .one_comment {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #C9D0DF; }
    .comments_prnt .one_comment .comment_meta {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 16px; }
      .comments_prnt .one_comment .comment_meta .comment_name {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 1.6rem;
        font-weight: 600; }
        .comments_prnt .one_comment .comment_meta .comment_name:after {
          content: '';
          display: inline-block;
          width: 4px;
          height: 4px;
          margin: 0 12px;
          background-color: #67728B; }
      .comments_prnt .one_comment .comment_meta .comment_date {
        font-size: 1.2rem;
        color: #67728B; }

.calendar_tab_navigation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin: 0 0 32px; }
  @media only screen and (min-width: 769px) {
    .calendar_tab_navigation {
      margin: 0 0 52px; } }
  .calendar_tab_navigation .mygtukas {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    position: relative;
    height: auto;
    padding: 0;
    font-size: 1.5rem;
    background: transparent;
    color: #4552CE;
    line-height: 1.7; }
    .calendar_tab_navigation .mygtukas:before {
      content: '';
      display: none;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background-color: #4552CE; }
    .calendar_tab_navigation .mygtukas:first-child {
      margin: 0 16px 0 0; }
    .calendar_tab_navigation .mygtukas:last-child {
      margin: 0 0 0 16px; }
    .calendar_tab_navigation .mygtukas:focus {
      background-color: transparent;
      background: transparent;
      color: #4552CE; }
      .calendar_tab_navigation .mygtukas:focus:before {
        display: block; }
    @media only screen and (min-width: 330px) {
      .calendar_tab_navigation .mygtukas {
        font-size: 1.6rem; } }
    @media only screen and (min-width: 769px) {
      .calendar_tab_navigation .mygtukas {
        font-size: 2rem; }
        .calendar_tab_navigation .mygtukas:first-child {
          margin: 0 26px 0 0; }
        .calendar_tab_navigation .mygtukas:last-child {
          margin: 0 0 0 26px; } }
    .calendar_tab_navigation .mygtukas.active:before {
      display: block; }
    .calendar_tab_navigation .mygtukas.disabled {
      color: #67728B; }
    .calendar_tab_navigation .mygtukas:hover {
      color: #4552CE;
      background: transparent; }
      .calendar_tab_navigation .mygtukas:hover:before {
        display: block; }

.eventscalendar_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 1024px) {
    .eventscalendar_list {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }
  .eventscalendar_list .calendar_item {
    margin-bottom: 32px; }
    @media only screen and (min-width: 1024px) {
      .eventscalendar_list .calendar_item {
        width: 44%;
        margin-bottom: 0; } }
    .eventscalendar_list .calendar_item .calendar_container {
      max-width: 444px;
      margin: 0 auto; }
      @media only screen and (min-width: 1024px) {
        .eventscalendar_list .calendar_item .calendar_container {
          max-width: none;
          margin: 0; } }
  .eventscalendar_list .events_container {
    width: 56%;
    margin: 0 0 0 16px; }
    @media only screen and (max-width: 1023px) {
      .eventscalendar_list .events_container {
        width: 100%;
        margin: 0; } }
    .eventscalendar_list .events_container .loader_holder {
      text-align: center; }
    .eventscalendar_list .events_container .day_events {
      background-color: transparent; }
  .eventscalendar_list .empty_items_container {
    width: 50%;
    margin: 0 0 0 16px; }
    @media only screen and (max-width: 1023px) {
      .eventscalendar_list .empty_items_container {
        width: 100%;
        margin: 0; } }
.calendar_container {
  padding: 32px 36px 24px;
  border-radius: 4px;
  background: linear-gradient(to right top, #9BA8C6, #C9D0DF); }
  @media only screen and (min-width: 1024px) {
    .calendar_container {
      margin: 0; } }
  @media only screen and (max-width: 450px) {
    .calendar_container {
      padding: 18px 12px 0; } }
  .calendar_container .calendar_head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0 0 13px; }
    .calendar_container .calendar_head .cal_navigation {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      margin: 0 0 32px 0; }
      @media only screen and (max-width: 450px) {
        .calendar_container .calendar_head .cal_navigation {
          margin-bottom: 18px; } }
      .calendar_container .calendar_head .cal_navigation .arrow {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        height: 37px;
        width: 37px;
        border: 2px solid #fff;
        border-radius: 4px;
        font-size: 1.6rem;
        color: #fff;
        text-decoration: none;
        -webkit-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -o-transition: all 150ms ease-in-out;
        -ms-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in-out; }
        @media only screen and (max-width: 450px) {
          .calendar_container .calendar_head .cal_navigation .arrow {
            height: 24px;
            width: 24px;
            font-size: 1.2rem; } }
        .calendar_container .calendar_head .cal_navigation .arrow:hover {
          color: #4552CE;
          border-color: #4552CE; }
        .calendar_container .calendar_head .cal_navigation .arrow .left {
          transform: rotate(180deg); }
      .calendar_container .calendar_head .cal_navigation .nav_date {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 30px;
        font-size: 2.8rem;
        font-weight: 700;
        font-family: "PT Serif", serif;
        color: #fff; }
        @media only screen and (max-width: 450px) {
          .calendar_container .calendar_head .cal_navigation .nav_date {
            font-size: 2rem; } }
        .calendar_container .calendar_head .cal_navigation .nav_date .month {
          margin: 0 3px 0 0; }
  .calendar_container .calendar_row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    position: relative; }
    .calendar_container .calendar_row.header .day {
      height: auto;
      margin: 0 4px;
      line-height: 1;
      font-size: 2rem;
      color: #22252A;
      text-transform: uppercase;
      text-align: center; }
      @media only screen and (max-width: 450px) {
        .calendar_container .calendar_row.header .day {
          margin: 0 2px;
          font-size: 1.6rem; } }
    .calendar_container .calendar_row .day {
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 4px;
      width: 46px;
      height: 46px;
      color: #22252A;
      font-size: 1.6rem;
      font-weight: 400;
      border-radius: 4px;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
      .calendar_container .calendar_row .day:first-child {
        margin-left: 0; }
      .calendar_container .calendar_row .day:last-child {
        margin-right: 0; }
      @media only screen and (max-width: 450px) {
        .calendar_container .calendar_row .day {
          margin: 2px;
          width: 33px;
          height: 33px; }
          .calendar_container .calendar_row .day .day_number {
            font-size: 1.3rem; } }
      @media only screen and (max-width: 374px) {
        .calendar_container .calendar_row .day {
          width: 32px;
          height: 32px; } }
      .calendar_container .calendar_row .day.active {
        background-color: rgba(255, 255, 255, 0.5);
        cursor: pointer; }
        .calendar_container .calendar_row .day.active .day_number {
          color: #22252A; }
        .calendar_container .calendar_row .day.active:hover {
          background-color: #4552CE;
          color: #fff;
          border: none; }
          .calendar_container .calendar_row .day.active:hover .day_number {
            color: #fff; }
      .calendar_container .calendar_row .day.notthismonth, .calendar_container .calendar_row .day.other_day {
        color: #C9D0DF; }
      .calendar_container .calendar_row .day.open .day_events {
        display: block; }
      .calendar_container .calendar_row .day.current, .calendar_container .calendar_row .day.selected, .calendar_container .calendar_row .day.today {
        background-color: #4552CE;
        color: #fff; }
        .calendar_container .calendar_row .day.current .day_number, .calendar_container .calendar_row .day.selected .day_number, .calendar_container .calendar_row .day.today .day_number {
          color: #fff; }
    .calendar_container .calendar_row .day_number {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      width: 100%;
      height: 100%;
      text-decoration: none; }

.calendar_body {
  padding: 17px 0 0; }
  @media only screen and (max-width: 768px) {
    .calendar_body {
      padding: 16px 0; } }
  .calendar_body .calendar_row:first-child .day {
    margin-top: 0; }
  .calendar_body .calendar_row:last-child .day {
    margin-bottom: 0; }
  .calendar_body .day_events {
    display: none;
    position: absolute;
    bottom: 110%;
    width: 345px;
    transform: translateY(-8px);
    background: #fff;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15); }
  .calendar_body .events_list {
    position: relative;
    max-height: 250px;
    padding: 14px 12px;
    background: #fff;
    border-radius: 4px;
    overflow-y: auto;
    z-index: 1; }
    .calendar_body .events_list .oneevent {
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
      .calendar_body .events_list .oneevent:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom-color: transparent; }
      .calendar_body .events_list .oneevent .oneevent_content {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-decoration: none; }
        .calendar_body .events_list .oneevent .oneevent_content:hover .title {
          color: #4552CE; }
        .calendar_body .events_list .oneevent .oneevent_content .title {
          display: block;
          width: 100%;
          margin: 0 0 8px;
          color: #22252A;
          cursor: pointer;
          text-decoration: none;
          text-transform: uppercase;
          -webkit-transition: color 150ms ease-in-out;
          -moz-transition: color 150ms ease-in-out;
          -o-transition: color 150ms ease-in-out;
          -ms-transition: color 150ms ease-in-out;
          transition: color 150ms ease-in-out; }
        .calendar_body .events_list .oneevent .oneevent_content .meta_info {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          width: 100%;
          color: #67728B; }
          .calendar_body .events_list .oneevent .oneevent_content .meta_info .info_item {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            -moz-align-items: center;
            -ms-align-items: center;
            -ms-flex-align: center;
            align-items: center; }
            .calendar_body .events_list .oneevent .oneevent_content .meta_info .info_item:first-child {
              margin: 0 22px 0 0; }
          .calendar_body .events_list .oneevent .oneevent_content .meta_info .icon {
            margin: 0 8px 0 0;
            font-size: 2rem;
            vertical-align: -1px; }
  .calendar_body .triangle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #fff;
    border-left: 1.2rem solid transparent;
    border-right: 1.2rem solid transparent;
    border-top: 1.2rem solid #fff; }
    @media only screen and (max-width: 769px) {
      .calendar_body .triangle {
        display: none; } }
.event_items_list.list .item_container {
  width: 100%; }

.event_items_list.search {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }
  .event_items_list.search .item_container {
    width: 100%; }

.event_items_list .item_container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0 0 16px;
  margin-bottom: 17px;
  border-bottom: 1px solid #C9D0DF;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none; }
  @media only screen and (min-width: 769px) {
    .event_items_list .item_container {
      padding-bottom: 51px; } }
  .event_items_list .item_container:hover .item .title {
    color: #4552CE; }
  .event_items_list .item_container .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    color: #22252A;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer; }
    .event_items_list .item_container .item .title {
      display: block;
      margin-bottom: 8px;
      font-size: 1.8rem;
      font-family: "LatoBold", sans-serif;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
    .event_items_list .item_container .item .description {
      display: block;
      margin-bottom: 8px;
      font-size: 1.4rem;
      color: #67728B; }
    .event_items_list .item_container .item .date {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      color: #67728B;
      font-size: 1.2rem; }
      .event_items_list .item_container .item .date .icon {
        margin-right: 12px;
        font-size: 1.6rem; }

.eventscalendar_search_form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  margin: 0 0 32px; }
  @media only screen and (max-width: 769px) {
    .eventscalendar_search_form {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -ms-flex-align: flex-start;
      align-items: flex-start; } }
  .eventscalendar_search_form .fields {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    width: 100%;
    margin: 0 0 16px; }
    @media only screen and (max-width: 768px) {
      .eventscalendar_search_form .fields {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column; } }
  .eventscalendar_search_form .input_container {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 16px 0 0; }
    .eventscalendar_search_form .input_container:last-child {
      padding: 0; }
    @media only screen and (max-width: 1023px) {
      .eventscalendar_search_form .input_container {
        -webkit-box-flex: 0 0 21%;
        -moz-box-flex: 0 0 21%;
        -webkit-flex: 0 0 21%;
        -ms-flex: 0 0 21%;
        flex: 0 0 21%; } }
    @media only screen and (max-width: 769px) {
      .eventscalendar_search_form .input_container {
        width: 100%;
        max-width: none;
        margin: 16px 0 0 0;
        padding: 0; } }
    .eventscalendar_search_form .input_container.calendar {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      @media only screen and (max-width: 1023px) {
        .eventscalendar_search_form .input_container.calendar {
          -webkit-box-flex: 1;
          -moz-box-flex: 1;
          -webkit-flex: 1;
          -ms-flex: 1;
          flex: 1; } }
      @media only screen and (max-width: 769px) {
        .eventscalendar_search_form .input_container.calendar {
          max-width: none;
          min-width: none;
          width: 100%; } }
    .eventscalendar_search_form .input_container input, .eventscalendar_search_form .input_container .select2 {
      background-color: transparent;
      font-size: 1.2rem;
      max-width: none; }
      .eventscalendar_search_form .input_container input.select2-container--default .select2-selection--single, .eventscalendar_search_form .input_container .select2.select2-container--default .select2-selection--single {
        overflow: hidden;
        background: transparent; }
      .eventscalendar_search_form .input_container input .select2-selection__rendered, .eventscalendar_search_form .input_container .select2 .select2-selection__rendered {
        padding-right: 30px;
        white-space: normal; }
    .eventscalendar_search_form .input_container .title {
      display: block;
      margin: 0 0 4px;
      font-size: 1.6rem;
      font-family: "LatoBold", sans-serif; }
    .eventscalendar_search_form .input_container .input_wrapper {
      position: relative; }
      .eventscalendar_search_form .input_container .input_wrapper input {
        padding: 0 16px 0 0; }
      .eventscalendar_search_form .input_container .input_wrapper .icon {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #4552CE;
        font-size: 0.9rem; }
  @media only screen and (max-width: 769px) {
    .eventscalendar_search_form .fake_select {
      max-width: none; } }
  .eventscalendar_search_form button {
    margin: auto 0 0 0;
    padding: 0 15px;
    height: 3.5rem;
    line-height: 3.5rem; }
    @media only screen and (max-width: 768px) {
      .eventscalendar_search_form button {
        margin-top: 16px;
        padding: 0 15px; } }
  .eventscalendar_search_form .btns_container {
    width: 100%; }
    .eventscalendar_search_form .btns_container .btn_reset {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: flex-end;
      -moz-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      -ms-flex-pack: flex-end;
      margin: 0; }
      .eventscalendar_search_form .btns_container .btn_reset .icon {
        margin-left: 4px; }
      .eventscalendar_search_form .btns_container .btn_reset:hover {
        text-decoration: none; }
        .eventscalendar_search_form .btns_container .btn_reset:hover .text {
          text-decoration: underline; }

.event-info-block {
  max-width: 640px;
  margin-top: 30px;
  padding-top: 16px;
  background-color: #fff;
  border: 1px solid #C9D0DF;
  border-radius: 4px;
  overflow: hidden; }
  .event-info-block .info_item {
    margin: 0 16px 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #C9D0DF; }
    @media only screen and (min-width: 1024px) {
      .event-info-block .info_item {
        margin: 0 32px 12px; } }
    .event-info-block .info_item > span {
      display: block; }
    .event-info-block .info_item:last-child {
      border: 0; }
    .event-info-block .info_item .label {
      display: block;
      margin-bottom: 12px;
      font-size: 1.6rem;
      font-family: "LatoBold", sans-serif; }
    .event-info-block .info_item .value {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      .event-info-block .info_item .value .icon {
        margin-right: 12px;
        color: #5D9FEA;
        font-size: 1.6rem; }
    .event-info-block .info_item .gallery_image {
      display: block;
      margin-bottom: 20px;
      border-radius: 4px;
      text-decoration: none;
      outline: none;
      overflow: hidden; }
      .event-info-block .info_item .gallery_image img {
        display: block; }
  .event-info-block .photos_gallery {
    margin: 0;
    width: 100%; }

.faq_topics {
  margin: 0 0 47px 0; }
  .faq_topics .category-topdescription {
    margin-bottom: 16px; }
  .faq_topics .category {
    margin: 0 0 17px 0; }
    .faq_topics .category p:first-of-type {
      margin-top: 0; }
    .faq_topics .category p:last-of-type {
      margin-bottom: 0; }
    .faq_topics .category p:only-child {
      margin: 0; }
    .faq_topics .category .category-title {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      position: relative;
      min-height: 87px;
      padding: 32px;
      border: 1px solid #C9D0DF;
      border-radius: 4px;
      font-size: 1.8rem;
      font-family: "LatoBold", sans-serif;
      color: #22252A;
      background-color: #fff;
      text-decoration: none;
      overflow: hidden;
      cursor: pointer;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
      @media only screen and (max-width: 768px) {
        .faq_topics .category .category-title {
          min-height: 50px;
          padding: 16px; } }
      .faq_topics .category .category-title:hover {
        color: #4552CE; }
      .faq_topics .category .category-title[data-category-role=open] {
        color: #4552CE;
        border-bottom: none;
        border-radius: 4px 4px 0 0; }
        .faq_topics .category .category-title[data-category-role=open] .icon:before {
          transform: rotate(45deg); }
  .faq_topics .topics {
    display: none;
    position: relative;
    padding: 0 32px 15px;
    border: 1px solid #C9D0DF;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    overflow: hidden; }
    @media only screen and (max-width: 768px) {
      .faq_topics .topics {
        padding: 0 16px; } }
    .faq_topics .topics.active {
      display: block; }
    .faq_topics .topics.no-topics {
      padding: 0 16px 16px; }
      @media only screen and (min-width: 1024px) {
        .faq_topics .topics.no-topics {
          padding: 0 32px 16px; } }
    .faq_topics .topics .topic-title-container {
      margin: 0 0 8px 0;
      border-bottom: 1px solid #C9D0DF;
      -webkit-transition: border-color 150ms ease-in-out;
      -moz-transition: border-color 150ms ease-in-out;
      -o-transition: border-color 150ms ease-in-out;
      -ms-transition: border-color 150ms ease-in-out;
      transition: border-color 150ms ease-in-out; }
      .faq_topics .topics .topic-title-container:first-child .topic-title {
        padding-top: 0; }
      .faq_topics .topics .topic-title-container:last-child {
        border: 0; }
    .faq_topics .topics .topic-title {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      position: relative;
      margin-bottom: 8px;
      padding: 7px 32px;
      min-height: 59px;
      border: 1px solid #C9D0DF;
      border-radius: 4px;
      cursor: pointer;
      font-family: "LatoBold", sans-serif; }
      @media only screen and (max-width: 768px) {
        .faq_topics .topics .topic-title {
          min-height: 50px;
          padding: 7px 16px; } }
      .faq_topics .topics .topic-title .title {
        -webkit-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -o-transition: all 150ms ease-in-out;
        -ms-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in-out; }
      .faq_topics .topics .topic-title:hover .title {
        color: #4552CE; }
      .faq_topics .topics .topic-title[data-topic-role=open] {
        margin-bottom: 0;
        border-bottom: 0;
        border-radius: 4px 4px 0 0; }
        .faq_topics .topics .topic-title[data-topic-role=open] .title {
          color: #4552CE; }
        .faq_topics .topics .topic-title[data-topic-role=open] .icon:before {
          transform: rotate(45deg); }
      .faq_topics .topics .topic-title .title {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center; }
    .faq_topics .topics .topic-description {
      display: none;
      margin-bottom: 8px;
      padding: 0 70px 16px 32px;
      border: 1px solid #C9D0DF;
      border-top: 0;
      border-radius: 0 0 4px 4px; }
      @media only screen and (max-width: 768px) {
        .faq_topics .topics .topic-description {
          padding: 0 70px 16px 16px;
          margin-top: 0; } }
.icon-plus {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  min-width: 2.6rem;
  height: 2.6rem;
  border: 1px solid #4552CE;
  border-radius: 4px;
  font-size: 1.2rem;
  color: #4552CE;
  -webkit-transition: color 150ms ease-in-out;
  -moz-transition: color 150ms ease-in-out;
  -o-transition: color 150ms ease-in-out;
  -ms-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out; }

#faq_form .form_title {
  display: block;
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-family: "LatoBold", sans-serif; }
  @media only screen and (min-width: 769px) {
    #faq_form .form_title {
      margin-bottom: 32px; } }
#faq_form .form-label {
  display: block;
  margin: 0 0 7px 0;
  font-family: "LatoBold", sans-serif; }

#faq_form .form-value {
  margin: 0 0 10px 0; }

.faq_ask_question_title {
  display: block;
  margin-bottom: 27px;
  font-family: "LatoBold", sans-serif;
  font-size: 2.8rem; }
  @media only screen and (min-width: 769px) {
    .faq_ask_question_title {
      font-size: 3.7rem; } }
.gallery_list, .youtube_list {
  margin: 0; }
  .gallery_list .list_item, .youtube_list .list_item {
    position: relative;
    padding: 16px;
    border-radius: 4px;
    background: linear-gradient(to top right, rgba(155, 168, 198, 0.1), rgba(201, 208, 223, 0.1));
    overflow: hidden;
    box-shadow: 0 2px 40px 15%;
    cursor: pointer; }
    .gallery_list .list_item .item_content, .youtube_list .list_item .item_content {
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
    .gallery_list .list_item:nth-child(2n+1):nth-last-child(-n+2), .gallery_list .list_item:nth-child(2n+1):nth-last-child(-n+2) ~ .list_item, .youtube_list .list_item:nth-child(2n+1):nth-last-child(-n+2), .youtube_list .list_item:nth-child(2n+1):nth-last-child(-n+2) ~ .list_item {
      margin-bottom: 0; }
    .gallery_list .list_item .image_container, .youtube_list .list_item .image_container {
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      padding-bottom: 51%;
      border-radius: 4px;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
    .gallery_list .list_item .meta_info, .youtube_list .list_item .meta_info {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      position: absolute;
      bottom: 0;
      left: 32px;
      right: 16px;
      bottom: 32px;
      padding: 0; }
      .gallery_list .list_item .meta_info .icon, .youtube_list .list_item .meta_info .icon {
        margin-right: 16px;
        font-size: 2.5rem;
        color: #fff; }
      .gallery_list .list_item .meta_info .content, .youtube_list .list_item .meta_info .content {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        color: #fff; }
      .gallery_list .list_item .meta_info .title, .youtube_list .list_item .meta_info .title {
        margin-bottom: 3px;
        font-size: 1.4rem;
        font-family: "LatoBold", sans-serif; }
      .gallery_list .list_item .meta_info .date, .youtube_list .list_item .meta_info .date {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 400; }
    .gallery_list .list_item:hover .image_container, .youtube_list .list_item:hover .image_container {
      transform: scale(1.2); }

.youtube_list .list_item .meta_info .icon {
  font-size: 1.7rem; }

/* Galerijos popup end*/
.album_container #image_gallery {
  margin: 0;
  padding: 0; }
  .album_container #image_gallery li {
    background: none;
    float: left;
    margin: 0 16px 16px 0;
    padding: 0; }
    .album_container #image_gallery li img {
      max-width: 150px; }

.news_list .one_new {
  position: relative;
  box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
  border: 1px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  .news_list .one_new:hover {
    box-shadow: 0 2px 30px rgba(103, 114, 139, 0.4);
    border-color: #C9D0DF; }
    .news_list .one_new:hover .meta_info .title {
      color: #4552CE; }
    .news_list .one_new:hover .meta_info .read_more .icon {
      transform: translateX(3px); }
    .news_list .one_new:hover .meta_info .read_more:after {
      opacity: 0; }
  .news_list .one_new.no_image .meta_info {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    height: 100%; }
  .news_list .one_new .image_container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden; }
  .news_list .one_new .image {
    width: 100%;
    padding-bottom: 52%;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
  .news_list .one_new .meta_info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px 16px 10px;
    margin-bottom: 22px; }
    .news_list .one_new .meta_info .news_item_date {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 0 0 8px;
      font-size: 1.2rem;
      color: #67728B; }
      .news_list .one_new .meta_info .news_item_date .icon {
        margin: 0 8px 0 0;
        font-size: 1.6rem;
        -webkit-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -o-transition: all 150ms ease-in-out;
        -ms-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in-out; }
    .news_list .one_new .meta_info .title {
      margin: 0 0 16px 0;
      font-size: 1.8rem;
      font-family: "LatoBold", sans-serif;
      color: #22252A;
      text-decoration: none;
      -webkit-transition: color 150ms ease-in-out;
      -moz-transition: color 150ms ease-in-out;
      -o-transition: color 150ms ease-in-out;
      -ms-transition: color 150ms ease-in-out;
      transition: color 150ms ease-in-out; }
    .news_list .one_new .meta_info .short_text {
      display: block;
      margin: 0 0 16px;
      font-size: 1.4rem;
      color: #67728B;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden; }
    .news_list .one_new .meta_info .read_more {
      display: -webkit-inline-box;
      display: -moz-inline-box;
      display: -ms-inline-flexbox;
      display: -webkit-inline-flex;
      display: inline-flex;
      -webkit-align-self: flex-start;
      -moz-align-self: flex-start;
      -ms-align-self: flex-start;
      align-self: flex-start;
      font-size: 1.6rem;
      font-family: "LatoBold", sans-serif;
      color: #4552CE;
      margin: 10px 0 0 0; }
      .news_list .one_new .meta_info .read_more .icon {
        display: inline-block;
        margin: 0 0 0 6px; }

.news_inner .inner_page_image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  max-width: 720px;
  float: left;
  margin: 0 16px 32px 0; }
  @media only screen and (max-width: 767px) {
    .news_inner .inner_page_image {
      width: 100%; } }
  .news_inner .inner_page_image img {
    width: 100%;
    border-radius: 4px; }

.news_inner .news_content_text p:first-of-type {
  margin-top: 0; }

.share_button {
  margin-top: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: fit-content; }
  .share_button img {
    width: 30px; }

.meetings_list .meeting_container,
.meetings_list .question_container,
.questions_list .meeting_container,
.questions_list .question_container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid #67728B;
  border-radius: 4px;
  background: linear-gradient(to right, #9BA8C6 0%, #C9D0DF 100%); }
  @media only screen and (min-width: 768px) {
    .meetings_list .meeting_container,
    .meetings_list .question_container,
    .questions_list .meeting_container,
    .questions_list .question_container {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center; } }
  .meetings_list .meeting_container .meeting_number,
  .meetings_list .meeting_container .question_number,
  .meetings_list .question_container .meeting_number,
  .meetings_list .question_container .question_number,
  .questions_list .meeting_container .meeting_number,
  .questions_list .meeting_container .question_number,
  .questions_list .question_container .meeting_number,
  .questions_list .question_container .question_number {
    padding-bottom: 16px;
    font-family: "PT Serif", serif;
    font-size: 2.2rem; }
    @media only screen and (min-width: 768px) {
      .meetings_list .meeting_container .meeting_number,
      .meetings_list .meeting_container .question_number,
      .meetings_list .question_container .meeting_number,
      .meetings_list .question_container .question_number,
      .questions_list .meeting_container .meeting_number,
      .questions_list .meeting_container .question_number,
      .questions_list .question_container .meeting_number,
      .questions_list .question_container .question_number {
        padding: 0 30px 0 14px;
        font-size: 2.8rem; } }
  .meetings_list .meeting_container .meeting-meta--item,
  .meetings_list .meeting_container .question-meta--item,
  .meetings_list .question_container .meeting-meta--item,
  .meetings_list .question_container .question-meta--item,
  .questions_list .meeting_container .meeting-meta--item,
  .questions_list .meeting_container .question-meta--item,
  .questions_list .question_container .meeting-meta--item,
  .questions_list .question_container .question-meta--item {
    display: block;
    margin-bottom: 16px; }
    .meetings_list .meeting_container .meeting-meta--item .text,
    .meetings_list .meeting_container .question-meta--item .text,
    .meetings_list .question_container .meeting-meta--item .text,
    .meetings_list .question_container .question-meta--item .text,
    .questions_list .meeting_container .meeting-meta--item .text,
    .questions_list .meeting_container .question-meta--item .text,
    .questions_list .question_container .meeting-meta--item .text,
    .questions_list .question_container .question-meta--item .text {
      display: inline-block;
      margin-right: 3px;
      font-family: "LatoBold", sans-serif; }
  .meetings_list .meeting_container .read_more,
  .meetings_list .question_container .read_more,
  .questions_list .meeting_container .read_more,
  .questions_list .question_container .read_more {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-self: flex-start;
    -moz-align-self: flex-start;
    -ms-align-self: flex-start;
    align-self: flex-start;
    position: relative;
    font-size: 1.6rem;
    color: #4552CE;
    text-decoration: none; }
    .meetings_list .meeting_container .read_more .text,
    .meetings_list .question_container .read_more .text,
    .questions_list .meeting_container .read_more .text,
    .questions_list .question_container .read_more .text {
      border-bottom: 1px solid transparent;
      font-family: "LatoBold", sans-serif;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
    .meetings_list .meeting_container .read_more .icon,
    .meetings_list .question_container .read_more .icon,
    .questions_list .meeting_container .read_more .icon,
    .questions_list .question_container .read_more .icon {
      display: inline-block;
      margin-left: 6px; }
    .meetings_list .meeting_container .read_more:after,
    .meetings_list .question_container .read_more:after,
    .questions_list .meeting_container .read_more:after,
    .questions_list .question_container .read_more:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #4552CE;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
    .meetings_list .meeting_container .read_more:hover,
    .meetings_list .question_container .read_more:hover,
    .questions_list .meeting_container .read_more:hover,
    .questions_list .question_container .read_more:hover {
      text-decoration: none; }
      .meetings_list .meeting_container .read_more:hover:after,
      .meetings_list .question_container .read_more:hover:after,
      .questions_list .meeting_container .read_more:hover:after,
      .questions_list .question_container .read_more:hover:after {
        opacity: 1;
        visibility: visible; }

.meeting-header {
  margin-bottom: 64px; }
  .meeting-header--item {
    display: block;
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-family: "PT Serif", serif; }
    .meeting-header--item:last-child {
      margin-bottom: 0; }
    .meeting-header--item .text {
      display: inline-block;
      margin-right: 3px;
      font-family: "LatoBold", sans-serif; }

.meeting-preview--title {
  display: block;
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-family: "LatoBold", sans-serif; }

.meeting-preview .meeting-video {
  margin-bottom: 34px; }
  .meeting-preview .meeting-video .iframe_wrapper {
    border-radius: 4px; }

.meeting-preview .meeting-members {
  margin-bottom: 34px; }
  .meeting-preview .meeting-members--list {
    border: 1px solid #67728B;
    border-radius: 4px; }
  .meeting-preview .meeting-members--header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    padding: 18px 16px;
    border-bottom: 1px solid #67728B;
    background: linear-gradient(to right, #9BA8C6 0%, #C9D0DF 100%);
    color: #fff;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .meeting-preview .meeting-members--header.active {
      border-bottom-color: transparent; }
    .meeting-preview .meeting-members--header .icon {
      cursor: pointer; }
      .meeting-preview .meeting-members--header .icon:before {
        -webkit-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -o-transition: all 150ms ease-in-out;
        -ms-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in-out; }
      .meeting-preview .meeting-members--header .icon.active:before {
        transform: rotate(45deg); }
  .meeting-preview .meeting-members--item {
    padding: 16px;
    font-size: 1.4rem;
    border-bottom: 1px solid #67728B; }
    .meeting-preview .meeting-members--item:last-child {
      border-bottom: 0; }
    .meeting-preview .meeting-members--item:nth-child(even) {
      background-color: #C9D0DF1A; }

.meeting-preview .meeting-questions--noquestions {
  font-size: 1.8rem; }

.meeting-previewquestion__title {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-family: "PT Serif", serif;
  font-weight: 700; }

.question-attachments {
  margin-bottom: 54px;
  border: 1px solid #67728B;
  border-radius: 4px; }
  .question-attachments--header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 22px 16px;
    border-bottom: 1px solid #67728B;
    background: linear-gradient(to right, #9BA8C6 0%, #C9D0DF 100%);
    font-weight: 500;
    color: #fff; }
  .question-attachments--row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 16px;
    font-weight: 500;
    border-bottom: 1px solid #67728B; }
    .question-attachments--row:last-child {
      border-bottom: 0; }
    .question-attachments--row:nth-child(odd) {
      background-color: rgba(201, 208, 223, 0.1); }
  .question-attachments--number {
    width: 15%;
    padding-right: 5px; }
  .question-attachments--title {
    width: 70%; }
  .question-attachments--document {
    width: 15%;
    text-align: center; }
    .question-attachments--document a {
      display: -webkit-inline-box;
      display: -moz-inline-box;
      display: -ms-inline-flexbox;
      display: -webkit-inline-flex;
      display: inline-flex; }
    .question-attachments--document img {
      height: 25px;
      max-height: 25px;
      min-height: 25px; }

.question-description {
  margin-bottom: 32px; }
  .question-description--description p:first-child {
    margin-top: 0; }

.question-votes__result {
  margin-bottom: 32px; }

.question-votes__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 24px; }
  .question-votes__item:last-child {
    margin-bottom: 0; }
  .question-votes__item--title {
    margin-bottom: 8px;
    font-size: 1.6rem;
    font-family: "LatoBold", sans-serif; }
  .question-votes__item--progress {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .question-votes__item--progressbar {
    position: relative;
    width: 500px;
    height: 19px;
    margin-right: 16px;
    border-radius: 4px;
    background-color: #C9D0DF; }
  .question-votes__item--score {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-radius: 4px;
    background: linear-gradient(to right, #5AA4E8 0%, #4552CE 100%); }
  .question-votes__item--value {
    font-size: 1.6rem;
    font-family: "LatoBold", sans-serif; }

.question-votes ul li {
  margin-bottom: 16px; }

.question-votes ul li:before {
  border-radius: 50%;
  margin: 0 15px 3px 0; }

.poll_container {
  margin-top: 32px; }

.poll_results {
  margin: 0px 0 42px 0;
  padding: 0px 0; }
  @media only screen and (min-width: 1024px) {
    .poll_results {
      width: 100%;
      margin: 0px 0 64px 0; } }
  .poll_results .h2 {
    float: none;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 0 16px 0; }
  .poll_results .answer_values {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 10px; }
    .poll_results .answer_values .answer_name {
      font-size: 1.4rem; }
  .poll_results .poll_item {
    width: 100%;
    padding: 0 0 24px 0;
    margin: 0px; }
    @media only screen and (max-width: 768px) {
      .poll_results .poll_item {
        padding: 0 0 16px; } }
    .poll_results .poll_item:last-child {
      padding: 0; }
    .poll_results .poll_item .answer_progress_container {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      .poll_results .poll_item .answer_progress_container .stat {
        display: inline-block;
        margin-left: 16px;
        font-size: 1.6rem; }
    .poll_results .poll_item .answer_progress {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      width: 50%;
      height: 19px;
      padding: 0px;
      border-radius: 4px;
      background-color: #C9D0DF; }
      @media only screen and (max-width: 768px) {
        .poll_results .poll_item .answer_progress {
          width: 80%; } }
      .poll_results .poll_item .answer_progress .progress {
        height: 19px;
        background: linear-gradient(to right, #5AA4E8, #4552CE);
        border-radius: 4px; }
    .poll_results .poll_item.total {
      padding: 0 0 14px 0; }
      .poll_results .poll_item.total .answer_values {
        float: left;
        width: 100%;
        font-family: "LatoBold", sans-serif;
        font-size: 12px; }
        .poll_results .poll_item.total .answer_values .answer_name {
          line-height: 1; }
          @media only screen and (min-width: 1024px) {
            .poll_results .poll_item.total .answer_values .answer_name {
              width: 80%; } }
          @media only screen and (max-width: 1024px) {
            .poll_results .poll_item.total .answer_values .answer_name {
              width: 80%; } }
          @media only screen and (max-width: 768px) {
            .poll_results .poll_item.total .answer_values .answer_name {
              width: 60%; } }
        .poll_results .poll_item.total .answer_values .answer_total {
          /*width: 5%;*/
          line-height: 1; }
          @media only screen and (min-width: 1024px) {
            .poll_results .poll_item.total .answer_values .answer_total {
              width: auto; } }
        .poll_results .poll_item.total .answer_values .answer_count {
          /*width: 5%;*/
          line-height: 1;
          text-align: right;
          padding-left: 10px;
          border-left: 0px; }
          @media only screen and (min-width: 1024px) {
            .poll_results .poll_item.total .answer_values .answer_count {
              width: auto; } }
    .poll_results .poll_item.largest .answer_name {
      color: #4552CE; }
    .poll_results .poll_item.largest .progress {
      position: relative; }
      .poll_results .poll_item.largest .progress:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(-87deg, #2cefaa 0%, #009d82 100%); }

.total_results {
  margin: 8px 0 0px 0; }

.poll_index {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .poll_index .btn_start {
    margin: 0 16px 0 0; }
  @media only screen and (max-width: 768px) {
    .poll_index {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      .poll_index .btn_start {
        margin: 0 0 16px 0; } }
/* Polls style end */
.projectsmap_text_before,
.projectsmap_text_after {
  margin: 29px 0 18px 0;
  text-align: center; }
  .projectsmap_text_before p:first-of-type,
  .projectsmap_text_after p:first-of-type {
    margin-top: 0; }
  .projectsmap_text_before p:last-of-type,
  .projectsmap_text_after p:last-of-type {
    margin-bottom: 0; }
  .projectsmap_text_before p:only-child,
  .projectsmap_text_after p:only-child {
    margin: 0; }
  .projectsmap_text_before .h3,
  .projectsmap_text_after .h3 {
    font-size: 1.8rem;
    font-weight: 600; }

.projectsmap_parent {
  overflow: hidden; }
  .projectsmap_parent .fullmap {
    height: 450px;
    margin: 0 0 16px;
    border-radius: 4px; }
    @media only screen and (min-width: 769px) {
      .projectsmap_parent .fullmap {
        height: 508px;
        margin: 0 0 32px; } }
.listmap_parent {
  position: relative; }

.catfilter {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 22px;
  border: 1px solid #67728B;
  border-radius: 4px;
  background: linear-gradient(to right, #9BA8C6, #C9D0DF);
  display: inline-block;
  z-index: 2; }
  @media only screen and (max-width: 600px) {
    .catfilter {
      position: relative;
      left: auto;
      top: auto;
      width: 100%;
      padding: 12px; } }
  .catfilter .catfilter_tbl {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    @media only screen and (max-width: 769px) {
      .catfilter .catfilter_tbl {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center; } }
    .catfilter .catfilter_tbl .cat_title {
      font-size: 1.4rem; }
      @media only screen and (max-width: 600px) {
        .catfilter .catfilter_tbl .cat_title {
          display: none; } }
    .catfilter .catfilter_tbl .projects_map_radios {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      .catfilter .catfilter_tbl .projects_map_radios .one_filter_cat .cat_design {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        width: 24px;
        margin: 0 0 0 32px;
        opacity: 0.4;
        cursor: pointer; }
        @media only screen and (max-width: 600px) {
          .catfilter .catfilter_tbl .projects_map_radios .one_filter_cat .cat_design {
            margin: 0 0 0 24px; } }
        .catfilter .catfilter_tbl .projects_map_radios .one_filter_cat .cat_design .image {
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
          width: 24px;
          padding-bottom: 100%; }
      .catfilter .catfilter_tbl .projects_map_radios .one_filter_cat.active .cat_design {
        opacity: 1; }
      .catfilter .catfilter_tbl .projects_map_radios .one_filter_cat:first-child .cat_design {
        margin: 0 0 0 16px; }
      .catfilter .catfilter_tbl .projects_map_radios .clear_filter {
        width: 24px;
        height: 18px;
        margin: 0 0 0 32px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
        /*opacity: 0.4;*/ }
        @media only screen and (max-width: 600px) {
          .catfilter .catfilter_tbl .projects_map_radios .clear_filter {
            margin: 0; } }
        .catfilter .catfilter_tbl .projects_map_radios .clear_filter.active {
          opacity: 1; }

.categories_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  @media only screen and (max-width: 1023px) {
    .categories_list {
      display: block;
      column-count: 2;
      padding-top: 20px; } }
  @media only screen and (max-width: 768px) {
    .categories_list {
      column-count: 1; } }
  .categories_list .category_item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 12px 12px 0; }
    .categories_list .category_item .image_container {
      margin: 0 16px 0 0; }
      .categories_list .category_item .image_container img {
        display: block;
        width: 24px; }
    .categories_list .category_item .title {
      font-size: 1.4rem; }

.cat_img {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 24px;
  width: 24px;
  min-width: 24px;
  display: block;
  margin-right: 16px;
  background-size: contain;
  background-repeat: no-repeat; }

.box_header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 8px;
  padding: 0 21px 16px 0;
  border-bottom: 1px solid #C9D0DF; }

.infoBox {
  width: 100% !important;
  padding: 13px 13px 16px 13px;
  box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
  border-radius: 4px;
  border: 1px solid #165866;
  background: #fff; }
  @media only screen and (min-width: 400px) {
    .infoBox {
      width: 336px !important; } }
  .infoBox:after {
    content: '';
    display: none;
    position: absolute;
    bottom: -7px;
    transform: translateX(-50%) rotate(45deg);
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 1px solid #165866;
    border-left: 0;
    border-top: 0;
    z-index: -1; }
    @media only screen and (min-width: 400px) {
      .infoBox:after {
        display: inline-block; } }
  .infoBox > img {
    position: absolute !important;
    top: 16px;
    right: 16px;
    width: 1.6rem;
    z-index: 1; }
  .infoBox > div {
    position: relative;
    overflow: hidden; }
  .infoBox .h_title {
    font-size: 1.6rem;
    color: #22252A; }
  .infoBox .box_content {
    position: relative;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      .infoBox .box_content {
        padding: 0 8px 8px 8px; } }
    .infoBox .box_content .project_title {
      margin: 0 0 16px 0;
      font-size: 1.4rem;
      text-align: left; }
    .infoBox .box_content .description {
      margin-bottom: 20px;
      font-size: 1.2rem;
      text-align: left; }
    .infoBox .box_content .btn_holder {
      padding: 0;
      text-align: left; }
      .infoBox .box_content .btn_holder .btn_open_sidebar {
        font-size: 1.6rem;
        font-family: "LatoBold", sans-serif;
        cursor: pointer;
        text-decoration: none; }
      .infoBox .box_content .btn_holder .text {
        color: #4552CE; }
      .infoBox .box_content .btn_holder .icon {
        margin: 0 0 0 6px;
        font-size: 1.6rem;
        color: #4552CE; }
      .infoBox .box_content .btn_holder:hover .text {
        text-decoration: underline; }
  .infoBox button {
    width: 230px; }
  .infoBox .project_q_info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 0 0 12px; }
    @media only screen and (max-width: 768px) {
      .infoBox .project_q_info {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column; } }
    @media only screen and (max-width: 768px) {
      .infoBox .project_q_info .q_left, .infoBox .project_q_info .q_right {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; } }
    @media only screen and (min-width: 769px) {
      .infoBox .project_q_info .q_left {
        margin: 0 62px 0 0; } }
    .infoBox .project_q_info .meta_title {
      margin: 0 0 4px;
      font-size: 1.2rem;
      text-align: left; }
      @media only screen and (min-width: 769px) {
        .infoBox .project_q_info .meta_title {
          margin: 0; } }
    .infoBox .project_q_info .meta_value {
      font-size: 1.2rem;
      text-align: left; }

.shadow_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 45;
  display: none; }

.map_sidebar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  padding: 16px 8px;
  background: #fff;
  z-index: 46;
  overflow-y: auto;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  -webkit-transform: translateX(120%);
  /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
  -ms-transform: translateX(120%);
  /* IE 9 */
  transform: translateX(120%); }
  @media only screen and (min-width: 769px) {
    .map_sidebar {
      position: fixed;
      top: 0;
      right: 0;
      left: auto;
      height: 100vh;
      max-width: 448px;
      padding-right: 32px;
      padding-left: 32px; } }
  .map_sidebar.visible {
    -webkit-transform: translateX(0);
    /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
    -ms-transform: translateX(0);
    /* IE 9 */
    transform: translateX(0); }
  .map_sidebar a.sidebar_close {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.6rem;
    text-decoration: none; }
    @media only screen and (min-width: 769px) {
      .map_sidebar a.sidebar_close {
        top: 32px;
        right: 32px; } }
  .map_sidebar .box_header {
    margin: 0 0 16px;
    padding: 0 20px 18px 0;
    border-bottom: 1px solid #C9D0DF; }
    @media only screen and (min-width: 769px) {
      .map_sidebar .box_header {
        padding-top: 60px; } }
    .map_sidebar .box_header img {
      width: 24px; }
    .map_sidebar .box_header .h_title {
      font-size: 1.6rem;
      margin: 0 0 0 14px; }
  .map_sidebar .box_content div {
    line-height: 1.3; }
  .map_sidebar .box_content .project_title {
    font-size: 1.4rem;
    margin: 0 0 10px 0; }
  .map_sidebar .box_content .project_q_info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .map_sidebar .box_content .project_q_info .q_left, .map_sidebar .box_content .project_q_info .q_right {
      width: 100%; }
      @media only screen and (min-width: 769px) {
        .map_sidebar .box_content .project_q_info .q_left, .map_sidebar .box_content .project_q_info .q_right {
          width: 50%; } }
  .map_sidebar div.project_formatted {
    line-height: 1.7; }

.problemsmap_text_before {
  margin: 0 0 25px 0; }
  .problemsmap_text_before p:first-of-type {
    margin-top: 0; }
  .problemsmap_text_before p:last-of-type {
    margin-bottom: 0; }
  .problemsmap_text_before p:only-child {
    margin: 0; }

.problemsmap_register_wrapper {
  margin-bottom: 52px; }
  .problemsmap_register_wrapper .mygtukas.disabled {
    margin-bottom: 12px;
    background: #C9D0DF;
    color: rgba(34, 37, 42, 0.5);
    cursor: auto; }

.problemsmap_action_buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 52px; }
  @media only screen and (min-width: 1024px) {
    .problemsmap_action_buttons {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }
  .problemsmap_action_buttons .tab_button {
    position: relative;
    margin: 0 0 24px;
    font-size: 2rem;
    color: #67728B;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    @media only screen and (min-width: 1024px) {
      .problemsmap_action_buttons .tab_button {
        margin: 0 52px 0 0; } }
    .problemsmap_action_buttons .tab_button:last-child {
      margin: 0; }
    .problemsmap_action_buttons .tab_button:after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(#5AA4E8, #4552CE);
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
    .problemsmap_action_buttons .tab_button:hover {
      color: #4552CE; }
      .problemsmap_action_buttons .tab_button:hover:after {
        opacity: 1;
        visibility: visible; }
    .problemsmap_action_buttons .tab_button.active {
      color: #4552CE;
      font-weight: 600; }
      .problemsmap_action_buttons .tab_button.active:after {
        opacity: 1;
        visibility: visible; }

.problemsmap_category_filter {
  margin-bottom: 32px; }
  .problemsmap_category_filter .input_container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    .problemsmap_category_filter .input_container label {
      margin-bottom: 4px;
      font-weight: 600; }

#problemsmap {
  height: 351px; }
  #problemsmap.fullmap {
    height: 645px;
    margin-bottom: 32px; }
    @media only screen and (max-width: 768px) {
      #problemsmap.fullmap {
        height: 400px; } }
  #problemsmap.registermap {
    height: 420px; }
    @media only screen and (max-width: 768px) {
      #problemsmap.registermap {
        height: 400px; } }
.problemsmap_legend {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 769px) {
    .problemsmap_legend {
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }
  .problemsmap_legend .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 41px 16px 0; }
    .problemsmap_legend .item:last-child {
      margin: 0 0 16px; }
    .problemsmap_legend .item .icon {
      width: 8px;
      height: 8px;
      margin-right: 16px;
      border-radius: 50%; }
      .problemsmap_legend .item .icon.icon-green {
        background-color: #18AF04; }
      .problemsmap_legend .item .icon.icon-yellow {
        background-color: #F9CC14; }
      .problemsmap_legend .item .icon.icon-red {
        background-color: #FF0000; }

.listmap_parent {
  position: relative; }

.please_select_pin_on {
  font-family: "LatoBold", sans-serif;
  margin: 0 0 12px; }

.add_file_wrp {
  margin-top: 15px; }

@media only screen and (min-width: 460px) {
  .files_block .file {
    margin: 0 0 55px 0; } }

.problemsmap_notice {
  margin: 20px 0 25px 0; }

.problemsmap_list .problem {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #C9D0DF;
  color: #22252A;
  text-decoration: none; }
  .problemsmap_list .problem .problem_title {
    margin-bottom: 6px; }
  .problemsmap_list .problem .problem_meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #67728B;
    font-family: "LatoBold", sans-serif; }
    .problemsmap_list .problem .problem_meta .status {
      margin-right: 3px; }
  .problemsmap_list .problem:hover .problem_title {
    color: #4552CE; }

.one_problem_inner {
  margin-bottom: 32px; }
  .one_problem_inner .item {
    display: block;
    margin-bottom: 17px;
    font-size: 1.8rem; }
    .one_problem_inner .item:last-child {
      margin-bottom: 0; }
    .one_problem_inner .item .title {
      margin-right: 3px;
      font-family: "LatoBold", sans-serif; }

/*
    To change this license header, choose License Headers in Project Properties.
    To change this template file, choose Tools | Templates
    and open the template in the editor.


    Created on : Aug 14, 2020, 11:21:40 AM
    Author     : leonasklumbys


.container {
    display: block;
    position: relative;
}*/
.search_form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  margin: 0 0 32px; }
  @media only screen and (max-width: 768px) {
    .search_form {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .search_form input {
    max-width: unset;
    margin: 0 20px 0 0; }
    @media only screen and (max-width: 768px) {
      .search_form input {
        margin: 0 0 16px 0; } }
  .search_form button {
    -webkit-align-self: flex-end;
    -moz-align-self: flex-end;
    -ms-align-self: flex-end;
    align-self: flex-end;
    height: 39px;
    background-color: #4552CE;
    color: #fff; }
    @media only screen and (max-width: 768px) {
      .search_form button {
        -webkit-align-self: flex-start;
        -moz-align-self: flex-start;
        -ms-align-self: flex-start;
        align-self: flex-start; } }
.results_count {
  margin: 0 0 16px;
  padding: 0 0 6px;
  font-size: 1.4rem;
  border-bottom: 1px solid #67728B; }
  .results_count .total {
    font-family: "LatoBold", sans-serif; }

.search_results .search_item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 0 16px;
  padding: 0 0 16px;
  color: #22252A;
  border-bottom: 1px solid #67728B;
  text-decoration: none;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  .search_results .search_item .search_item_content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    @media only screen and (max-width: 769px) {
      .search_results .search_item .search_item_content {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%; } }
  .search_results .search_item .h6 {
    margin: 0 0 10px;
    font-size: 2rem;
    font-family: "LatoBold", sans-serif;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
  .search_results .search_item span {
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
  .search_results .search_item .image_container {
    margin: 0 16px 0 0; }
    @media only screen and (max-width: 769px) {
      .search_results .search_item .image_container {
        margin: 0 0 16px 0; } }
  .search_results .search_item .phones, .search_results .search_item .email {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    .search_results .search_item .phones .icon, .search_results .search_item .email .icon {
      margin: 0 6px 0 0;
      font-size: 1.6rem; }
  @media only screen and (min-width: 769px) {
    .search_results .search_item .phones a {
      color: #22252A;
      text-decoration: none; } }
  .search_results .search_item .highlight {
    color: #fff;
    padding: 0;
    background-color: #4552CE; }
  .search_results .search_item:hover {
    color: #4552CE; }

.search_item.single_contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  @media only screen and (max-width: 769px) {
    .search_item.single_contact {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .search_item.single_contact .meta_info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    .search_item.single_contact .meta_info span {
      margin: 0 0 6px; }

.search_item .image_container {
  width: 266px;
  min-width: 266px; }
  @media only screen and (max-width: 769px) {
    .search_item .image_container {
      width: 100%; } }
  .search_item .image_container .image {
    display: block;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding-bottom: 50%;
    border-radius: 4px; }
    @media only screen and (min-width: 769px) {
      .search_item .image_container .image {
        padding-bottom: 62%; } }
.search_suggest_container .search_suggest_results {
  position: absolute;
  display: none;
  top: 33%;
  width: 419px;
  padding: 30px 0 0px;
  border: 1px solid #C9D0DF;
  border-radius: 4px;
  z-index: 2; }
  .search_suggest_container .search_suggest_results.showres {
    display: block; }
  .search_suggest_container .search_suggest_results .close_btn {
    position: absolute;
    right: 9px;
    top: 6px;
    color: #4552CE;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .search_suggest_container .search_suggest_results .close_btn:hover {
      color: rgba(69, 82, 206, 0.8); }
  .search_suggest_container .search_suggest_results .search_results div {
    border-bottom: 1px solid #C9D0DF; }
    .search_suggest_container .search_suggest_results .search_results div p {
      margin: 0; }
  .search_suggest_container .search_suggest_results .search_results img {
    max-width: 120px;
    float: left;
    margin: 0 8px 0 0; }
    @media only screen and (max-width: 600px) {
      .search_suggest_container .search_suggest_results .search_results img {
        max-width: 90px; } }
  .search_suggest_container .search_suggest_results .search_results a {
    color: #22252A;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    display: block;
    padding: 12px 8px;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .search_suggest_container .search_suggest_results .search_results a:after {
      content: "";
      display: block;
      clear: both; }
    .search_suggest_container .search_suggest_results .search_results a span {
      font-size: 1.4rem;
      display: block;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
    .search_suggest_container .search_suggest_results .search_results a .search_result_title {
      font-size: 1.4rem;
      color: #22252A;
      font-weight: 600;
      display: block;
      margin: 0 0 5px 0; }
      @media only screen and (max-width: 600px) {
        .search_suggest_container .search_suggest_results .search_results a .search_result_title {
          font-size: 16px; } }
    .search_suggest_container .search_suggest_results .search_results a:hover span {
      color: #4552CE; }
  .search_suggest_container .search_suggest_results .search_bottom_line {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    position: relative;
    padding: 12px; }
    .search_suggest_container .search_suggest_results .search_bottom_line .bott_right a {
      text-decoration: none; }
      .search_suggest_container .search_suggest_results .search_bottom_line .bott_right a span.t {
        font-size: 1.4rem;
        font-weight: 600; }
      .search_suggest_container .search_suggest_results .search_bottom_line .bott_right a .icon {
        vertical-align: 1px;
        margin-left: 6px;
        font-size: 0.9rem; }
      .search_suggest_container .search_suggest_results .search_bottom_line .bott_right a:hover span.t {
        text-decoration: underline; }

.search_modules {
  margin-bottom: 32px; }
  .search_modules a {
    margin-right: 3px; }
    .search_modules a:last-child {
      margin-right: 0; }
  .search_modules .reset_search {
    display: block;
    margin-top: 16px; }

.structure_parent li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 12px; }
  .structure_parent li.has_childs {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    margin: 0; }
    .structure_parent li.has_childs:before {
      display: none; }
    .structure_parent li.has_childs > .link_cont {
      margin: 0 0 12px; }
      .structure_parent li.has_childs > .link_cont:before {
        content: '';
        width: 4px;
        height: 4px;
        display: inline-block;
        margin: 0 6px 3px 0;
        background-color: #5D9FEA; }
    .structure_parent li.has_childs ul {
      margin: 0 0 0 20px; }
      @media only screen and (min-width: 1024px) {
        .structure_parent li.has_childs ul {
          margin: 0 0 0 30px; } }
  .structure_parent li a {
    color: #4552CE; }
    .structure_parent li a:hover {
      text-decoration: underline; }

.titlepage_outer .bg_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.titlepage_outer .read_more {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
  align-self: flex-start;
  position: relative;
  margin-top: auto;
  margin-bottom: 35px;
  font-size: 1.6rem;
  font-family: "LatoBold", sans-serif;
  color: #4552CE;
  text-decoration: none; }
  .titlepage_outer .read_more .text {
    border-bottom: 1px solid transparent;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
  .titlepage_outer .read_more .icon {
    display: inline-block;
    margin-left: 6px; }
  .titlepage_outer .read_more:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4552CE;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
  .titlepage_outer .read_more:hover:after {
    opacity: 1;
    visibility: visible; }

.titlepage_outer .tp_meta_container {
  margin: 32px 0 24px; }
  @media only screen and (min-width: 1024px) {
    .titlepage_outer .tp_meta_container {
      margin: 64px 0 32px; } }
  .titlepage_outer .tp_meta_container .tp_section_title {
    display: block;
    margin-bottom: 12px;
    font-size: 2.8rem;
    font-family: "PT Serif", serif;
    font-weight: 700;
    text-align: center; }
    @media only screen and (min-width: 1024px) {
      .titlepage_outer .tp_meta_container .tp_section_title {
        font-size: 3.8rem; } }
  .titlepage_outer .tp_meta_container .tp_section_description {
    display: block;
    margin: 0 auto 12px;
    max-width: 366px;
    color: #67728B;
    text-align: center; }
  .titlepage_outer .tp_meta_container .tp_section_line {
    display: block;
    height: 1px;
    width: 45px;
    margin: 0 auto;
    background-color: #22252A; }

.titlepage_outer .tp_btns_container {
  margin-top: 20px;
  text-align: center; }

.titlepage_outer .tp_three_cols_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%; }
  .titlepage_outer .tp_three_cols_list .item_container, .titlepage_outer .tp_three_cols_list .list_item {
    width: 32%;
    margin: 1%;
    float: none; }
    .titlepage_outer .tp_three_cols_list .item_container:nth-child(3n+1), .titlepage_outer .tp_three_cols_list .list_item:nth-child(3n+1) {
      margin-left: 0; }
    .titlepage_outer .tp_three_cols_list .item_container:nth-child(3n), .titlepage_outer .tp_three_cols_list .list_item:nth-child(3n) {
      margin-right: 0; }
    @media only screen and (max-width: 1023px) {
      .titlepage_outer .tp_three_cols_list .item_container, .titlepage_outer .tp_three_cols_list .list_item {
        width: 100%; }
        .titlepage_outer .tp_three_cols_list .item_container:nth-child(odd), .titlepage_outer .tp_three_cols_list .list_item:nth-child(odd) {
          margin: 0.8rem 0; }
        .titlepage_outer .tp_three_cols_list .item_container:nth-child(even), .titlepage_outer .tp_three_cols_list .list_item:nth-child(even) {
          margin: 0.8rem 0; }
        .titlepage_outer .tp_three_cols_list .item_container:first-child, .titlepage_outer .tp_three_cols_list .list_item:first-child {
          margin-top: 0; } }
.titlepage {
  position: relative;
  max-width: 1118px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 1; }
  .titlepage .section_services .list_item {
    background-repeat: no-repeat;
    background-position: -1px 101%; }
    .titlepage .section_services .list_item img {
      display: none; }
    .titlepage .section_services .list_item:nth-child(1) {
      background-image: url(../img/list_item_bg1.png); }
    .titlepage .section_services .list_item:nth-child(2) {
      background-image: url(../img/list_item_bg2.png); }
    .titlepage .section_services .list_item:nth-child(3) {
      background-image: url(../img/list_item_bg3.png); }
    .titlepage .section_services .list_item:nth-child(n+4) {
      display: none; }
  .titlepage .slick-slider .slick-track, .titlepage .slick-slider .slick-list, .titlepage .slick-slider .item, .titlepage .slick-slider .slide {
    height: 100%; }
    .titlepage .slick-slider .slick-track:focus, .titlepage .slick-slider .slick-list:focus, .titlepage .slick-slider .item:focus, .titlepage .slick-slider .slide:focus {
      outline: 0; }

.section_slides {
  margin-top: 50px;
  margin-bottom: 32px; }
  @media only screen and (min-width: 1024px) {
    .section_slides {
      margin-bottom: 186px; } }
  @media only screen and (min-width: 1024px) {
    .section_slides {
      margin-top: 110px; } }
  .section_slides #tp_hero_slider {
    margin: 0;
    height: 100%; }
    .section_slides #tp_hero_slider:focus {
      outline: 0; }
  .section_slides .slide {
    position: relative;
    margin-top: 16px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 42.556%;
    min-height: 270px;
    /*        &:after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background-color: rgba($text_color, 0.85);
                }*/ }
    @media only screen and (min-width: 1024px) {
      .section_slides .slide {
        margin-top: 32px; } }
    @media only screen and (max-width: 650px) {
      .section_slides .slide {
        background-size: cover;
        min-height: 180px; } }
    @media only screen and (max-width: 450px) {
      .section_slides .slide {
        background-size: cover;
        min-height: 150px; } }
    @media only screen and (max-width: 350px) {
      .section_slides .slide {
        background-size: cover;
        min-height: 135px; } }
  .section_slides .text_content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    color: #fff;
    display: none; }
    .section_slides .text_content .title {
      margin-bottom: 13px;
      font-size: 2.2rem;
      font-family: "PT Serif", serif;
      font-weight: 700;
      text-align: center; }
      @media only screen and (min-width: 769px) {
        .section_slides .text_content .title {
          font-size: 3rem; } }
      @media only screen and (min-width: 1024px) {
        .section_slides .text_content .title {
          font-size: 3.8rem; } }
    .section_slides .text_content .line {
      margin-bottom: 23px;
      width: 220px;
      height: 1px;
      background-color: #fff; }
      @media only screen and (min-width: 769px) {
        .section_slides .text_content .line {
          width: 300px; } }
    .section_slides .text_content .description {
      max-width: 350px;
      font-size: 1.6rem;
      text-align: center; }

.section_heronav {
  display: none;
  box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
  background-color: #fff; }
  .section_heronav.scrolled {
    top: 73px; }
  @media only screen and (min-width: 1024px) {
    .section_heronav {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      position: fixed;
      top: 110px;
      left: 0px;
      width: 75px;
      z-index: 2; } }
  @media only screen and (min-width: 1024px) and (max-width: 1350px) {
    .section_heronav {
      display: none; } }
  @media only screen and (min-width: 1024px) {
      .section_heronav .nav_item {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        position: relative;
        width: 75px;
        height: 75px;
        border-bottom: 1px solid #4552CE;
        border-left: 1px solid transparent; }
        .section_heronav .nav_item:first-child {
          margin-top: 100px;
          border-top: 1px solid transparent; }
        .section_heronav .nav_item:last-child {
          margin-bottom: 100px;
          border: 0;
          border-bottom: 1px solid transparent;
          border-left: 1px solid transparent; }
        .section_heronav .nav_item.hovered {
          border-left-color: #4552CE;
          background-color: #F6F6FE; }
          .section_heronav .nav_item.hovered:first-child {
            border-top: 1px solid #4552CE; }
          .section_heronav .nav_item.hovered:last-child {
            border-bottom: 1px solid #4552CE; }
          .section_heronav .nav_item.hovered .title {
            border: 1px solid #4552CE;
            border-left: 0;
            background: #F6F6FE;
            visibility: visible; }
      .section_heronav .image_container {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        width: 32px;
        height: 32px;
        text-align: center;
        cursor: pointer;
        z-index: 1; }
        .section_heronav .image_container .icon {
          display: inline-block;
          width: 32px;
          max-width: 32px;
          max-height: 32px;
          height: 32px; }
      .section_heronav .title {
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
        line-height: 74px;
        visibility: hidden;
        font-size: 1.8rem;
        color: #22252A;
        white-space: nowrap;
        padding: 0 15px; } }
.section_services {
  margin-bottom: 32px; }
  @media only screen and (min-width: 1024px) {
    .section_services {
      position: absolute;
      top: 365px;
      padding: 0 92px;
      margin-bottom: 0; } }
  .section_services .list_item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #fff;
    cursor: auto;
    box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    min-height: 260px; }
    @media only screen and (min-width: 768px) {
      .section_services .list_item {
        padding: 16px 0; } }
    .section_services .list_item:hover {
      border-color: #C9D0DF;
      box-shadow: 0 2px 30px rgba(103, 114, 139, 0.4); }
      .section_services .list_item:hover .title {
        color: #4552CE; }
    .section_services .list_item .image_container {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      margin: 0 auto 16px;
      border-radius: 4px; }
      .section_services .list_item .image_container .image {
        width: 50px;
        max-width: 50px;
        min-width: 50px;
        height: auto; }
    .section_services .list_item .title {
      width: 100%;
      margin-bottom: 10px;
      margin-top: 20px;
      font-size: 2.2rem;
      font-family: "PT Serif", serif;
      font-weight: 700;
      color: #22252A;
      text-align: center;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
      @media only screen and (min-width: 769px) {
        .section_services .list_item .title {
          font-size: 2.8rem; } }
    .section_services .list_item .description {
      width: 100%;
      margin-bottom: 32px;
      font-size: 1.6rem;
      color: #22252A;
      text-align: center; }
    .section_services .list_item .read_more {
      -webkit-align-self: center;
      -moz-align-self: center;
      -ms-align-self: center;
      align-self: center; }
      .section_services .list_item .read_more:hover:after {
        opacity: 0; }

.section_important_information {
  position: relative; }
  .section_important_information.hidden {
    height: 0;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
  .section_important_information .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 16px;
    border-radius: 4px;
    background: linear-gradient(to right, #9BA8C6, #C9D0DF); }
    @media only screen and (min-width: 1024px) {
      .section_important_information .item {
        padding: 32px; } }
    .section_important_information .item .icon.icon-info {
      -webkit-align-self: center;
      -moz-align-self: center;
      -ms-align-self: center;
      align-self: center;
      margin-right: 16px;
      font-size: 2.8rem;
      color: #fff; }
      @media only screen and (min-width: 1024px) {
        .section_important_information .item .icon.icon-info {
          margin-right: 32px;
          font-size: 3.2rem; } }
    .section_important_information .item .icon.icon-close {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 1.9rem;
      color: #4552CE;
      cursor: pointer;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
      .section_important_information .item .icon.icon-close:hover {
        color: #5D9FEA; }
    .section_important_information .item .content {
      width: 100%; }
      .section_important_information .item .content .title {
        display: block;
        margin-bottom: 12px;
        padding-right: 40px;
        font-size: 1.8rem;
        font-family: "PT Serif", serif;
        font-weight: 700;
        color: #fff; }
      .section_important_information .item .content .description {
        display: block;
        margin-bottom: 12px;
        font-size: 1.6rem; }
      .section_important_information .item .content .read_more {
        color: #fff; }
        .section_important_information .item .content .read_more:hover:after {
          background-color: #fff; }

.section_events {
  background-image: linear-gradient(120deg, #ffffff 0%, #f6f6fe 100%); }
  .section_events .titlepage {
    position: relative;
    margin-top: 20px;
    padding: 32px 15px;
    z-index: 1; }
    .section_events .titlepage:after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      transform: translateY(50%);
      width: 384px;
      height: 404px;
      background-size: cover;
      background-image: url("../img/../img/ornament-big.png");
      background-position: center;
      background-repeat: no-repeat;
      z-index: -1; }
      @media only screen and (min-width: 768px) {
        .section_events .titlepage:after {
          right: -139px; } }
      @media only screen and (max-width: 768px) {
        .section_events .titlepage:after {
          display: none; } }
    @media only screen and (min-width: 768px) {
      .section_events .titlepage {
        padding: 64px 15px; } }
    .section_events .titlepage .tp_meta_container {
      margin: 0 0 24px; }
  @media only screen and (min-width: 1024px) {
    .section_events .events_calendar_block {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; } }
  .section_events .event_items_list {
    margin: 16px 0 0 0; }
    @media only screen and (min-width: 1024px) {
      .section_events .event_items_list {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0 0 0 32px;
        width: 100%; } }
    .section_events .event_items_list .items_list {
      height: 100%;
      max-height: 398px;
      overflow-y: auto;
      border-radius: 4px; }
      .section_events .event_items_list .items_list::-webkit-scrollbar {
        width: 10px;
        margin-left: 5px; }
      .section_events .event_items_list .items_list::-webkit-scrollbar-track {
        background: #eaedf1;
        border-radius: 5px; }
      .section_events .event_items_list .items_list::-webkit-scrollbar-thumb {
        max-height: 50px;
        border-radius: 5px;
        background: #cbd1dd; }
      .section_events .event_items_list .items_list::-webkit-scrollbar-thumb:hover {
        background: rgba(203, 209, 221, 0.5); }
    .section_events .event_items_list .item_container {
      padding-bottom: 26px; }
      .section_events .event_items_list .item_container:last-child {
        margin: 0; }
      .section_events .event_items_list .item_container .item {
        /*min-height: 144px;*/
        box-shadow: none; }
        .section_events .event_items_list .item_container .item .content {
          padding-bottom: 13px; }
          .section_events .event_items_list .item_container .item .content .read_more {
            margin-top: auto; }
    .section_events .event_items_list .day_events {
      display: none;
      margin: 0 0 16px; }
      .section_events .event_items_list .day_events.show {
        display: block; }
      .section_events .event_items_list .day_events:last-of-type {
        margin: 0; }
    .section_events .event_items_list .btn_holder {
      margin-top: 32px;
      text-align: center; }
      .section_events .event_items_list .btn_holder a {
        margin-right: 15px; }
      @media only screen and (min-width: 1024px) {
        .section_events .event_items_list .btn_holder {
          margin-top: auto;
          text-align: left; } }
.section_about_municipality .item_container {
  padding: 16px;
  border-radius: 4px;
  background: linear-gradient(to top right, rgba(155, 168, 198, 0.1), rgba(201, 208, 223, 0.1));
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .section_about_municipality .item_container {
      padding: 32px; } }
  .section_about_municipality .item_container .text {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: "PT Serif", serif;
    color: #fff;
    text-align: center;
    z-index: 1; }
    .section_about_municipality .item_container .text:after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -8px;
      transform: translateX(-50%);
      width: 45px;
      height: 1px;
      background-color: #4552CE; }

.section_about_municipality .bg_image {
  position: relative;
  padding-bottom: 113%;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  .section_about_municipality .bg_image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(3, 4, 4, 0.5); }
  .section_about_municipality .bg_image:hover {
    transform: scale(1.25); }

.section_areas_of_activity {
  margin: 32px 0;
  padding: 52px 42px 32px;
  border-radius: 4px;
  box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15); }
  @media only screen and (min-width: 1024px) {
    .section_areas_of_activity {
      margin-top: 64px; } }
  .section_areas_of_activity .tp_meta_container {
    margin-top: 0;
    margin-bottom: 0; }
  .section_areas_of_activity .item {
    padding: 16px;
    text-decoration: none; }
    .section_areas_of_activity .item .drop_shadow {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      height: 100% !important;
      box-shadow: 0 2px 20px rgba(103, 114, 139, 0.15);
      border-radius: 4px; }
    .section_areas_of_activity .item .item_content {
      width: 100%;
      height: 100% !important;
      padding: 24px 0 19px;
      border: 1px solid transparent;
      border-radius: 4px;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
      .section_areas_of_activity .item .item_content .image {
        width: 32px;
        height: 32px;
        min-width: 32px;
        max-height: 32px;
        min-height: 32px;
        margin: 0 auto 17px; }
      .section_areas_of_activity .item .item_content .title {
        display: block;
        padding: 0 12px;
        font-size: 1.6rem;
        font-family: "PT Serif", serif;
        color: #22252A;
        text-align: center; }
      .section_areas_of_activity .item .item_content:hover {
        background-color: #F6F6FE;
        border-color: #4552CE; }
  .section_areas_of_activity .slick-slider {
    min-height: 168px;
    height: 1px; }
  .section_areas_of_activity .slick-list {
    margin: 0 -10px;
    overflow: visible; }
  .section_areas_of_activity .slick-slide {
    margin: 0 10px; }
  .section_areas_of_activity .slider_wrapper {
    width: calc(100% + 20px);
    padding: 0 15px;
    margin-left: -15px;
    overflow: hidden; }
  .section_areas_of_activity .slick-slide .drop_shadow {
    box-shadow: none;
    transition: box-shadow 0.1s ease-in-out; }
  .section_areas_of_activity .slick-slide.slick-active .drop_shadow {
    box-shadow: 0 2px 20px rgba(103, 114, 139, 0.15); }
  .section_areas_of_activity .slick-arrow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    margin-top: 0;
    font-size: 0;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 40px rgba(103, 114, 139, 0.15);
    color: #4552CE; }
    .section_areas_of_activity .slick-arrow.slick-next, .section_areas_of_activity .slick-arrow.slick-prev {
      z-index: 1; }
      .section_areas_of_activity .slick-arrow.slick-next:before, .section_areas_of_activity .slick-arrow.slick-prev:before {
        content: '\e905';
        color: #4552CE;
        font-size: 1.4rem;
        /* use !important to prevent issues with browser extensions that change fonts */
        font-family: 'icomoon' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        display: inline-block;
        vertical-align: middle;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -o-transition: all 150ms ease-in-out;
        -ms-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in-out; }
      .section_areas_of_activity .slick-arrow.slick-next:hover:before, .section_areas_of_activity .slick-arrow.slick-prev:hover:before {
        color: #4552CE; }
    .section_areas_of_activity .slick-arrow.slick-next {
      right: 3px; }
    .section_areas_of_activity .slick-arrow.slick-prev {
      left: 3px; }
      .section_areas_of_activity .slick-arrow.slick-prev:before {
        transform: rotate(180deg); }

.promoblock_slider {
  margin: 0 0 32px; }
  .promoblock_slider .one_widget {
    margin: 0; }
  .promoblock_slider .slick-list {
    margin: 0 20px; }
    .promoblock_slider .slick-list .slick-track {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
  .promoblock_slider .slick-slide {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center; }
    .promoblock_slider .slick-slide a {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center; }
    .promoblock_slider .slick-slide img {
      width: 110px; }
  .promoblock_slider .slick-prev,
  .promoblock_slider .slick-next {
    background-color: transparent; }
    .promoblock_slider .slick-prev:before,
    .promoblock_slider .slick-next:before {
      color: #4552CE;
      font-size: 2.7rem;
      /* use !important to prevent issues with browser extensions that change fonts */
      font-family: 'icomoon' !important;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      display: inline-block;
      vertical-align: middle;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .promoblock_slider .slick-prev:after,
    .promoblock_slider .slick-next:after {
      opacity: 0; }
  .promoblock_slider .slick-prev {
    left: 0; }
    .promoblock_slider .slick-prev:before {
      content: "\e909";
      transform: rotate(90deg); }
  .promoblock_slider .slick-next {
    right: 0; }
    .promoblock_slider .slick-next:before {
      content: "\e909";
      transform: rotate(-90deg); }
  .promoblock_slider .slick-slide a {
    max-height: 82px;
    outline-color: #4552CE; }

.important-banners-holder {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 30px;
  justify-content: center; }
  .important-banners-holder .important-banner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: calc(50% - 8px);
    border-radius: 4px;
    height: 190px;
    background: linear-gradient(to right, #9BA8C6, #C9D0DF);
    padding: 32px;
    position: relative; }
    .important-banners-holder .important-banner.hidden {
      display: none; }
    .important-banners-holder .important-banner:first-child {
      margin: 0 8px 0 0; }
    .important-banners-holder .important-banner:nth-child(2) {
      margin: 0 0 0 8px; }
    .important-banners-holder .important-banner .read_more.full {
      width: 100%;
      height: 100%;
      display: block; }
      .important-banners-holder .important-banner .read_more.full:hover {
        text-decoration: none; }
        .important-banners-holder .important-banner .read_more.full:hover:after {
          content: none; }
    .important-banners-holder .important-banner .icon.icon-info {
      -webkit-align-self: center;
      -moz-align-self: center;
      -ms-align-self: center;
      align-self: center;
      margin-right: 16px;
      font-size: 2.8rem;
      color: #fff; }
      @media only screen and (min-width: 1024px) {
        .important-banners-holder .important-banner .icon.icon-info {
          margin-right: 32px;
          font-size: 3.2rem; } }
    .important-banners-holder .important-banner .icon.icon-close {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 1.9rem;
      color: #4552CE;
      cursor: pointer;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
      .important-banners-holder .important-banner .icon.icon-close:hover {
        color: #5D9FEA; }
    .important-banners-holder .important-banner .content {
      width: 100%; }
      .important-banners-holder .important-banner .content .title {
        display: block;
        margin-bottom: 12px;
        padding-right: 40px;
        font-size: 1.8rem;
        font-family: "PT Serif", serif;
        font-weight: 700;
        color: #fff; }
      .important-banners-holder .important-banner .content .description {
        display: block;
        margin-bottom: 12px;
        font-size: 1.6rem; }
      .important-banners-holder .important-banner .content .read_more {
        color: #fff; }
        .important-banners-holder .important-banner .content .read_more:hover:after {
          background-color: #fff; }
    @media only screen and (max-width: 1100px) {
      .important-banners-holder .important-banner {
        height: 180px; } }
    @media only screen and (max-width: 1024px) {
      .important-banners-holder .important-banner {
        height: 170px;
        padding: 10px; } }
    @media only screen and (max-width: 950px) {
      .important-banners-holder .important-banner {
        height: 160px; } }
    @media only screen and (max-width: 900px) {
      .important-banners-holder .important-banner {
        height: 150px; } }
    @media only screen and (max-width: 800px) {
      .important-banners-holder .important-banner {
        height: 190px;
        max-width: 527px;
        margin: 0 auto 10px auto !important;
        padding: 32px; }
        .important-banners-holder .important-banner.no-img {
          height: auto; } }
    @media only screen and (max-width: 560px) {
      .important-banners-holder .important-banner {
        height: 180px; } }
    @media only screen and (max-width: 520px) {
      .important-banners-holder .important-banner {
        height: 170px; } }
    @media only screen and (max-width: 480px) {
      .important-banners-holder .important-banner {
        height: 160px; } }
    @media only screen and (max-width: 440px) {
      .important-banners-holder .important-banner {
        height: 135px; } }
    @media only screen and (max-width: 400px) {
      .important-banners-holder .important-banner {
        height: 115px; } }
    @media only screen and (max-width: 360px) {
      .important-banners-holder .important-banner {
        height: 100px; } }
  @media only screen and (max-width: 800px) {
    .important-banners-holder {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      .important-banners-holder .important-banner {
        width: 100%; } }
.no-padding {
  padding: 0 !important; }

.profile_buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 32px; }
  @media only screen and (min-width: 1024px) {
    .profile_buttons {
      margin: 0 0 65px;
      padding: 18px 0;
      border: 1px solid #C9D0DF;
      border-radius: 4px;
      background-color: #fff; } }
  .profile_buttons .btn_profile {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    width: 100%;
    height: 50px;
    margin: 0 0 16px;
    padding: 0 16px;
    border: 1px solid #C9D0DF;
    border-radius: 4px;
    font-size: 1.4rem;
    line-height: 1;
    background-color: #fff;
    color: #22252A;
    text-decoration: none;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    @media only screen and (min-width: 1024px) {
      .profile_buttons .btn_profile {
        width: 33%;
        height: auto;
        margin: 0;
        padding: 0 32px;
        border-radius: 0;
        border: 0; } }
    .profile_buttons .btn_profile .btn_content {
      position: relative;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      .profile_buttons .btn_profile .btn_content:after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #4552CE;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -o-transition: all 150ms ease-in-out;
        -ms-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in-out; }
    .profile_buttons .btn_profile:hover {
      color: #4552CE; }
      .profile_buttons .btn_profile:hover .btn_content:after {
        opacity: 1;
        visibility: visible; }
    @media only screen and (min-width: 1024px) {
      .profile_buttons .btn_profile:first-child {
        border-right: 1px solid #C9D0DF; } }
    @media only screen and (min-width: 1024px) {
      .profile_buttons .btn_profile:last-child {
        border-left: 1px solid #C9D0DF; } }
    .profile_buttons .btn_profile .icon {
      display: block;
      margin: 0 12px 0 0;
      font-size: 2.4rem; }
    .profile_buttons .btn_profile.display_none {
      display: none; }

.eldership_index .eldership_index_text {
  margin-bottom: 32px; }

.eldership_index .eldership_index_navigation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 32px; }
  @media only screen and (min-width: 769px) {
    .eldership_index .eldership_index_navigation {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      margin: 0 0 47px -16px; } }
  .eldership_index .eldership_index_navigation .link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    height: 168px;
    margin: 0 0 16px;
    border-radius: 4px;
    font-size: 1.8rem;
    font-family: "PT Serif", serif;
    background: linear-gradient(to right, #9BA8C6 0%, #C9D0DF 100%);
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .eldership_index .eldership_index_navigation .link:last-child {
      margin: 0; }
    @media only screen and (min-width: 768px) {
      .eldership_index .eldership_index_navigation .link {
        width: 230px;
        margin: 0 0 0 16px; }
        .eldership_index .eldership_index_navigation .link:last-child {
          margin: 0 0 0 16px; } }
    .eldership_index .eldership_index_navigation .link .icon {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      font-size: 4.2rem;
      color: #fff;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
    .eldership_index .eldership_index_navigation .link:hover {
      color: #4552CE; }
      .eldership_index .eldership_index_navigation .link:hover .icon {
        color: #4552CE; }

.eldership_index .eldership_index_upload .title {
  display: block;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-family: "LatoBold", sans-serif; }

.eldership_content_block {
  margin: 0 0 51px; }
  .eldership_content_block .eldership_content_title {
    display: block;
    margin: 0 0 17px;
    font-size: 3.4rem;
    font-family: "LatoBold", sans-serif; }

.sub_eldership_list,
.voting_container {
  margin: 0 0 51px; }
  .sub_eldership_list .scrollable table,
  .voting_container .scrollable table {
    margin: 0 auto; }
  .sub_eldership_list table,
  .voting_container table {
    width: 720px;
    margin: 0 auto;
    border-collapse: separate;
    border: 1px solid #67728B;
    border-bottom: 0;
    border-radius: 4px;
    overflow: hidden; }
    .sub_eldership_list table tr td:last-child, .sub_eldership_list table tr td:nth-child(3),
    .voting_container table tr td:last-child,
    .voting_container table tr td:nth-child(3) {
      text-align: center; }
    .sub_eldership_list table thead tr,
    .voting_container table thead tr {
      background: linear-gradient(to right, #9BA8C6 0%, #C9D0DF 100%); }
      .sub_eldership_list table thead tr th,
      .voting_container table thead tr th {
        border: 0;
        border-bottom: 1px solid #67728B;
        background: transparent;
        font-weight: 400; }
        .sub_eldership_list table thead tr th:first-child,
        .voting_container table thead tr th:first-child {
          border-radius: 4px 0 0 0; }
        .sub_eldership_list table thead tr th:nth-child(3),
        .voting_container table thead tr th:nth-child(3) {
          text-align: center; }
        .sub_eldership_list table thead tr th:last-child,
        .voting_container table thead tr th:last-child {
          border-radius: 0 4px 0 0;
          text-align: center; }
    .sub_eldership_list table tbody tr td,
    .voting_container table tbody tr td {
      padding: 8px 20px;
      border: 0; }
    .sub_eldership_list table tbody tr:first-child td,
    .voting_container table tbody tr:first-child td {
      padding-top: 16px; }
    .sub_eldership_list table tbody tr:last-child td,
    .voting_container table tbody tr:last-child td {
      padding-bottom: 16px; }
    .sub_eldership_list table tbody:nth-child(even) tr:last-child td,
    .voting_container table tbody:nth-child(even) tr:last-child td {
      border-bottom: 1px solid #67728B; }
    .sub_eldership_list table tbody:nth-child(even) tr td,
    .voting_container table tbody:nth-child(even) tr td {
      background-color: #fff; }
    .sub_eldership_list table tbody:nth-child(odd) tr:last-child td,
    .voting_container table tbody:nth-child(odd) tr:last-child td {
      border-bottom: 1px solid #67728B; }
    .sub_eldership_list table tbody:nth-child(odd) tr td,
    .voting_container table tbody:nth-child(odd) tr td {
      background-color: #F7F7FB; }

.voting_container table thead tr th:nth-child(3), .voting_container table thead tr th:last-child {
  text-align: left; }

.voting_container table tbody tr:nth-child(even) td {
  background-color: #F7F7FB; }

.voting_container table tbody tr:last-child td {
  border-bottom: 0; }

.voting_container table tbody tr td {
  border-bottom: 1px solid #67728B; }
  .voting_container table tbody tr td:first-child {
    white-space: nowrap; }
  .voting_container table tbody tr td:nth-child(3) {
    text-align: left; }
  .voting_container table tbody tr td.vote_cell.first {
    border-left: 1px solid #67728B; }
    .voting_container table tbody tr td.vote_cell.first .text {
      display: inline-block;
      margin-bottom: 5px; }

.voting_container .button_vote {
  width: 100%;
  height: 27px;
  padding: 0;
  line-height: 27px; }

.voting_container .button_identify {
  font-size: 1.2rem;
  font-family: "LatoBold", sans-serif;
  text-transform: uppercase; }

.eldership_preview .sub_eldership_title {
  display: block;
  margin: 0 0 5px;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "PT Serif", serif; }

.eldership_preview .eldership_title {
  display: block;
  margin: 0 0 52px;
  font-size: 1.4rem; }

.eldership_preview .voting_container .voting_section {
  margin: 0 0 51px; }

.eldership_preview .voting_container .section_header {
  margin-bottom: 24px; }
  .eldership_preview .voting_container .section_header .voting_section_title {
    display: block;
    font-size: 1.8rem; }
  .eldership_preview .voting_container .section_header .voting_date .text {
    margin: 0 7px 0 0; }

.eldership_preview .voting_container .display_none {
  display: none; }

.no_active_voting {
  margin-bottom: 32px;
  font-size: 1.8rem;
  font-family: "LatoBold", sans-serif; }

.candidate_modal_content {
  position: relative;
  padding: 24px 16px 16px; }
  @media only screen and (min-width: 768px) {
    .candidate_modal_content {
      padding: 43px 32px 32px; } }
  .candidate_modal_content button {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    font-size: 1.6rem;
    background: none;
    color: #4552CE; }
    .candidate_modal_content button:hover {
      border: 0;
      color: #4552CE; }
  .candidate_modal_content .title {
    margin: 0 0 12px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: "PT Serif", serif; }
  .candidate_modal_content .meta_info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 12px; }
    .candidate_modal_content .meta_info a {
      font-size: 1.2rem; }
      .candidate_modal_content .meta_info a:first-child {
        margin-right: 40px; }
  .candidate_modal_content p {
    margin: 0 0 12px; }

.fancybox-container.eldership .fancybox-content {
  max-width: 448px;
  margin: 0;
  border-radius: 4px; }

/* Darbotvarke */
@media only screen and (min-width: 768px) {
  .agenda-preview {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap; } }

.agenda-preview__calendar {
  margin-bottom: 3.2rem; }
  @media only screen and (min-width: 768px) {
    .agenda-preview__calendar {
      -webkit-box-flex: 0 0 44rem;
      -moz-box-flex: 0 0 44rem;
      -webkit-flex: 0 0 44rem;
      -ms-flex: 0 0 44rem;
      flex: 0 0 44rem;
      max-width: 44rem;
      margin: 0; } }
  @media only screen and (min-width: 768px) {
    .agenda-preview__calendar + .agenda-preview__tasks {
      -webkit-box-flex: 1 1 auto;
      -moz-box-flex: 1 1 auto;
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      max-width: 100%;
      max-width: -webkit-calc(100% - 44rem);
      max-width: -moz-calc(100% - 44rem);
      max-width: calc(100% - 44rem);
      padding-left: 1.6rem; } }
@media only screen and (min-width: 768px) {
  .agenda-preview__tasks {
    -webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 100%; } }

.agenda-preview__today {
  position: relative;
  margin-bottom: 3.2rem;
  padding-left: 2.8rem;
  color: #333333;
  font-family: "PT Serif", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px; }
  @media only screen and (min-width: 1024px) {
    .agenda-preview__today {
      margin-bottom: 4rem; } }
  .agenda-preview__today span {
    position: absolute;
    top: 0.1rem;
    left: 0;
    color: #67728B;
    font-size: 2.2rem; }

.agenda-tasks__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-top: 3.2rem; }
  @media only screen and (min-width: 1024px) {
    .agenda-tasks__item {
      margin-top: 4rem; } }
  .agenda-tasks__item:first-child {
    margin-top: 0; }

.agenda-tasks__time {
  -webkit-box-flex: 0 0 6.6rem;
  -moz-box-flex: 0 0 6.6rem;
  -webkit-flex: 0 0 6.6rem;
  -ms-flex: 0 0 6.6rem;
  flex: 0 0 6.6rem;
  max-width: 6.6rem;
  color: #4552CE;
  font-family: "PT Serif", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.1rem; }
  @media only screen and (min-width: 1024px) {
    .agenda-tasks__time {
      -webkit-box-flex: 0 0 9rem;
      -moz-box-flex: 0 0 9rem;
      -webkit-flex: 0 0 9rem;
      -ms-flex: 0 0 9rem;
      flex: 0 0 9rem;
      max-width: 9rem;
      font-size: 2.8rem;
      line-height: 2.5rem; } }
  .agenda-tasks__time + .agenda-tasks__title {
    position: relative;
    padding-left: 3.8rem; }
    .agenda-tasks__time + .agenda-tasks__title:before {
      content: '';
      position: absolute;
      top: 1rem;
      left: 0;
      width: 2.2rem;
      height: 1px;
      background: #C9D0DF; }
      @media only screen and (min-width: 1024px) {
        .agenda-tasks__time + .agenda-tasks__title:before {
          top: 1.2rem; } }
.agenda-tasks__title {
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center;
  color: #333333;
  font-family: "PT Serif", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.1rem; }
  @media only screen and (min-width: 1024px) {
    .agenda-tasks__title {
      font-size: 1.8rem;
      line-height: 2.5rem; } }
/* Darbotvarke end */
.votingsystem {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  /*min-height: 640px;*/ }
  .votingsystem .categories-holder {
    width: 100%;
    max-width: 260px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end; }
    .votingsystem .categories-holder .title {
      color: #000000;
      font-size: 16px;
      font-weight: 700;
      line-height: normal;
      width: 100%;
      padding: 0 0 16px 0;
      border-bottom: 1px solid #FFF; }
    .votingsystem .categories-holder ul {
      max-width: 260px;
      width: 100%;
      margin: 0;
      padding: 16px;
      background-color: #fff;
      border: 1px solid #c9d0df;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px; }
      .votingsystem .categories-holder ul li {
        background-image: none;
        padding: 0; }
        .votingsystem .categories-holder ul li a {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          -ms-flex-align: center;
          align-items: center;
          height: 49px;
          padding: 8px 16px;
          color: #000000;
          font-size: 14px;
          font-weight: 400;
          line-height: normal; }
        .votingsystem .categories-holder ul li.current a {
          color: #4552CE;
          font-weight: 700;
          text-decoration: underline; }
        .votingsystem .categories-holder ul li:before {
          display: none; }
        .votingsystem .categories-holder ul li:not(:last-child) a {
          border-bottom: 1px solid #C9D0DF; }
    @media only screen and (max-width: 1024px) {
      .votingsystem .categories-holder {
        max-width: 275px; } }
  .votingsystem .voting-content-holder {
    padding: 0 32px 50px 32px;
    width: 100%;
    max-width: 940px; }
    .votingsystem .voting-content-holder > h3 {
      color: #000000;
      font-size: 28px;
      font-weight: 700;
      margin: 0 0 29px 0;
      padding-bottom: 20px;
      border-bottom: 1px solid #C9D0DF; }
    .votingsystem .voting-content-holder .text-before {
      margin-bottom: 1.2rem; }
    .votingsystem .voting-content-holder .search-form {
      margin-bottom: 32px; }
      .votingsystem .voting-content-holder .search-form label {
        font-size: 12px;
        font-weight: 400;
        line-height: 22px;
        text-transform: uppercase;
        margin-bottom: 5px;
        display: inline-block; }
      .votingsystem .voting-content-holder .search-form .input-holder {
        position: relative; }
        .votingsystem .voting-content-holder .search-form .input-holder:after {
          /* use !important to prevent issues with browser extensions that change fonts */
          font-family: 'icomoon' !important;
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          display: inline-block;
          vertical-align: middle;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          content: '\e917';
          position: absolute;
          right: 0;
          font-size: 16px;
          color: inherit; }
        .votingsystem .voting-content-holder .search-form .input-holder > span {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          font-size: 17px;
          left: 16px;
          color: #000; }
        .votingsystem .voting-content-holder .search-form .input-holder input {
          height: 17px;
          border-bottom: 1px solid #000;
          width: 100%;
          max-width: 100%;
          color: #72777c;
          font-size: 14px;
          padding-right: 22px; }
      .votingsystem .voting-content-holder .search-form button, .votingsystem .voting-content-holder .search-form .search-form__loader {
        margin-top: 10px;
        text-align: center; }
    .votingsystem .voting-content-holder .results-holder > div:not(:last-child) {
      margin-bottom: 32px; }
    .votingsystem .voting-content-holder .results-holder > div .all-votes {
      margin-top: 16px; }
    .votingsystem .voting-content-holder .results-holder > div .results-title {
      border-bottom: 1px solid #11233e;
      margin-bottom: 16px; }
      .votingsystem .voting-content-holder .results-holder > div .results-title > span {
        position: relative;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 10px;
        font-size: 18px;
        color: #11233e; }
        .votingsystem .voting-content-holder .results-holder > div .results-title > span:before {
          content: '';
          width: 100%;
          height: 4px;
          position: absolute;
          left: 0;
          bottom: -11px;
          background: #11233e; }
    .votingsystem .voting-content-holder .results-holder > div .results-list {
      margin: 0; }
      .votingsystem .voting-content-holder .results-holder > div .results-list__item {
        position: relative;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        border: 1px solid #dde1e6;
        -webkit-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -o-transition: all 150ms ease-in-out;
        -ms-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in-out;
        background-image: none;
        padding: 0; }
        .votingsystem .voting-content-holder .results-holder > div .results-list__item:before {
          display: none; }
        .votingsystem .voting-content-holder .results-holder > div .results-list__item:after {
          /* use !important to prevent issues with browser extensions that change fonts */
          font-family: 'icomoon' !important;
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          display: inline-block;
          vertical-align: middle;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          content: '\e905';
          color: #4552CE;
          position: absolute;
          top: 50%;
          right: 2.2rem;
          transform: translate(0, -50%);
          font-size: 2.2rem;
          z-index: 0;
          font-size: 16px; }
        .votingsystem .voting-content-holder .results-holder > div .results-list__item:not(:last-child) {
          margin-bottom: 8px; }
        .votingsystem .voting-content-holder .results-holder > div .results-list__item:hover, .votingsystem .voting-content-holder .results-holder > div .results-list__item:focus {
          border: 1px solid #3d49b7;
          background-color: #e8e9f7; }
          .votingsystem .voting-content-holder .results-holder > div .results-list__item:hover:after, .votingsystem .voting-content-holder .results-holder > div .results-list__item:focus:after {
            transform: translate(3px, -50%); }
        .votingsystem .voting-content-holder .results-holder > div .results-list__item a {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column;
          padding: 16px 22px;
          position: relative;
          z-index: 1; }
          .votingsystem .voting-content-holder .results-holder > div .results-list__item a .title {
            color: #000000;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            padding-right: 100px; }
          .votingsystem .voting-content-holder .results-holder > div .results-list__item a:hover, .votingsystem .voting-content-holder .results-holder > div .results-list__item a:focus {
            color: inherit;
            text-decoration: none; }
  .votingsystem.question {
    /*		.gallery {
					@include flexbox();
					@include flex-wrap(wrap);
					margin: -8px;
					a {
						display: block;
						padding: 8px;
						width: 100%;
						@include min(576) {
							width: 50%;
						}
						@include min(768) {
							width: 33.33333%;
						}
						@include min(1024) {
							width: 25%;
						}
						img {
							display: block;
							@include border-radius(8px);
							width: 100%;
						}
					}
				}*/ }
    .votingsystem.question > div {
      width: 100%; }
    .votingsystem.question .addit-info {
      color: #000000;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 16px; }
    .votingsystem.question #voting_answers .title {
      color: #11233e;
      font-size: 18px;
      font-weight: 700;
      display: block;
      text-align: center;
      margin-bottom: 13px; }
    .votingsystem.question #voting_answers .answers-list {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      margin-bottom: 16px; }
      .votingsystem.question #voting_answers .answers-list > div {
        padding: 5px 4px; }
        .votingsystem.question #voting_answers .answers-list > div a {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          -ms-flex-align: center;
          align-items: center;
          height: 39px;
          border: 1px solid #3d49b7;
          color: #3d49b7;
          font-size: 12px;
          font-weight: 700;
          line-height: 16px;
          background: transparent; }
          .votingsystem.question #voting_answers .answers-list > div a.checked {
            background: linear-gradient(to right, #5AA4E8, #4552CE);
            border-color: #5AA4E8;
            color: #fff; }
    .votingsystem.question #voting_answers .submit {
      text-align: center;
      margin-bottom: 10px; }
      .votingsystem.question #voting_answers .submit > button {
        height: 48px;
        color: #000000;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        width: 400px;
        -webkit-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -o-transition: all 150ms ease-in-out;
        -ms-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in-out; }
        .votingsystem.question #voting_answers .submit > button:enabled {
          color: #fff; }
    .votingsystem.question #voting_answers .bottom {
      color: #000;
      font-size: 12px;
      font-weight: 400;
      text-align: center;
      margin-bottom: 52px; }
    .votingsystem.question #voting_answers .limit-title {
      margin-bottom: .9rem; }
    .votingsystem.question .description, .votingsystem.question .description p {
      color: #000000;
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      margin-bottom: 24px; }
    .votingsystem.question .profile {
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      min-height: 62px;
      border: 1px solid #3d49b7;
      background-color: #e6e7f7;
      margin-bottom: 32px; }
      .votingsystem.question .profile > span {
        margin: 5px 0; }
      .votingsystem.question .profile > span.holder {
        color: #000000;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        display: inline-block;
        padding: 0 37px; }
      .votingsystem.question .profile .log-in {
        font-size: 10px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        height: 40px;
        border-radius: 20px;
        padding: 0 15px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px; }
        .votingsystem.question .profile .log-in .icon {
          font-size: 16px;
          margin-right: 10px; }
      .votingsystem.question .profile.success {
        background-color: #eaf5f0;
        border: 1px solid #319e70;
        padding: 12px; }
        @media only screen and (min-width: 1024px) {
          .votingsystem.question .profile.success {
            padding: 0; } }
        .votingsystem.question .profile.success .voted {
          color: #000000;
          font-size: 16px;
          font-weight: 700;
          line-height: 24px;
          padding: 0 32px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          -ms-flex-align: center;
          align-items: center; }
          .votingsystem.question .profile.success .voted > span {
            font-size: 32px;
            color: #319e70;
            margin-right: 12px; }
        .votingsystem.question .profile.success .answer-wrap {
          padding: 0;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          -ms-flex-align: center;
          align-items: center; }
          .votingsystem.question .profile.success .answer-wrap .answer {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            -moz-align-items: center;
            -ms-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-justify-content: center;
            -moz-justify-content: center;
            -ms-justify-content: center;
            justify-content: center;
            -ms-flex-pack: center;
            border-radius: 4px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            -ms-border-radius: 4px;
            -o-border-radius: 4px;
            padding: 0 16px;
            margin: 4px 8px;
            height: 38px;
            border: 1px solid #3d49b7;
            background-color: #f5f8fb;
            text-transform: uppercase;
            color: #3d49b7;
            font-size: 12px;
            font-weight: 700; }
    .votingsystem.question .results-progress-title {
      color: #000;
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 16px 0; }
    .votingsystem.question .results-progress {
      margin: 0; }
      .votingsystem.question .results-progress > li {
        padding: 0;
        background-image: none;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 24px;
        color: #000000;
        font-size: 13px;
        font-weight: 400; }
        .votingsystem.question .results-progress > li:before {
          display: none; }
        .votingsystem.question .results-progress > li .title {
          padding-bottom: 10px; }
        .votingsystem.question .results-progress > li .progress-wrap {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex; }
        .votingsystem.question .results-progress > li .progress {
          width: 385px;
          height: 19px;
          border-radius: 4px;
          -webkit-border-radius: 4px;
          -moz-border-radius: 4px;
          -ms-border-radius: 4px;
          -o-border-radius: 4px;
          background-color: #c9d0df;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          -moz-align-items: center;
          -ms-align-items: center;
          -ms-flex-align: center;
          align-items: center; }
          .votingsystem.question .results-progress > li .progress > span {
            display: block;
            height: 100%;
            background-image: linear-gradient(93deg, #5aa4e8 0%, #4552ce 100%);
            border-radius: 4px; }
        .votingsystem.question .results-progress > li .total {
          min-width: 40px;
          padding-left: 16px;
          font-size: 16px;
          font-weight: 600; }
    .votingsystem.question .total-votes {
      width: 100%;
      margin: 5px 0 32px 0;
      color: #000000;
      font-size: 13px;
      font-weight: 400; }
  .votingsystem .notice {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 18px; }
    .votingsystem .notice .vote-until {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      color: #000;
      font-size: 12px;
      font-weight: 400;
      padding-right: 31px; }
      .votingsystem .notice .vote-until .icon {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        margin-right: 6px;
        width: 22px;
        height: 22px;
        border-radius: 4px;
        background-color: #ffeaec;
        font-size: 14px;
        color: #963449; }
    .votingsystem .notice .results-badge {
      height: 22px;
      border-radius: 11px;
      background-color: #38baee;
      color: #11233e;
      font-size: 10px;
      font-weight: 600;
      line-height: 16px;
      text-transform: uppercase;
      padding: 0 8px;
      margin-right: 10px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center; }
    .votingsystem .notice .vote-info {
      font-size: 10px;
      font-weight: 600;
      line-height: 16px;
      text-transform: uppercase; }
      .votingsystem .notice .vote-info:before {
        display: inline-block;
        content: '';
        width: 6px;
        height: 6px;
        margin-right: 8px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%; }
      .votingsystem .notice .vote-info--enabled {
        color: #319e70; }
        .votingsystem .notice .vote-info--enabled:before {
          background-color: #319e70; }
      .votingsystem .notice .vote-info--disabled {
        color: #9e3131; }
        .votingsystem .notice .vote-info--disabled:before {
          background-color: #9e3131; }
      .votingsystem .notice .vote-info--finished {
        color: #575757; }
        .votingsystem .notice .vote-info--finished:before {
          background-color: #575757; }
  @media only screen and (max-width: 750px) {
    .votingsystem {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      .votingsystem .categories-holder {
        max-width: 100%;
        padding: 10px 0; }
        .votingsystem .categories-holder ul, .votingsystem .categories-holder .title {
          max-width: 100%; }
        .votingsystem .categories-holder .title {
          padding: 15px; } }
  @media only screen and (max-width: 500px) {
    .votingsystem .voting-content-holder {
      padding: 25px 15px; } }
  .votingsystem.min-height-auto {
    min-height: auto; }

.voting-page .header_container .top_block .header-login {
  display: table-cell; }

.voting-page .right_menu_container {
  display: none; }

.voting-page .index_container {
  padding: 0;
  max-width: 100%; }
  .voting-page .index_container .main_title {
    display: none; }

.voting-question .header_container .top_block .header-login {
  display: table-cell; }

.voting-question .right_menu_container {
  display: none; }

.voting-question .main_title {
  margin: 45px 0 32px 0;
  color: #000000;
  font-family: "LatoRegular", sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 50px;
  text-align: left;
  padding-bottom: 16px;
  border-bottom: 1px solid #000; }

/*@import "modules/accreditation";
    @import "modules/blocks";
    @import "modules/catalog";
    @import "modules/legislation";
    @import "modules/news";
    @import "modules/plain";
    @import "modules/postform";
    @import "modules/postform_widget";
    @import "modules/promoblock";
    @import "modules/quiz";
    @import "modules/quotes";
    @import "modules/reportbug";
    @import "modules/subscription";
    @import "modules/topicslist";
    @import "modules/youtubegallery";
@import "modules/eventscalendar";*/
.input_group_parent {
  display: block;
  position: relative;
  margin: 0 0 12px 0;
  padding-left: 21px;
  cursor: pointer; }
  .input_group_parent.disabled {
    cursor: not-allowed; }
  .input_group_parent input {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .input_group_parent .checkbox_design, .input_group_parent .radio_design {
    position: absolute;
    top: 4px;
    left: 1px;
    width: 13px;
    height: 13px;
    background-color: #fff;
    border-radius: 2px;
    border: 1px solid #5D9FEA; }
    .input_group_parent .checkbox_design:after, .input_group_parent .radio_design:after {
      content: "";
      position: absolute;
      top: 2px;
      left: 2px;
      width: 7px;
      height: 7px;
      background-color: #5D9FEA;
      border-radius: 2px;
      opacity: 0;
      -webkit-transition: all 150ms ease-in-out;
      -moz-transition: all 150ms ease-in-out;
      -o-transition: all 150ms ease-in-out;
      -ms-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
  .input_group_parent .radio_design {
    top: 4px;
    border-radius: 50%; }
    .input_group_parent .radio_design:after {
      border-radius: 50%;
      width: 7px;
      height: 7px;
      top: 2px;
      left: 2px; }
  .input_group_parent input[disabled] + .checkbox_design:after, .input_group_parent input[disabled] + .radio_design:after {
    background-color: #67728B; }
  .input_group_parent input:checked + .checkbox_design:after, .input_group_parent input:checked + .radio_design:after {
    opacity: 1; }

.scrollable {
  overflow-x: auto;
  margin-bottom: 20px; }
  .scrollable:last-child {
    margin-bottom: 0; }
  .scrollable table {
    margin: 0; }

.scrollable.has-scroll {
  position: relative;
  overflow: hidden;
  /* Clips the shadow created with the pseudo-element in the next rule. Not necessary for the actual scrolling. */ }

.scrollable.has-scroll:after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 50px;
  height: 100%;
  border-radius: 10px 0 0 10px / 50% 0 0 50%;
  -webkit-box-shadow: -10px 0px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -10px 0px 20px 0px rgba(0, 0, 0, 0.25);
  box-shadow: -10px 0px 20px 0px rgba(0, 0, 0, 0.25);
  content: ''; }

/* This is the element whose content will be scrolled if necessary */
.scrollable.has-scroll > div {
  overflow-x: auto; }

.scrollable > div::-webkit-scrollbar {
  height: 12px; }

.scrollable > div::-webkit-scrollbar-track {
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.15) inset;
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.15) inset;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15) inset;
  background: #f0f0f0; }

.scrollable > div::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #ccc; }

@font-face {
  font-family: 'LatoRegular';
  src: url("../fonts/lato/Lato-Regular.eot");
  src: url("../fonts/lato/Lato-Regular.woff2") format("woff2"), url("../fonts/lato/Lato-Regular.ttf") format("truetype"), url("../fonts/lato/Lato-Regular.woff") format("woff"); }

@font-face {
  font-family: 'LatoBold';
  src: url("../fonts/lato/Lato-Bold.eot");
  src: url("../fonts/lato/Lato-Bold.woff2") format("woff2"), url("../fonts/lato/Lato-Bold.ttf") format("truetype"), url("../fonts/lato/Lato-Bold.woff") format("woff"); }

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

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-success:before {
  content: "\e92e"; }

.icon-info-tr:before {
  content: "\e92d"; }

.icon-arrow-right:before {
  content: "\e905"; }

.icon-bicycle:before {
  content: "\e906"; }

.icon-briefcase:before {
  content: "\e907"; }

.icon-calendar:before {
  content: "\e908"; }

.icon-chevron-down-wide:before {
  content: "\e909"; }

.icon-chevron-down:before {
  content: "\e90a"; }

.icon-chevron-up:before {
  content: "\e90b"; }

.icon-clock:before {
  content: "\e90c"; }

.icon-close:before {
  content: "\e90e"; }

.icon-info:before {
  content: "\e90f"; }

.icon-menu-budget:before {
  content: "\e910"; }

.icon-menu-culture:before {
  content: "\e911"; }

.icon-menu-gates:before {
  content: "\e912"; }

.icon-menu-social:before {
  content: "\e913"; }

.icon-menu-sports:before {
  content: "\e914"; }

.icon-menu-travel:before {
  content: "\e915"; }

.icon-persons:before {
  content: "\e916"; }

.icon-search:before {
  content: "\e917"; }

.icon-soc-f:before {
  content: "\e918"; }

.icon-ew4-arrow:before {
  content: "\e900"; }

.icon-ew4-chevron:before {
  content: "\e901"; }

.icon-ew4-close:before {
  content: "\e902"; }

.icon-ew4-refresh:before {
  content: "\e903"; }

.icon-person2:before {
  content: "\e904"; }

.icon-tooltip:before {
  content: "\e90d"; }

.icon-sitemap:before {
  content: "\e919"; }

.icon-plus:before {
  content: "\e91a"; }

.icon-camera:before {
  content: "\e91b"; }

.icon-pin:before {
  content: "\e91c"; }

.icon-video-camera:before {
  content: "\e91d"; }

.icon-cab:before {
  content: "\e91e"; }

.icon-email:before {
  content: "\e91f"; }

.icon-phone:before {
  content: "\e920"; }

.icon-document-1:before {
  content: "\e921"; }

.icon-document-2:before {
  content: "\e922"; }

.icon-candidates:before {
  content: "\e923"; }

.icon-info-document:before {
  content: "\e924"; }

.icon-map:before {
  content: "\e925"; }

.icon-results:before {
  content: "\e926"; }

.icon-user-logout:before {
  content: "\e927"; }

.icon-user-profile:before {
  content: "\e928"; }

.icon-user-remind:before {
  content: "\e929"; }

.icon-elder-document:before {
  content: "\e92a"; }

.icon-report-bug:before {
  content: "\e92b"; }

.icon-arrow-right-long:before {
  content: "\e92c"; }

@media print {
  #ads, #printFriendly, header, nav, .footer, .submenu_cont, .search_cont, .print_button, .left, .inlinelink, .social_links, .related_thumbs_side, .one_widget, .langs {
    display: none !important; }
  body {
    background-image: none !important;
    background: #fff; }
  .bgwhite {
    padding: 0 !important; }
  #content {
    font-family: "Times New Roman", Times, serif;
    font-size: 12pt; }
  .content_right, .news_images_cont, .dynamic_cont {
    width: 100% !important;
    max-width: none !important;
    float: none !important; }
  .contact_group_title {
    padding: 0;
    margin: 0 0 10px 0; }
  .contact_photo {
    float: left;
    margin: 0px 10px 0 0; }
  img.news_image_with {
    margin: 0 18px 10px 0; }
  .fixed_header, .cookie_container, .header_top {
    display: none !important;
    visibility: hidden; } }

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