/*
Version: 3.5.4 Timestamp: Sun Aug 30 13:30:32 EDT 2015
*/
.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box;
  /* webkit */
  -moz-box-sizing: border-box;
  /* firefox */
  box-sizing: border-box;
  /* css3 */
}
.select2-container .select2-choice {
  display: block;
  height: 26px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #aaa;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}
html[dir="rtl"] .select2-container .select2-choice {
  padding: 0 8px 0 0;
}
.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #aaa;
  border-radius: 0 0 4px 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}
.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px;
}
.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: none;
  width: auto;
}
html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
  margin-left: 26px;
  margin-right: 0;
}
.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url('../img/select2.png') right top no-repeat;
  cursor: pointer;
  outline: 0;
}
.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block;
}
.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer;
}
.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}
.select2-drop-active {
  border: 1px solid #5897fb;
  border-top: none;
}
.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 1px solid #5897fb;
}
.select2-drop-auto-width {
  border-top: 1px solid #aaa;
  width: auto;
}
.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #aaa;
  border-radius: 0 4px 4px 0;
  background-clip: padding-box;
  background: #ccc;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
  background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}
html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
  left: 0;
  right: auto;
  border-left: none;
  border-right: 1px solid #aaa;
  border-radius: 4px 0 0 4px;
}
.select2-container .select2-choice .select2-arrow b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('../img/select2.png') no-repeat 0 1px;
}
html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
  background-position: 2px 1px;
}
.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding: 4px 4px 0 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap;
}
.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff url('../img/select2.png') no-repeat 100% -22px;
  background: url('../img/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url('../img/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../img/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../img/select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
html[dir="rtl"] .select2-search input {
  padding: 4px 5px 4px 20px;
  background: #fff url('../img/select2.png') no-repeat -37px -22px;
  background: url('../img/select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url('../img/select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../img/select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../img/select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
.select2-search input.select2-active {
  background: #fff url('../img/select2-spinner.gif') no-repeat 100%;
  background: url('../img/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url('../img/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../img/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../img/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.select2-dropdown-open .select2-choice {
  border-bottom-color: transparent;
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #5897fb;
  border-top-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}
.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
  border-right: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -16px 1px;
}
.select2-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* results */
.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html[dir="rtl"] .select2-results {
  padding: 0 4px 0 0;
  margin: 4px 0 4px 4px;
}
.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0;
}
.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
}
.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold;
}
.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.select2-results-dept-1 .select2-result-label {
  padding-left: 20px;
}
.select2-results-dept-2 .select2-result-label {
  padding-left: 40px;
}
.select2-results-dept-3 .select2-result-label {
  padding-left: 60px;
}
.select2-results-dept-4 .select2-result-label {
  padding-left: 80px;
}
.select2-results-dept-5 .select2-result-label {
  padding-left: 100px;
}
.select2-results-dept-6 .select2-result-label {
  padding-left: 110px;
}
.select2-results-dept-7 .select2-result-label {
  padding-left: 120px;
}
.select2-results .select2-highlighted {
  background: #3875d7;
  color: #fff;
}
.select2-results li em {
  background: #feffde;
  font-style: normal;
}
.select2-results .select2-highlighted em {
  background: transparent;
}
.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000;
}
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
  padding-left: 5px;
}
/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
.select2-results .select2-selected {
  display: none;
}
.select2-more-results.select2-active {
  background: #f4f4f4 url('../img/select2-spinner.gif') no-repeat 100%;
}
.select2-results .select2-ajax-error {
  background: rgba(255, 50, 50, 0.2);
}
.select2-more-results {
  background: #f4f4f4;
  display: list-item;
}
/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}
.select2-container.select2-container-disabled .select2-choice abbr {
  display: none;
}
/* multiselect */
.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0 5px 0 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}
html[dir="rtl"] .select2-container-multi .select2-choices {
  padding: 0 0 0 5px;
}
.select2-locked {
  padding: 3px 5px 3px 5px !important;
}
.select2-container-multi .select2-choices {
  min-height: 26px;
}
.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.select2-container-multi .select2-choices li {
  float: left;
  list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li {
  float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: sans-serif;
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent !important;
}
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url('../img/select2-spinner.gif') no-repeat 100% !important;
}
.select2-default {
  color: #999 !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4;
}
.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url('../img/select2.png') right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
  right: auto;
  left: 3px;
}
.select2-container-multi .select2-search-choice-close {
  left: 3px;
}
html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
  left: auto;
  right: 2px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px;
}
/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none;
}
/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline;
}
.select2-offscreen,
.select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}
.select2-display-none {
  display: none;
}
.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll;
}
/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice .select2-arrow b {
    background-image: url('../img/select2x2.png') !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important;
  }
  .select2-search input {
    background-position: 100% -21px !important;
  }
}

@charset "UTF-8";
/* HTML5 Reset */
@import "../../lib/select2/select2.css";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}
/* Responsive images and other embedded objects */
object {
  max-width: 100%;
  height: auto;
}
/* Other */
html {
  overflow-y: scroll;
}
body {
  overflow: hidden;
}
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
/* Table still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  font: 100%;
}
th {
  font-weight: bold;
  vertical-align: bottom;
}
td {
  font-weight: normal;
  vertical-align: top;
}
td img {
  vertical-align: top;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/* Inputs */
input,
select {
  vertical-align: middle;
}
input[type="radio"] {
  vertical-align: text-bottom;
}
input[type="checkbox"] {
  vertical-align: bottom;
  box-shadow: none!important;
  border: none!important;
}
button,
input,
select,
textarea {
  margin: 0;
}
button,
input[type=button] {
  width: auto;
  overflow: visible;
}
/* Text */
small {
  font-size: 85%;
}
strong {
  font-weight: bold;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
/* Monospaced elements */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line;
  word-wrap: break-word;
}
/* Hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}
/* Clearfix */
.clearfix:before,
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
/*


Grid


*/
.row {
  margin-left: -30px;
  /* gutter */
}
.col {
  border-left: 30px solid transparent;
  /* gutter */
  float: left;
  display: block;
  vertical-align: top;
  box-sizing: border-box;
}
@media screen and (min-width: 740px) {
  .lg-12 {
    width: 100%;
  }
  .lg-11 {
    width: 91.66666667%;
  }
  .lg-10 {
    width: 83.33333333%;
  }
  .lg-9 {
    width: 75%;
  }
  .lg-8 {
    width: 66.66666667%;
  }
  .lg-7 {
    width: 58.33333333%;
  }
  .lg-6 {
    width: 50%;
  }
  .lg-5 {
    width: 41.66666667%;
  }
  .lg-4 {
    width: 33.33333333%;
  }
  .lg-3 {
    width: 25%;
  }
  .lg-2 {
    width: 16.66666667%;
  }
  .lg-1 {
    width: 8.33333333%;
  }
}
@media screen and (max-width: 739px) {
  .col {
    margin-top: 30px;
  }
  .md-12 {
    width: 100%;
  }
  .md-11 {
    width: 91.66666667%;
  }
  .md-10 {
    width: 83.33333333%;
  }
  .md-9 {
    width: 75%;
  }
  .md-8 {
    width: 66.66666667%;
  }
  .md-7 {
    width: 58.33333333%;
  }
  .md-6 {
    width: 50%;
  }
  .md-5 {
    width: 41.66666667%;
  }
  .md-4 {
    width: 33.33333333%;
  }
  .md-3 {
    width: 25%;
  }
  .md-2 {
    width: 16.66666667%;
  }
  .md-1 {
    width: 8.33333333%;
  }
}
@media screen and (max-width: 499px) {
  .col {
    margin-top: 30px;
  }
  .sm-12 {
    width: 100%;
  }
  .sm-11 {
    width: 91.66666667%;
  }
  .sm-10 {
    width: 83.33333333%;
  }
  .sm-9 {
    width: 75%;
  }
  .sm-8 {
    width: 66.66666667%;
  }
  .sm-7 {
    width: 58.33333333%;
  }
  .sm-6 {
    width: 50%;
  }
  .sm-5 {
    width: 41.66666667%;
  }
  .sm-4 {
    width: 33.33333333%;
  }
  .sm-3 {
    width: 25%;
  }
  .sm-2 {
    width: 16.66666667%;
  }
  .sm-1 {
    width: 8.33333333%;
  }
}
@font-face {
  font-family: 'fontello';
  src: url('fonts/fontello.eot');
  src: url('fonts/fontello.eot#iefix') format('embedded-opentype'), url('fonts/fontello.woff') format('woff'), url('fonts/fontello.ttf') format('truetype'), url('fonts/fontello.svg#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?93189785#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  position: relative;
  top: -1px;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-star:before {
  content: '\e800';
}
/* '' */
.icon-check-empty:before {
  content: '\e801';
}
/* '' */
.icon-up-open:before {
  content: '\e802';
}
/* '' */
.icon-eye-off:before {
  content: '\e803';
}
/* '' */
.icon-eye:before {
  content: '\e804';
}
/* '' */
.icon-left-open:before {
  content: '\e805';
}
/* '' */
.icon-right-open:before {
  content: '\e808';
  font-size: 18px;
}
/* '' */
.icon-ok:before {
  content: '\e807';
}
/* '' */
.icon-angle-right:before {
  content: '\e808';
}
/* '' */
.icon-cancel:before {
  content: '✕';
  font-family: 'Inter';
  font-size: 12px;
  display: inline-block;
  border: 2px solid #424B5A;
  border-radius: 50%;
  padding: 4px;
  font-weight: 600;
  color: #424B5A;
  vertical-align: middle;
}
/* '' */
.icon-edit:before {
  content: '\e80a';
}
/* '' */
.icon-move:before {
  content: '\e80b';
}
/* '' */
.icon-paper-plane:before {
  content: '\e80c';
}
/* '' */
.icon-login:before {
  content: '\e80d';
}
/* '' */
.icon-plus:before {
  content: '\e80e';
}
/* '' */
.icon-search:before {
  content: '\e80f';
}
/* '' */
.icon-trash:before {
  content: '\e810';
}
/* '' */
.icon-floppy:before {
  content: '\e811';
}
/* '' */
.icon-print:before {
  content: '\e812';
}
/* '' */
.icon-doc-text:before {
  content: '\e813';
}
/* '' */
.icon-ok-squared:before {
  content: '\e814';
}
/* '' */
.icon-attach:before {
  content: '\e815';
}
/* '' */
.icon-menu:before {
  content: '\e816';
}
/* '' */
.icon-clock:before {
  content: '\e817';
}
/* '' */
.icon-down-dir:before {
  content: '\e818';
}
.icon-up-dir:before {
  content: '\e819';
}
.icon-sort:before {
  content: '\e820';
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/* Owl Theme */
.grabbing {
  cursor: move;
}
.owl-carousel {
  z-index: inherit;
}
/* PREV / NEXT */
.owl-theme .owl-controls .owl-buttons div,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  padding: 10px!important;
  font-size: 20px;
  position: absolute;
  top: 50%;
  margin-top: -21px;
  outline-color: transparent;
}
.owl-theme .owl-controls .owl-buttons div:hover {
  opacity: 1;
  font-size: 24px;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-prev {
  left: 0;
}
.owl-prev:hover {
  left: -2px;
}
.owl-next {
  right: 0;
}
.owl-next:hover {
  right: -3px;
}
/* Styling Pagination*/
.owl-pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  border-radius: 20px;
  background: #fff;
  opacity: 0.7;
}
.owl-page.active span {
  opacity: 1;
}
/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 30px;
}
/* preloading images */
.owl-item.loading {
  min-height: 150px;
}
/* Item */
.owl-carousel {
  background: #46c3f2;
  color: #fff;
}
.owl-carousel .item {
  padding: 40px 0;
  text-align: center;
}
.owl-carousel .item h1,
.owl-carousel .item p {
  max-width: 600px;
  display: block;
  margin: 10px auto;
  padding: 0 40px;
  text-align: center;
}
.owl-carousel .item p {
  margin-bottom: 0;
}
.owl-carousel .item div {
  text-align: center;
  margin-bottom: 20px;
}
.owl-carousel .item img {
  display: inline-block;
  width: 102px;
  height: 102px;
  margin: 0 10px;
  opacity: 0.5;
}
.owl-carousel img.active {
  opacity: 1;
}
.xdsoft_datetimepicker {
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506);
  background: #fff;
  border-bottom: 1px solid #bbb;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 8px;
  padding-left: 0;
  padding-top: 2px;
  position: absolute;
  z-index: 9999;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}
.xdsoft_datetimepicker.xdsoft_rtl {
  padding: 8px 0 8px 8px;
}
.xdsoft_datetimepicker iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 210px;
  background: transparent;
  border: none;
}
/*For IE8 or lower*/
.xdsoft_datetimepicker button {
  border: none !important;
}
.xdsoft_noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.xdsoft_noselect::selection {
  background: transparent;
}
.xdsoft_noselect::-moz-selection {
  background: transparent;
}
.xdsoft_datetimepicker.xdsoft_inline {
  display: inline-block;
  position: static;
  box-shadow: none;
}
.xdsoft_datetimepicker * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.xdsoft_datetimepicker .xdsoft_datepicker,
.xdsoft_datetimepicker .xdsoft_timepicker {
  display: none;
}
.xdsoft_datetimepicker .xdsoft_datepicker.active,
.xdsoft_datetimepicker .xdsoft_timepicker.active {
  display: block;
}
.xdsoft_datetimepicker .xdsoft_datepicker {
  width: 224px;
  float: left;
  margin-left: 8px;
}
.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0;
}
.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker {
  width: 256px;
}
.xdsoft_datetimepicker .xdsoft_timepicker {
  width: 58px;
  float: left;
  text-align: center;
  margin-left: 8px;
  margin-top: 0;
}
.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0;
}
.xdsoft_datetimepicker .xdsoft_datepicker.active + .xdsoft_timepicker {
  margin-top: 8px;
  margin-bottom: 3px;
}
.xdsoft_datetimepicker .xdsoft_monthpicker {
  position: relative;
  text-align: center;
}
.xdsoft_datetimepicker .xdsoft_label i,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC);
}
.xdsoft_datetimepicker .xdsoft_label i {
  opacity: 0.5;
  background-position: -92px -19px;
  display: inline-block;
  width: 9px;
  height: 20px;
  vertical-align: middle;
}
.xdsoft_datetimepicker .xdsoft_prev {
  float: left;
  background-position: -20px 0;
}
.xdsoft_datetimepicker .xdsoft_today_button {
  float: left;
  background-position: -70px 0;
  margin-left: 5px;
}
.xdsoft_datetimepicker .xdsoft_next {
  float: right;
  background-position: 0 0;
}
.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_today_button {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0 none;
  cursor: pointer;
  display: block;
  height: 30px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  outline: medium none;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
  min-width: 0;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
  float: none;
  background-position: -40px -15px;
  height: 15px;
  width: 30px;
  display: block;
  margin-left: 14px;
  margin-top: 7px;
}
.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev,
.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next {
  float: none;
  margin-left: 0;
  margin-right: 14px;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  background-position: -40px 0;
  margin-bottom: 7px;
  margin-top: 0;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  height: 151px;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: center;
  border-collapse: collapse;
  cursor: pointer;
  border-bottom-width: 0;
  height: 25px;
  line-height: 25px;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:first-child {
  border-top-width: 0;
}
.xdsoft_datetimepicker .xdsoft_today_button:hover,
.xdsoft_datetimepicker .xdsoft_next:hover,
.xdsoft_datetimepicker .xdsoft_prev:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.xdsoft_datetimepicker .xdsoft_label {
  display: inline;
  position: relative;
  z-index: 9999;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
  float: left;
  width: 182px;
  text-align: center;
  cursor: pointer;
}
.xdsoft_datetimepicker .xdsoft_label:hover > span {
  text-decoration: underline;
}
.xdsoft_datetimepicker .xdsoft_label:hover i {
  opacity: 1;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select {
  border: 1px solid #ccc;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 101;
  display: none;
  background: #fff;
  max-height: 160px;
  overflow-y: hidden;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect {
  right: -7px;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect {
  right: 2px;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #fff;
  background: #ff8000;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
  padding: 2px 10px 2px 5px;
  text-decoration: none !important;
}
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #33aaff;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700;
}
.xdsoft_datetimepicker .xdsoft_month {
  width: 100px;
  text-align: right;
}
.xdsoft_datetimepicker .xdsoft_calendar {
  clear: both;
}
.xdsoft_datetimepicker .xdsoft_year {
  width: 48px;
  margin-left: 5px;
}
.xdsoft_datetimepicker .xdsoft_calendar table {
  border-collapse: collapse;
  width: 100%;
}
.xdsoft_datetimepicker .xdsoft_calendar td > div {
  padding-right: 5px;
}
.xdsoft_datetimepicker .xdsoft_calendar th {
  height: 25px;
}
.xdsoft_datetimepicker .xdsoft_calendar td,
.xdsoft_datetimepicker .xdsoft_calendar th {
  width: 14.2857142%;
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: right;
  vertical-align: middle;
  padding: 0;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px;
}
.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,
.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th {
  width: 12.5%;
}
.xdsoft_datetimepicker .xdsoft_calendar th {
  background: #f1f1f1;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #33aaff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #33aaff;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,
.xdsoft_datetimepicker .xdsoft_time_box > div > div.xdsoft_disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  cursor: default;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled:hover {
  background: #33aaff !important;
  box-shadow: #178fe5 0 1px 3px 0 inset !important;
  color: #fff !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_disabled:hover {
  color: inherit	!important;
  background: inherit !important;
  box-shadow: inherit !important;
}
.xdsoft_datetimepicker .xdsoft_calendar th {
  font-weight: 700;
  text-align: center;
  color: #999;
  cursor: default;
}
.xdsoft_datetimepicker .xdsoft_copyright {
  color: #ccc !important;
  font-size: 10px;
  clear: both;
  float: none;
  margin-left: 8px;
}
.xdsoft_datetimepicker .xdsoft_copyright a {
  color: #eee !important;
}
.xdsoft_datetimepicker .xdsoft_copyright a:hover {
  color: #aaa !important;
}
.xdsoft_time_box {
  position: relative;
  border: 1px solid #ccc;
}
.xdsoft_scrollbar > .xdsoft_scroller {
  background: #ccc !important;
  height: 20px;
  border-radius: 3px;
}
.xdsoft_scrollbar {
  position: absolute;
  width: 7px;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}
.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar {
  left: 0;
  right: auto;
}
.xdsoft_scroller_box {
  position: relative;
}
.xdsoft_datetimepicker.xdsoft_dark {
  box-shadow: 0 5px 15px -5px rgba(255, 255, 255, 0.506);
  background: #000;
  border-bottom: 1px solid #444;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  color: #ccc;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box {
  border-bottom: 1px solid #222;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #0a0a0a;
  border-top: 1px solid #222;
  color: #999;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label {
  background-color: #000;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select {
  border: 1px solid #333;
  background: #000;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #000;
  background: #007fff;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #cc5500;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==);
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0a0a0a;
  border: 1px solid #222;
  color: #999;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0e0e0e;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today {
  color: #cc5500;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #cc5500;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000 !important;
  background: #007fff !important;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  color: #666;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright {
  color: #333 !important;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a {
  color: #111 !important;
}
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover {
  color: #555 !important;
}
.xdsoft_dark .xdsoft_time_box {
  border: 1px solid #333;
}
.xdsoft_dark .xdsoft_scrollbar > .xdsoft_scroller {
  background: #333 !important;
}
.xdsoft_datetimepicker .xdsoft_save_selected {
  display: block;
  border: 1px solid #dddddd !important;
  margin-top: 5px;
  width: 100%;
  color: #454551;
  font-size: 13px;
}
.xdsoft_datetimepicker .blue-gradient-button {
  font-family: "museo-sans", "Book Antiqua", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #82878c;
  height: 28px;
  position: relative;
  padding: 4px 17px 4px 33px;
  border: 1px solid #d7d8da;
  background: -moz-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(73%, #f4f8fa));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fff 0%, #f4f8fa 73%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#f4f8fa', GradientType=0);
  /* IE6-9 */
}
.xdsoft_datetimepicker .blue-gradient-button:hover,
.xdsoft_datetimepicker .blue-gradient-button:focus,
.xdsoft_datetimepicker .blue-gradient-button:hover span,
.xdsoft_datetimepicker .blue-gradient-button:focus span {
  color: #454551;
  background: -moz-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4f8fa), color-stop(73%, #FFF));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f4f8fa 0%, #FFF 73%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f8fa', endColorstr='#FFF', GradientType=0);
  /* IE6-9 */
}
:root {
  --dt-row-selected: 13, 110, 253;
  --dt-row-selected-text: 255, 255, 255;
  --dt-row-selected-link: 9, 10, 11;
  --dt-row-stripe: 0, 0, 0;
  --dt-row-hover: 0, 0, 0;
  --dt-column-ordering: 0, 0, 0;
  --dt-html-background: white;
}
:root.dark {
  --dt-html-background: #212529;
}
table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}
table.dataTable td.dt-control:before {
  display: inline-block;
  box-sizing: border-box;
  content: "";
  border-top: 5px solid transparent;
  border-left: 10px solid rgba(0, 0, 0, 0.5);
  border-bottom: 5px solid transparent;
  border-right: 0px solid transparent;
}
table.dataTable tr.dt-hasChild td.dt-control:before {
  border-top: 10px solid rgba(0, 0, 0, 0.5);
  border-left: 5px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 5px solid transparent;
}
html.dark table.dataTable td.dt-control:before,
:root[data-bs-theme=dark] table.dataTable td.dt-control:before,
:root[data-theme=dark] table.dataTable td.dt-control:before {
  border-left-color: rgba(255, 255, 255, 0.5);
}
html.dark table.dataTable tr.dt-hasChild td.dt-control:before,
:root[data-bs-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before,
:root[data-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before {
  border-top-color: rgba(255, 255, 255, 0.5);
  border-left-color: transparent;
}
div.dt-scroll {
  width: 100%;
}
div.dt-scroll-body thead tr,
div.dt-scroll-body tfoot tr {
  height: 0;
}
div.dt-scroll-body thead tr th,
div.dt-scroll-body thead tr td,
div.dt-scroll-body tfoot tr th,
div.dt-scroll-body tfoot tr td {
  height: 0 !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  border-top-width: 0px !important;
  border-bottom-width: 0px !important;
}
div.dt-scroll-body thead tr th div.dt-scroll-sizing,
div.dt-scroll-body thead tr td div.dt-scroll-sizing,
div.dt-scroll-body tfoot tr th div.dt-scroll-sizing,
div.dt-scroll-body tfoot tr td div.dt-scroll-sizing {
  height: 0 !important;
  overflow: hidden !important;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
  position: absolute;
  display: block;
  bottom: 50%;
  content: "▲";
  content: "▲" / "";
}
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  position: absolute;
  display: block;
  top: 50%;
  content: "▼";
  content: "▼" / "";
}
table.dataTable thead > tr > th.dt-orderable-asc,
table.dataTable thead > tr > th.dt-orderable-desc,
table.dataTable thead > tr > th.dt-ordering-asc,
table.dataTable thead > tr > th.dt-ordering-desc,
table.dataTable thead > tr > td.dt-orderable-asc,
table.dataTable thead > tr > td.dt-orderable-desc,
table.dataTable thead > tr > td.dt-ordering-asc,
table.dataTable thead > tr > td.dt-ordering-desc {
  position: relative;
  padding-right: 20px;
}
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order,
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order,
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 12px;
}
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  left: 0;
  opacity: 0.125;
  line-height: 9px;
  font-size: 0.8em;
}
table.dataTable thead > tr > th.dt-orderable-asc,
table.dataTable thead > tr > th.dt-orderable-desc,
table.dataTable thead > tr > td.dt-orderable-asc,
table.dataTable thead > tr > td.dt-orderable-desc {
  cursor: pointer;
}
table.dataTable thead > tr > th.dt-orderable-asc:hover,
table.dataTable thead > tr > th.dt-orderable-desc:hover,
table.dataTable thead > tr > td.dt-orderable-asc:hover,
table.dataTable thead > tr > td.dt-orderable-desc:hover {
  /*outline: 2px solid rgba(0, 0, 0, 0.05);*/
  outline-offset: -2px;
}
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  opacity: 0.6;
}
table.dataTable thead > tr > th.sorting_desc_disabled span.dt-column-order:after,
table.dataTable thead > tr > th.sorting_asc_disabled span.dt-column-order:before,
table.dataTable thead > tr > td.sorting_desc_disabled span.dt-column-order:after,
table.dataTable thead > tr > td.sorting_asc_disabled span.dt-column-order:before {
  display: none;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}
div.dt-scroll-body > table.dataTable > thead > tr > th,
div.dt-scroll-body > table.dataTable > thead > tr > td {
  overflow: hidden;
}
:root.dark table.dataTable thead > tr > th.dt-orderable-asc:hover,
:root.dark table.dataTable thead > tr > th.dt-orderable-desc:hover,
:root.dark table.dataTable thead > tr > td.dt-orderable-asc:hover,
:root.dark table.dataTable thead > tr > td.dt-orderable-desc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-asc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-desc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-asc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: 2px solid rgba(255, 255, 255, 0.05);
}
div.dt-processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -22px;
  text-align: center;
  padding: 2px;
  z-index: 10;
}
div.dt-processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}
div.dt-processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #0d6efd;
  background: rgb(var(--dt-row-selected));
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
div.dt-processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}
div.dt-processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dt-processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dt-processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}
@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
table.dataTable.nowrap th,
table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable th,
table.dataTable td {
  box-sizing: border-box;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center {
  text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}
table.dataTable th.dt-empty,
table.dataTable td.dt-empty {
  text-align: center;
  vertical-align: top;
}
table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
  text-align: right;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: left;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}
/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  border-spacing: 0;
  /*
   * Header and footer styles
   */
  /*
   * Body styles
   */
}
table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}
table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  padding: 10px;
  border-bottom: 1px solid #F6F6F6;
}
table.dataTable > thead > tr > th:active,
table.dataTable > thead > tr > td:active {
  outline: none;
}
table.dataTable > tfoot > tr > th,
table.dataTable > tfoot > tr > td {
  border-top: 1px solid #CCC;
  padding: 10px 10px 6px 10px;
}
table.dataTable > tbody > tr {
  background-color: transparent;
}
table.dataTable > tbody > tr:first-child > * {
  border-top: none;
}
table.dataTable > tbody > tr:last-child > * {
  border-bottom: none;
}
table.dataTable > tbody > tr.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
  color: #ffffff;
  color: rgb(var(--dt-row-selected-text));
}
table.dataTable > tbody > tr.selected a {
  color: #090a0b;
  color: rgb(var(--dt-row-selected-link));
}
table.dataTable > tbody > tr > th,
table.dataTable > tbody > tr > td {
  padding: 4px 0;
  line-height: 1.5;
}
table.dataTable.row-border > tbody > tr > *,
table.dataTable.display > tbody > tr > * {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.row-border > tbody > tr:first-child > *,
table.dataTable.display > tbody > tr:first-child > * {
  border-top: none;
}
table.dataTable.row-border > tbody > tr.selected + tr.selected > td,
table.dataTable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: rgba(13, 110, 253, 0.65);
  border-top-color: rgba(var(--dt-row-selected), 0.65);
}
table.dataTable.cell-border > tbody > tr > * {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.cell-border > tbody > tr > *:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.cell-border > tbody > tr:first-child > * {
  border-top: 1px solid #CCC;
}
table.dataTable.stripe > tbody > tr:nth-child(odd) > *,
table.dataTable.display > tbody > tr:nth-child(odd) > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
}
table.dataTable.stripe > tbody > tr:nth-child(odd).selected > *,
table.dataTable.display > tbody > tr:nth-child(odd).selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.923);
}
table.dataTable.hover > tbody > tr:hover > *,
table.dataTable.display > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.035);
}
table.dataTable.hover > tbody > tr.selected:hover > *,
table.dataTable.display > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px #0d6efd !important;
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 1) !important;
}
table.dataTable.order-column > tbody tr > .sorting_1,
table.dataTable.order-column > tbody tr > .sorting_2,
table.dataTable.order-column > tbody tr > .sorting_3,
table.dataTable.display > tbody tr > .sorting_1,
table.dataTable.display > tbody tr > .sorting_2,
table.dataTable.display > tbody tr > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
}
table.dataTable.order-column > tbody tr.selected > .sorting_1,
table.dataTable.order-column > tbody tr.selected > .sorting_2,
table.dataTable.order-column > tbody tr.selected > .sorting_3,
table.dataTable.display > tbody tr.selected > .sorting_1,
table.dataTable.display > tbody tr.selected > .sorting_2,
table.dataTable.display > tbody tr.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}
table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054);
}
table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_2,
table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.047);
}
table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_3,
table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.039);
}
table.dataTable.display > tbody > tr:nth-child(odd).selected > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr:nth-child(odd).selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.954);
}
table.dataTable.display > tbody > tr:nth-child(odd).selected > .sorting_2,
table.dataTable.order-column.stripe > tbody > tr:nth-child(odd).selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.947);
}
table.dataTable.display > tbody > tr:nth-child(odd).selected > .sorting_3,
table.dataTable.order-column.stripe > tbody > tr:nth-child(odd).selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.939);
}
table.dataTable.display > tbody > tr.even > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
}
table.dataTable.display > tbody > tr.even > .sorting_2,
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.011);
}
table.dataTable.display > tbody > tr.even > .sorting_3,
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.003);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_2,
table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.911);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_3,
table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.903);
}
table.dataTable.display tbody tr:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.082);
}
table.dataTable.display tbody tr:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.074);
}
table.dataTable.display tbody tr:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.062);
}
table.dataTable.display tbody tr:hover.selected > .sorting_1,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.982);
}
table.dataTable.display tbody tr:hover.selected > .sorting_2,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.974);
}
table.dataTable.display tbody tr:hover.selected > .sorting_3,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.962);
}
table.dataTable.compact thead th,
table.dataTable.compact thead td,
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td,
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px;
}
div.dt-container div.dt-layout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0.75em 0;
  margin-bottom: 0;
}
div.dt-container div.dt-layout-row div.dt-layout-cell {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
div.dt-container div.dt-layout-row div.dt-layout-cell.dt-layout-start {
  justify-content: flex-start;
  margin-right: auto;
}
div.dt-container div.dt-layout-row div.dt-layout-cell.dt-layout-end {
  justify-content: flex-end;
  margin-left: auto;
  flex-grow: 1;
}
div.dt-container div.dt-layout-row div.dt-layout-cell:empty {
  display: none;
}
@media screen and (max-width: 767px) {
  div.dt-container div.dt-layout-row:not(.dt-layout-table) {
    display: block;
  }
  div.dt-container div.dt-layout-row:not(.dt-layout-table) div.dt-layout-cell {
    display: block;
    text-align: center;
  }
  div.dt-container div.dt-layout-row:not(.dt-layout-table) div.dt-layout-cell > * {
    margin: 0.5em 0;
  }
  div.dt-container div.dt-layout-row:not(.dt-layout-table) div.dt-layout-cell.dt-layout-start {
    margin-right: 0;
  }
  div.dt-container div.dt-layout-row:not(.dt-layout-table) div.dt-layout-cell.dt-layout-end {
    margin-left: 0;
  }
}
div.dt-container div.dt-layout-start > *:not(:last-child) {
  margin-right: 1em;
}
div.dt-container div.dt-layout-end > *:not(:first-child) {
  margin-left: 1em;
}
div.dt-container div.dt-layout-full {
  width: 100%;
}
div.dt-container div.dt-layout-full > *:only-child {
  margin-left: auto;
  margin-right: auto;
}
div.dt-container div.dt-layout-table > div {
  display: block !important;
}
@media screen and (max-width: 767px) {
  div.dt-container div.dt-layout-start > *:not(:last-child) {
    margin-right: 0;
  }
  div.dt-container div.dt-layout-end > *:not(:first-child) {
    margin-left: 0;
  }
}
/*
 * Control feature layout
 */
div.dt-container {
  position: relative;
  clear: both;
}
div.dt-container .dt-search input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
  /*margin-left: 3px;*/
}
div.dt-container .dt-input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
}
div.dt-container select.dt-input {
  padding: 4px;
}
div.dt-container .dt-paging .dt-paging-button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.3em 0.2em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
}
div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
  color: inherit !important;
  border: 1px solid #CCC;
  background-color: rgba(0, 0, 0, 0.05);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.05)), color-stop(100%, rgba(0, 0, 0, 0.05)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  /* W3C */
}
div.dt-container .dt-paging .dt-paging-button.disabled,
div.dt-container .dt-paging .dt-paging-button.disabled:hover,
div.dt-container .dt-paging .dt-paging-button.disabled:active {
  cursor: default;
  color: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}
div.dt-container .dt-paging .dt-paging-button:hover {
  color: white !important;
  border: 1px solid #111;
  background-color: #111;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #585858 0%, #111 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #585858 0%, #111 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #585858 0%, #111 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #585858 0%, #111 100%);
  /* W3C */
}
div.dt-container .dt-paging .dt-paging-button:active {
  outline: none;
  background-color: #0c0c0c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  /* W3C */
  box-shadow: inset 0 0 3px #111;
}
div.dt-container .dt-paging .ellipsis {
  padding: 0 1em;
}
div.dt-container .dt-length,
div.dt-container .dt-search,
div.dt-container .dt-info,
div.dt-container .dt-processing,
div.dt-container .dt-paging {
  color: inherit;
}
div.dt-container .dataTables_scroll {
  clear: both;
}
div.dt-container .dataTables_scroll div.dt-scroll-body {
  -webkit-overflow-scrolling: touch;
}
div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > th,
div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > td,
div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > th,
div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > td {
  vertical-align: middle;
}
div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > th > div.dataTables_sizing,
div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > td > div.dataTables_sizing,
div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > th > div.dataTables_sizing,
div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
div.dt-container.dt-empty-footer tbody > tr:last-child > * {
  border-bottom: 1px solid #F6F6F6;
}
div.dt-container.dt-empty-footer .dt-scroll-body {
  border-bottom: 1px solid #F6F6F6;
}
div.dt-container.dt-empty-footer .dt-scroll-body tbody > tr:last-child > * {
  border-bottom: none;
}
html.dark {
  --dt-row-hover: 255, 255, 255;
  --dt-row-stripe: 255, 255, 255;
  --dt-column-ordering: 255, 255, 255;
}
html.dark table.dataTable > thead > tr > th,
html.dark table.dataTable > thead > tr > td {
  border-bottom: 1px solid #595b5e;
}
html.dark table.dataTable > thead > tr > th:active,
html.dark table.dataTable > thead > tr > td:active {
  outline: none;
}
html.dark table.dataTable > tfoot > tr > th,
html.dark table.dataTable > tfoot > tr > td {
  border-top: 1px solid #595b5e;
}
html.dark table.dataTable.row-border > tbody > tr > *,
html.dark table.dataTable.display > tbody > tr > * {
  border-top: 1px solid #404346;
}
html.dark table.dataTable.row-border > tbody > tr:first-child > *,
html.dark table.dataTable.display > tbody > tr:first-child > * {
  border-top: none;
}
html.dark table.dataTable.row-border > tbody > tr.selected + tr.selected > td,
html.dark table.dataTable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: rgba(13, 110, 253, 0.65);
  border-top-color: rgba(var(--dt-row-selected), 0.65);
}
html.dark table.dataTable.cell-border > tbody > tr > th,
html.dark table.dataTable.cell-border > tbody > tr > td {
  border-top: 1px solid #404346;
  border-right: 1px solid #404346;
}
html.dark table.dataTable.cell-border > tbody > tr > th:first-child,
html.dark table.dataTable.cell-border > tbody > tr > td:first-child {
  border-left: 1px solid #404346;
}
html.dark .dt-container.dt-empty-footer table.dataTable {
  border-bottom: 1px solid #595b5e;
}
html.dark .dt-container .dt-search input,
html.dark .dt-container .dt-length select {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--dt-html-background);
}
html.dark .dt-container .dt-paging .dt-paging-button.current,
html.dark .dt-container .dt-paging .dt-paging-button.current:hover {
  border: 1px solid #595b5e;
  background: rgba(255, 255, 255, 0.15);
}
html.dark .dt-container .dt-paging .dt-paging-button.disabled,
html.dark .dt-container .dt-paging .dt-paging-button.disabled:hover,
html.dark .dt-container .dt-paging .dt-paging-button.disabled:active {
  color: #666 !important;
}
html.dark .dt-container .dt-paging .dt-paging-button:hover {
  border: 1px solid #353535;
  background: #353535;
}
html.dark .dt-container .dt-paging .dt-paging-button:active {
  background: #3a3a3a;
}
/*
 * Overrides for RTL support
 */
*[dir=rtl] table.dataTable thead th,
*[dir=rtl] table.dataTable thead td,
*[dir=rtl] table.dataTable tfoot th,
*[dir=rtl] table.dataTable tfoot td {
  text-align: right;
}
*[dir=rtl] table.dataTable th.dt-type-numeric,
*[dir=rtl] table.dataTable th.dt-type-date,
*[dir=rtl] table.dataTable td.dt-type-numeric,
*[dir=rtl] table.dataTable td.dt-type-date {
  text-align: left;
}
*[dir=rtl] div.dt-container div.dt-layout-cell.dt-start {
  text-align: right;
}
*[dir=rtl] div.dt-container div.dt-layout-cell.dt-end {
  text-align: left;
}
*[dir=rtl] div.dt-container div.dt-search input {
  margin: 0 3px 0 0;
}
.unselectable,
body.moderator .sidebar h4 {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
div::-webkit-scrollbar,
form::-webkit-scrollbar {
  width: 6px;
}
div::-webkit-scrollbar-thumb,
form::-webkit-scrollbar-thumb {
  background-color: #BDBDBD;
  border-radius: 4px;
}
div::-webkit-scrollbar-track,
form::-webkit-scrollbar-track {
  background: #E0E0E0;
  border-radius: 4px;
}
.scroll-auto {
  overflow: auto;
  height: 100%;
}
.relative {
  position: relative;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-lowercase {
  text-transform: lowercase;
}
.flex {
  display: flex;
}
.flex-half {
  flex-basis: calc(50% - 22px);
}
.flex-full {
  flex-basis: 100%;
}
.flex-wrap {
  flex-wrap: wrap;
}
.section-line {
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 10px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.bold {
  font-weight: bold;
}
.pointer {
  cursor: pointer;
}
.block-title {
  display: block;
  font-size: 24px;
  padding-bottom: 20px;
  width: 100%;
  box-shadow: none;
  border-bottom: 1px solid #E0E0E0;
  margin: 35px 0;
}
.dark-border .select2-container .select2-choice {
  border: 1px solid #002a44 !important;
  background: #fff !important;
}
.dark-border .select2-container .select2-choice .select2-chosen {
  color: #002a44 !important;
}
.dark-border .select2-container .select2-choice .select2-arrow {
  color: #002a44;
}
.dark-border input {
  border: 1px solid #002a44 !important;
  color: #002a44;
}
.dark-border input::placeholder {
  color: #002a44;
}
.documentContent {
  padding: 0;
  position: relative;
}
.documentContent:focus {
  outline: none !important;
}
.documentContent.tablefixed table {
  table-layout: fixed;
  word-break: break-word;
}
.documentContent div,
.documentContent td,
.documentContent tr,
.documentContent table {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.documentContent div.selected,
.documentContent td.selected,
.documentContent tr.selected,
.documentContent table.selected {
  background-color: #f0f0f0;
}
.focus-text .documentContent div.selected,
.focus-text .documentContent td.selected,
.focus-text .documentContent tr.selected,
.focus-text .documentContent table.selected {
  background-color: #dff0dd;
}
.documentContent div {
  padding: 8px 12px;
}
.documentContent .cls-container,
.documentContent .cls-structure,
.documentContent .cls-tableCell,
.documentContent .cls-document,
.documentContent .toc_list {
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.documentContent .title {
  font-size: 130%;
}
.documentContent .heading {
  font-size: 115%;
}
.documentContent .title,
.documentContent .heading,
.documentContent .subheading {
  font-weight: bold;
  color: #666;
  text-align: center;
}
.documentContent .title.norender,
.documentContent .heading.norender,
.documentContent .subheading.norender {
  color: inherit;
  font-weight: normal;
}
.documentContent .description {
  color: #999;
}
.documentContent .note,
.documentContent .rcpi_notice {
  color: #999;
  border-top: 1px solid #999;
  font-style: italic;
}
.documentContent .signature {
  color: #999;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 16px;
}
.documentContent .signature .text {
  padding-top: 4px;
  padding-bottom: 0;
}
.documentContent .attach,
.documentContent .subattach {
  border-top: 1px solid #d6d6d6;
  min-height: 1px;
}
.documentContent .sideNote {
  padding-left: 40%;
}
.documentContent .sideNote .text {
  padding-top: 4px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.documentContent .sideNote .text:last-child {
  margin-bottom: 16px;
}
.documentContent .sideNoteGroup {
  display: flex;
  justify-content: space-between;
}
.documentContent .sideNoteGroup .sideNote {
  padding-left: inherit;
}
.documentContent .pre > div {
  /*font-family: Consolas, monospace;*/
  white-space: pre;
}
.documentContent .pre .heading,
.documentContent .pre .title {
  font-size: 100%;
}
.documentContent .pre .title,
.documentContent .pre .heading,
.documentContent .pre .subheading {
  text-align: left;
}
.documentContent table {
  width: 100%;
  margin: 0;
}
.documentContent table[data-borderless],
.documentContent table[data-borderless] > tbody > tr > td,
.documentContent table[data-borderless] > tr > td {
  border-color: transparent!important;
}
#editor .documentContent table[data-borderless],
#editor .documentContent table[data-borderless] > tbody > tr > td,
#editor .documentContent table[data-borderless] > tr > td {
  border: 1px dashed #DDD5D5;
}
.documentContent td {
  background-image: none;
  border: 1px solid #b0b0b0;
}
.documentContent td > div {
  width: 100%;
  height: 100%;
}
.documentContent td .image {
  width: auto;
  height: auto;
}
.documentContent .tableHeaderRow td {
  font-weight: bold;
}
.documentContent .version,
.documentContent .change,
.documentContent .change-source,
.documentContent .change-buffer {
  border-right: 10px solid transparent;
  padding-right: 4px;
}
.documentContent .change-source {
  border-right-color: #A6C8E0;
}
.documentContent .change-buffer {
  border-right-color: #FECC94;
}
.documentContent .change-source.change-buffer {
  border-right-color: #9CF68B;
}
.documentContent .change .change {
  border-right: 0;
  padding-right: inherit;
}
.documentContent .change-source .change-source,
.documentContent .change-buffer .change-source,
.documentContent .change-source .change-buffer,
.documentContent .change-buffer .change-buffer {
  border-right: 0;
  padding-right: inherit;
}
.documentContent td .version {
  position: relative;
  border-right: none;
  padding-right: 12px;
}
.documentContent td .version::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0;
  right: -13px;
}
.documentContent .excluded {
  color: #833434;
}
.documentContent .preamble-verb {
  font-weight: bold;
}
.documentContent .image {
  display: flex;
  flex-direction: column;
}
.documentContent .image[contenteditable] {
  display: block !important;
}
.documentContent .image[data-captionvalign="top-right"] {
  flex-direction: column-reverse;
}
.documentContent .image[data-captionvalign="top-right"] .image-caption {
  text-align: right;
}
.documentContent .image[data-captionvalign="top-left"] {
  flex-direction: column-reverse;
}
.documentContent .image[data-captionvalign="top-left"] .image-caption {
  text-align: left;
}
.documentContent .image[data-captionvalign="top-center"] {
  flex-direction: column-reverse;
}
.documentContent .image[data-captionvalign="top-center"] .image-caption {
  text-align: center;
}
.documentContent .image[data-captionvalign="bottom-left"] .image-caption {
  text-align: left;
}
.documentContent .image[data-captionvalign="bottom-right"] .image-caption {
  text-align: right;
}
.documentContent .image[data-captionvalign="bottom-center"] .image-caption {
  text-align: center;
}
.documentContent .image .image-container {
  padding: 0;
}
.documentContent .image .image-container img {
  max-width: 100%;
  -fs-fit-images-to-width: 100%;
}
.documentContent .image .image-caption {
  font-style: normal;
  font-size: 0.9em;
  padding: 0;
}
.documentContent .image.noflex {
  display: block;
}
.documentContent [data-padding="new"] {
  padding-left: 64%;
}
.documentContent [monospace="1"] {
  font-family: monospace !important;
}
.documentContent [data-align="left"] {
  text-align: left;
  text-indent: 0!important;
}
.documentContent [data-align="right"] {
  text-align: right;
}
.documentContent [data-align="center"] {
  text-align: center;
}
.documentContent [data-valign="top"] {
  vertical-align: top;
}
.documentContent [data-valign="middle"] {
  vertical-align: middle;
}
.documentContent [data-valign="bottom"] {
  vertical-align: bottom;
}
.documentContent [data-bordertop="nil"] {
  border-top: none;
}
.documentContent [data-borderbottom="nil"] {
  border-bottom: none;
}
.documentContent [data-borderleft="nil"] {
  border-left: none;
}
.documentContent [data-borderright="nil"] {
  border-right: none;
}
.documentContent .documentContent [data-borderTopRightToBottomLeft="nil"] {
  background-image: none;
}
.documentContent .documentContent [data-borderTopLeftToBottomRight="nil"] {
  background-image: none;
}
.documentContent .documentContent [data-borderTopRightToBottomLeft="auto"] {
  background-image: linear-gradient(to bottom right, transparent calc(50% - 1px), #000, transparent calc(50% + 1px));
}
.documentContent .documentContent [data-borderTopLeftToBottomRight="auto"] {
  background-image: linear-gradient(to bottom left, transparent calc(50% - 1px), #000, transparent calc(50% + 1px));
}
.documentContent .img_restangle {
  border: 1px solid black;
  display: inline-block;
  background-color: white;
}
.documentContent .toc .toc_label {
  display: none;
}
.documentContent .toc .toc_list {
  background-color: #FDFDFD;
  border: 1px solid #ece4e4;
}
.documentPreview {
  font-family: "Times New Roman", Times, serif;
  color: black;
  font-size: 14pt;
  line-height: normal;
  text-align: left;
  /*	.doc[wideTable="1"] {
		table {
			table-layout: fixed!important;
			word-break: break-word!important;
		}
	}*/
}
.documentPreview .title {
  margin-bottom: 1em;
  line-height: normal;
  font-weight: bold;
  font-size: 14pt;
}
.documentPreview .heading,
.documentPreview .subheading {
  margin-bottom: 1em;
  line-height: normal;
  font-weight: bold;
  font-size: 14pt;
  white-space: pre-wrap;
}
.documentPreview div {
  padding: 0.2em 0em;
}
.documentPreview .text,
.documentPreview .description,
.documentPreview .excluded,
.documentPreview .note,
.documentPreview .rcpi_notice {
  text-indent: 1.25cm;
  line-height: normal;
}
.documentPreview .text a,
.documentPreview .description a,
.documentPreview .excluded a,
.documentPreview .note a,
.documentPreview .rcpi_notice a {
  text-decoration: underline!important;
  color: #3c7191;
  cursor: pointer;
}
.documentPreview .pre .title,
.documentPreview .pre .heading,
.documentPreview .pre .subheading {
  font-size: 14pt;
}
.documentPreview .pre .text,
.documentPreview .pre .description,
.documentPreview .pre .excluded,
.documentPreview .pre .note,
.documentPreview .pre .rcpi_notice {
  text-indent: 0;
  text-align: inherit;
}
.documentPreview .pre .text a,
.documentPreview .pre .description a,
.documentPreview .pre .excluded a,
.documentPreview .pre .note a,
.documentPreview .pre .rcpi_notice a {
  text-decoration: underline!important;
  color: #3c7191;
  cursor: pointer;
}
.documentPreview .part .heading,
.documentPreview .section .heading,
.documentPreview .subsection .heading,
.documentPreview .chapter .heading,
.documentPreview .paragraph .heading,
.documentPreview .part > *:first-child,
.documentPreview .section > *:first-child,
.documentPreview .subsection > *:first-child,
.documentPreview .chapter > *:first-child,
.documentPreview .paragraph > *:first-child {
  margin-top: 2em;
  margin-bottom: 1em;
}
.documentPreview .article {
  /*.heading,.text:first-child пока сделаем так, чтобы любой первый элемент был с отступами*/
}
.documentPreview .article .heading,
.documentPreview .article > *:first-child {
  margin-top: 1em;
  margin-bottom: 1em;
}
.documentPreview .doc[altarticles="1"] .article .heading,
.documentPreview .doc[altarticles="1"] .article > *:first-child {
  margin-top: 0;
  margin-bottom: 0;
}
.documentPreview table[wideTable="1"] {
  table-layout: fixed!important;
  word-break: break-word !important;
}
.documentPreview .sideNote {
  font-size: 14pt;
  line-height: normal;
}
.documentPreview .sideNote .text {
  white-space: pre-line;
  text-indent: 0;
  margin-top: 0;
  padding-top: 0;
}
.documentPreview .blank {
  font-family: "Courier New", Courier, monospace;
}
.documentPreview .signature {
  font-weight: bold;
  color: black;
  line-height: normal;
}
.documentPreview .description,
.documentPreview .note,
.documentPreview .rcpi_notice,
.documentPreview .signature,
.documentPreview .title,
.documentPreview .heading,
.documentPreview .subheading {
  color: black;
}
.documentPreview table,
.documentPreview table td {
  border-color: black;
}
.documentPreview table .cls-tableCell {
  padding: 0;
  padding-right: 0.7em;
  padding-left: 0.7em;
}
.documentPreview table .cls-tableCell .text,
.documentPreview table .cls-tableCell .description,
.documentPreview table .cls-tableCell .excluded,
.documentPreview table .cls-tableCell .note,
.documentPreview table .cls-tableCell .rcpi_notice {
  text-indent: 0;
}
.documentPreview .attach,
.documentPreview .subattach {
  border-top: 0;
  page-break-before: always;
}
.documentPreview .note,
.documentPreview .rcpi_notice {
  border-top: 1px solid black;
  font-style: italic;
}
.documentPreview .excluded {
  color: black;
  font-style: italic;
}
.documentPreview .image {
  display: block;
}
.documentPreview .image .image-caption {
  font-size: 100%;
}
.documentPreview .sideNoteGroup {
  display: table;
  width: 100%;
}
.documentPreview .sideNoteGroup .sideNote {
  display: table-cell;
}
.documentPreview .sideNoteGroup .text {
  text-indent: 0;
}
.documentPreview .signature {
  display: table;
  width: 100%;
}
.documentPreview .signature > * {
  display: table-cell;
}
.documentPreview .signature .personName {
  text-align: right;
  white-space: nowrap;
}
.documentPreview .signature .signature-group .personName {
  text-align: inherit;
}
.documentPreview.publicate .excluded.empty {
  display: none;
}
.documentPreview .toc .toc_list {
  padding: 0.4em 1.2em;
}
.documentPreview .toc .text {
  text-indent: 0;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-l.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-ex-l.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-m.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-b.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}
/**
 * Basic Styling
 */
body {
  font: 400 14px/22px 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  color: #002A44;
  background: #fff;
}
body.moderator {
  @import "../../lib/select2/select2.css";
}
body.moderator .unselectable {
  /*	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;*/
}
body.moderator .glossy-light {
  background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
}
body.moderator .glossy-dark {
  /*
	.gradient-glossy(rgb(242,246,248), rgb(216,225,231), rgb(181,198,208), rgb(224,239,249));
	.gradient-glossy(rgb(254,204,177), rgb(241,116,50), rgb(234,85,7), rgb(251,149,94));
	.gradient-glossy(rgb(243,226,199), rgb(193,158,103), rgb(182,141,76), rgb(233,212,179));
	.gradient-glossy(rgb(255,196,137), rgb(255,167,61), rgb(255,124,0), rgb(255,180,119));
	.gradient-glossy(rgb(230,240,163), rgb(210,230,56), rgb(195,216,37), rgb(219,240,67));
	.gradient-glossy(rgb(157,213,58), rgb(161,213,79), rgb(128,194,23), rgb(124,188,10));
*/
  background: -moz-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -webkit-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -o-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -ms-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  text-shadow: 1px 1px 1px #ffffff;
}
body.moderator .table-hilight {
  background: -moz-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -webkit-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -o-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -ms-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  -webkit-box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
  -moz-box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
  box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
}
body.moderator .sprite {
  background-image: url(img/icons.png);
  background-repeat: no-repeat;
}
body.moderator html,
body.moderator body {
  height: 100%;
  margin: 0;
}
body.moderator body,
body.moderator input,
body.moderator select {
  font-family: Calibri, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.moderator body.tahoma,
body.moderator .tahoma input,
body.moderator .tahoma select {
  font-family: Tahoma, Calibri, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 89%;
}
body.moderator body {
  padding: 8px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body.moderator input:disabled,
body.moderator textarea:disabled {
  background-color: #f4f4f4;
  border: 1px solid #d6d6d6;
}
body.moderator #overlay.waiting {
  opacity: 0.01;
  cursor: progress;
}
body.moderator #wrapper {
  width: 980px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
body.moderator #wrapper.fullscreen {
  width: auto;
  margin: 0;
}
body.moderator #wrapper.fullscreen nav li {
  height: 20px;
}
body.moderator #wrapper.fullscreen2 {
  width: auto;
}
body.moderator #wrapper section {
  flex: 0 1 auto;
}
body.moderator #wrapper section.fullheight {
  flex-basis: 100%;
}
body.moderator #menu {
  border: 1px solid #b0b0b0;
  flex: 0 0 auto;
  background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
}
body.moderator #menu ul {
  margin: 0;
  padding: 0;
}
body.moderator #menu li {
  margin: 0;
  padding: 8px 12px;
  display: inline-block;
  cursor: pointer;
}
body.moderator #menu li.selected {
  /*
	.gradient-glossy(rgb(242,246,248), rgb(216,225,231), rgb(181,198,208), rgb(224,239,249));
	.gradient-glossy(rgb(254,204,177), rgb(241,116,50), rgb(234,85,7), rgb(251,149,94));
	.gradient-glossy(rgb(243,226,199), rgb(193,158,103), rgb(182,141,76), rgb(233,212,179));
	.gradient-glossy(rgb(255,196,137), rgb(255,167,61), rgb(255,124,0), rgb(255,180,119));
	.gradient-glossy(rgb(230,240,163), rgb(210,230,56), rgb(195,216,37), rgb(219,240,67));
	.gradient-glossy(rgb(157,213,58), rgb(161,213,79), rgb(128,194,23), rgb(124,188,10));
*/
  background: -moz-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -webkit-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -o-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -ms-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  text-shadow: 1px 1px 1px #ffffff;
  outline: 1px solid #b0b0b0;
  cursor: default;
}
body.moderator #menu a {
  margin: -8px -12px;
  padding: 8px 12px;
  text-decoration: none;
  color: black;
  white-space: nowrap;
}
body.moderator #menu .icon-fullscreen {
  float: right;
  margin: 7px 12px 0 0;
}
body.moderator #menu #ajaxIndicator,
body.moderator #menu #errorIndicator {
  float: right;
  background-repeat: no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  margin: 10px 12px 0 0;
  display: none;
}
body.moderator #menu #ajaxIndicator {
  background-image: url(img/ajax-loader.gif);
}
body.moderator #menu #errorIndicator {
  background-position: -154px -90px;
  cursor: pointer;
}
body.moderator #menu #langPanel {
  float: right;
  margin: 0 15px 0 2px;
}
body.moderator #menu #langPanel a {
  text-transform: uppercase;
}
body.moderator section {
  border: 1px solid #b0b0b0;
  margin: 8px 0 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 1px;
}
body.moderator section header {
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: -moz-linear-gradient(top, #ffffff 0%, #f0f0f0 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f0f0f0 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f0f0f0 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f0f0f0 100%);
  background: linear-gradient(top, #ffffff 0%, #f0f0f0 100%);
  padding: 8px 12px;
  border-bottom: 1px solid #d6d6d6;
  font-size: 90%;
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  align-items: baseline;
}
body.moderator section header h2 {
  margin: 0 0 -4px 0;
  padding: 0;
  font-size: 130%;
  color: #444;
  position: absolute;
  top: 8px;
}
body.moderator section header .formTitle {
  color: #b0b0b0;
  font-size: 112%;
  text-shadow: 1px 1px 0 white;
  text-align: right;
  white-space: normal;
  align-self: flex-end;
  flex: 1 0 200px;
  margin-left: 12px;
}
body.moderator section header:before {
  width: 32px;
  height: 32px;
  content: " ";
  display: block;
  float: left;
  margin: 4px 10px 0 1px;
}
body.moderator section main {
  padding: 8px 12px;
  flex: 1 1 auto;
  overflow-y: auto;
}
body.moderator section main h3 {
  margin: 8px 0;
  padding: 0;
  color: #444;
}
body.moderator section main h4 {
  margin: 0;
  padding: 4px 12px;
  color: #444;
}
body.moderator section main hr {
  margin: 8px 0;
  color: #d6d6d6;
  background-color: #d6d6d6;
  border: none;
  height: 1px;
  clear: both;
}
body.moderator section footer {
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  min-height: 37px;
  clear: both;
  border-top: 1px solid #d6d6d6;
  background: #fbfbfb;
  flex: 0 0 auto;
  display: flex;
  overflow: hidden;
}
body.moderator section footer .spacer {
  flex-basis: 100%;
}
body.moderator section footer a,
body.moderator section footer a:visited {
  font-weight: bold;
  text-decoration: none;
  color: #515151;
  line-height: 21px;
  white-space: nowrap;
  padding: 8px 11px;
  /*	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;*/
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  flex-shrink: 0;
}
body.moderator section footer a:before,
body.moderator section footer a:visited:before {
  margin-right: 5px !important;
  margin-top: 2px;
}
body.moderator section footer a:hover,
body.moderator section footer a:visited:hover,
body.moderator section footer a:active,
body.moderator section footer a:visited:active,
body.moderator section footer a.selected,
body.moderator section footer a:visited.selected {
  color: #444;
  border-color: #d6d6d6;
}
body.moderator section footer a:hover:first-child,
body.moderator section footer a:visited:hover:first-child,
body.moderator section footer a:active:first-child,
body.moderator section footer a:visited:active:first-child,
body.moderator section footer a.selected:first-child,
body.moderator section footer a:visited.selected:first-child {
  border-left-color: transparent;
}
body.moderator section footer a:hover:last-child,
body.moderator section footer a:visited:hover:last-child,
body.moderator section footer a:active:last-child,
body.moderator section footer a:visited:active:last-child,
body.moderator section footer a.selected:last-child,
body.moderator section footer a:visited.selected:last-child {
  border-right-color: transparent;
}
body.moderator section footer a:hover,
body.moderator section footer a:visited:hover,
body.moderator section footer a.selected:active,
body.moderator section footer a:visited.selected:active {
  background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
}
body.moderator section footer a:active,
body.moderator section footer a:visited:active,
body.moderator section footer a.selected,
body.moderator section footer a:visited.selected {
  /*
	.gradient-glossy(rgb(242,246,248), rgb(216,225,231), rgb(181,198,208), rgb(224,239,249));
	.gradient-glossy(rgb(254,204,177), rgb(241,116,50), rgb(234,85,7), rgb(251,149,94));
	.gradient-glossy(rgb(243,226,199), rgb(193,158,103), rgb(182,141,76), rgb(233,212,179));
	.gradient-glossy(rgb(255,196,137), rgb(255,167,61), rgb(255,124,0), rgb(255,180,119));
	.gradient-glossy(rgb(230,240,163), rgb(210,230,56), rgb(195,216,37), rgb(219,240,67));
	.gradient-glossy(rgb(157,213,58), rgb(161,213,79), rgb(128,194,23), rgb(124,188,10));
*/
  background: -moz-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -webkit-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -o-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -ms-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  text-shadow: 1px 1px 1px #ffffff;
  border-color: #b0b0b0;
}
body.moderator section footer a.disabled,
body.moderator section footer a:visited.disabled {
  opacity: 0.5;
}
body.moderator section footer a.disabled:active,
body.moderator section footer a:visited.disabled:active {
  background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
}
body.moderator section a,
body.moderator section a:visited {
  color: #888;
}
body.moderator section a:hover,
body.moderator section a:visited:hover {
  color: black;
}
body.moderator section.popup {
  display: none;
  position: fixed;
  top: 200px;
  left: 200px;
  z-index: 2;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
body.moderator section.popup h3 {
  margin: 0;
  padding: 0;
  font-size: 115%;
  color: #444;
}
body.moderator section.popup h3.icon:before {
  margin-right: 4px;
}
body.moderator section.popup h4 {
  margin: 0;
  color: #444;
}
body.moderator section.popup header {
  cursor: default;
  /*	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;*/
}
body.moderator section.popup header:before {
  display: none;
}
body.moderator #frm_clipboard textarea,
body.moderator #clipboardDialog textarea {
  width: 400px;
  height: 120px;
}
body.moderator .form-simple {
  position: relative;
}
body.moderator .form-simple p {
  display: flex;
  align-items: flex-start;
  min-height: 30px;
}
body.moderator .form-simple p > input,
body.moderator .form-simple p > select,
body.moderator .form-simple p > .select2-container,
body.moderator .form-simple p > a,
body.moderator .form-simple p > span {
  font-size: 100%;
  flex: 1 1 auto;
  align-self: center;
  min-width: 1px;
}
body.moderator .form-simple p > textarea {
  vertical-align: text-top;
  flex: 1 1 auto;
}
body.moderator .form-simple p > input[type=date],
body.moderator .form-simple p > select {
  min-width: 150px;
  text-align: left;
}
body.moderator .form-simple p > input[type=checkbox] {
  flex: 0 0 auto;
}
body.moderator .form-simple p .radio-group {
  text-align: center;
}
body.moderator .form-simple p .radio-group label,
body.moderator .form-simple p .radio-group input {
  flex: none;
  width: auto;
  display: inline;
}
body.moderator .form-simple p .icon-btn {
  margin: 0 0 0 5px;
  flex: 0 0 16px;
}
body.moderator .form-simple label {
  text-align: right;
  padding-right: 10px;
  flex: 0 0 150px;
  min-height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.moderator .form-simple label.checkbox {
  width: auto;
  padding-right: 12px;
}
body.moderator .form-simple label + label {
  padding-left: 0;
  display: inline;
  align-self: center;
  min-height: 0;
  text-align: left;
}
body.moderator .form-simple .select2-hierarchy .select2-mode-toggle {
  margin: 0 0 0 5px;
  flex: 0 0 16px;
}
body.moderator .table-selectable tbody td {
  cursor: pointer;
}
body.moderator .table-selectable tr.selected td,
body.moderator .table-editable tr.selected td {
  background: -moz-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -webkit-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -o-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -ms-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  -webkit-box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
  -moz-box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
  box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
}
body.moderator .table-editable td:last-child {
  text-align: center;
}
body.moderator .table-editable table,
body.moderator .table-editable tbody,
body.moderator .table-editable tr {
  height: 100%;
}
body.moderator td.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}
body.moderator table {
  border: 1px solid #b0b0b0;
  border-collapse: collapse;
  margin: 5px 0;
  width: 100%;
}
body.moderator th,
body.moderator td {
  padding: 5px 10px;
  border: solid #b0b0b0;
  border-width: 0 1px;
}
body.moderator th {
  background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  color: #444;
  border-bottom: 1px solid #b0b0b0;
}
body.moderator td {
  background: url(img/tablerow.gif) repeat-x 0 0;
}
body.moderator td input {
  border: none;
  margin: -5px -10px;
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  background: none;
  font-size: 100%;
  outline: none;
}
body.moderator td input[type="radio"] {
  margin: inherit;
  width: auto;
  height: auto;
}
body.moderator td input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: inherit;
}
body.moderator td.with-select2 {
  padding: 0;
  position: relative;
  background-clip: padding-box;
  height: 100%;
  vertical-align: top;
}
body.moderator td.with-select2 .validationMessage {
  right: 25px;
  left: auto;
}
body.moderator td .select2-container {
  width: 100%;
  height: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body.moderator td .select2-container .select2-choice {
  border: 0;
  border-radius: 0;
  background: transparent;
  height: 35px;
  min-height: 100%;
}
body.moderator td .select2-container .select2-choice abbr {
  top: 11px;
}
body.moderator td .select2-container .select2-choice .select2-chosen {
  line-height: 35px;
}
body.moderator td .select2-container .select2-choice .select2-arrow {
  border-radius: 0;
}
body.moderator td .select2-container .select2-choice .select2-arrow b {
  background-position: 0 4px;
}
body.moderator td .select2-container.select2-dropdown-open .select2-choice {
  border: 0;
  box-shadow: 0 0 0 1px #55b14c inset;
}
body.moderator td .select2-container.select2-container-disabled .select2-choice,
body.moderator td .select2-container.select2-container-disabled .select2-arrow {
  border: 0;
  box-shadow: 0 1px 0 0 #d6d6d6 inset;
}
tr:first-of-type body.moderator td .select2-container.select2-container-disabled .select2-choice,
tr:first-of-type body.moderator td .select2-container.select2-container-disabled .select2-arrow {
  border: 0;
  box-shadow: none;
}
body.moderator tr.active > td {
  background: -moz-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -webkit-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -o-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -ms-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  -webkit-box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
  -moz-box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
  box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
}
body.moderator tbody.numbered {
  counter-reset: tbl;
}
body.moderator tbody.numbered > tr {
  counter-increment: tbl;
}
body.moderator tbody.numbered > tr > td:first-child {
  width: 2em;
}
body.moderator tbody.numbered > tr > td:first-child:before {
  content: counter(tbl, decimal);
}
body.moderator .column-indicator {
  float: right;
  background-repeat: no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  margin: 2px 0 0 4px;
}
body.moderator .column-indicator.column-filtered {
  background-position: -36px -102px;
}
body.moderator .column-indicator.column-asc {
  background-position: -154px -54px;
}
body.moderator .column-indicator.column-desc {
  background-position: -154px -72px;
}
body.moderator .column-indicator.column-none {
  background-position: -108px -102px;
}
body.moderator .dropdown-menu {
  background: #fbfbfb;
  display: none;
  position: absolute;
  border: 1px solid #b0b0b0;
  padding: 5px;
  z-index: 1;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
body.moderator .dropdown-menu h6 {
  font-size: 100%;
  margin: 0 -5px;
  padding: 0 5px;
}
body.moderator .dropdown-menu div,
body.moderator .dropdown-menu ul {
  background: white;
  border-top: 1px solid #d6d6d6;
  margin: 0 -5px;
}
body.moderator .dropdown-menu ul {
  border-bottom: 1px solid #d6d6d6;
  list-style: none;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 5px -5px;
}
body.moderator .dropdown-menu li {
  list-style-image: url(data:text/plain,);
}
body.moderator .dropdown-menu label,
body.moderator .dropdown-menu span.icon {
  display: block !important;
  border-style: solid;
  border-width: 1px 0;
  border-color: white;
  padding: 2px 5px;
}
body.moderator .dropdown-menu label:hover,
body.moderator .dropdown-menu span.icon:hover {
  background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  border-color: #d6d6d6;
}
body.moderator .dropdown-menu label:active,
body.moderator .dropdown-menu span.icon:active,
body.moderator .dropdown-menu label.selected,
body.moderator .dropdown-menu span.icon.selected {
  /*
	.gradient-glossy(rgb(242,246,248), rgb(216,225,231), rgb(181,198,208), rgb(224,239,249));
	.gradient-glossy(rgb(254,204,177), rgb(241,116,50), rgb(234,85,7), rgb(251,149,94));
	.gradient-glossy(rgb(243,226,199), rgb(193,158,103), rgb(182,141,76), rgb(233,212,179));
	.gradient-glossy(rgb(255,196,137), rgb(255,167,61), rgb(255,124,0), rgb(255,180,119));
	.gradient-glossy(rgb(230,240,163), rgb(210,230,56), rgb(195,216,37), rgb(219,240,67));
	.gradient-glossy(rgb(157,213,58), rgb(161,213,79), rgb(128,194,23), rgb(124,188,10));
*/
  background: -moz-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -webkit-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -o-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -ms-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  text-shadow: 1px 1px 1px #ffffff;
  border-color: #b0b0b0;
}
body.moderator .dropdown-menu span.icon:before {
  margin-right: 4px !important;
}
body.moderator .dropdown-menu span {
  line-height: 22px;
}
body.moderator .dropdown-menu label {
  display: block !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
body.moderator .dropdown-menu li:first-child label,
body.moderator .dropdown-menu li:first-child span {
  border-top-width: 0;
}
body.moderator .dropdown-menu li:last-child label,
body.moderator .dropdown-menu li:last-child span {
  border-bottom-width: 0;
}
body.moderator .dropdown-menu footer {
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin: -5px -5px -5px -5px;
  white-space: nowrap;
  font-size: 0;
  line-height: 0;
}
body.moderator .dropdown-menu footer span.icon {
  display: inline-block !important;
  border-bottom-width: 0;
  border-top-width: 0;
  width: 50%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px 10px;
  border-color: transparent;
  font-size: medium;
  line-height: normal;
}
body.moderator .dropdown-menu footer span.icon:first-child {
  -webkit-border-radius: 0 0 0 5px;
  -moz-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-right-width: 1px;
}
body.moderator .dropdown-menu footer span.icon:last-child {
  -webkit-border-radius: 0 0 5px 0;
  -moz-border-radius: 0 0 5px 0;
  border-radius: 0 0 5px 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-left-width: 1px;
}
body.moderator #column-dropdown {
  width: 280px;
}
body.moderator #column-dropdown div {
  margin-top: 5px;
  padding: 5px 5px 0 27px;
  text-align: text-top;
  font-size: 15px;
  line-height: 15px;
  height: 22px;
}
body.moderator #column-dropdown div span {
  margin-left: -22px;
}
body.moderator #column-dropdown div #fldFilterText {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
body.moderator .empty,
body.moderator .tableInfo,
body.moderator .linkMore {
  text-align: center;
  font-size: 90%;
  color: #888;
  margin: 7px 0 15px 0;
  position: relative;
  /* validationMessage */
}
body.moderator .facet.form-vertical {
  padding: 0;
}
body.moderator .facet label {
  padding: 2px 12px;
  position: relative;
}
body.moderator .facet label:first-child {
  padding-top: 8px;
}
body.moderator .facet label:last-child {
  padding-bottom: 8px;
}
body.moderator .facet label:hover {
  background-color: #f8f8f8;
}
body.moderator span.icon {
  display: inline-block;
}
body.moderator .icon {
  cursor: pointer;
  /*&:hover:before { opacity: 1; }*/
}
body.moderator .icon:before {
  display: inline-block;
  vertical-align: top;
  margin: 3px 0 0 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  /*opacity: 0.7;*/
  content: " ";
}
body.moderator .icon-add:before {
  background-position: -136px -90px;
}
body.moderator .icon-cancel:before {
  background-position: 0px -120px;
}
body.moderator .icon-clear:before {
  background-position: -154px 0px;
}
body.moderator .icon-copy:before {
  background-position: -154px -108px;
}
body.moderator .icon-delete-all:before {
  background-position: -102px -52px;
}
body.moderator .icon-delete:before {
  background-position: 0px -138px;
}
body.moderator .icon-fullscreen:before {
  background-position: -108px -120px;
}
body.moderator .icon-help:before {
  background-position: -136px -18px;
}
body.moderator .icon-ok:before {
  background-position: -136px -72px;
}
body.moderator .icon-open:before {
  background-position: -72px -102px;
}
body.moderator .icon-paste:before {
  background-position: -36px -120px;
}
body.moderator .icon-refresh:before {
  background-position: -54px -120px;
}
body.moderator .icon-save:before {
  background-position: -154px -18px;
}
body.moderator .icon-sort-asc:before {
  background-position: -154px -54px;
}
body.moderator .icon-sort-desc:before {
  background-position: -154px -72px;
}
body.moderator .icon-hierarchy:before {
  background-position: -102px -34px;
}
body.moderator .icon-list:before {
  background-position: -136px -54px;
}
body.moderator .icon-gear:before {
  background-position: -108px -102px;
}
body.moderator .icon-filter:before {
  background-position: -36px -102px;
}
body.moderator .two-column {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}
body.moderator .flex-columns {
  display: flex;
  flex-direction: row;
}
body.moderator .flex-columns h4 {
  text-align: right;
}
body.moderator .flex-columns .flex-column {
  flex-grow: 1;
  padding: 0 15px;
}
body.moderator .flex-columns .flex-column.first {
  padding-left: 0;
}
body.moderator .flex-columns .flex-column.last {
  padding-right: 0;
}
body.moderator .flex-columns .flex-column.left-validation {
  position: relative;
  padding-right: 13px;
}
body.moderator .scrollpane {
  overflow-y: auto;
  padding: 8px 12px;
  position: relative;
}
body.moderator .sidebar {
  overflow-y: auto;
}
body.moderator .sidebar h4 {
  background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  color: #444;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  margin: 0;
  padding: 8px 12px;
}
body.moderator .sidebar h4:first-child {
  border-top: none;
}
body.moderator .sidebar h4.collapsible {
  cursor: pointer;
}
body.moderator .sidebar h4.collapsible::before {
  content: "↑";
  float: right;
}
body.moderator .sidebar h4.collapsible:hover::before {
  color: #448d3c;
}
body.moderator .sidebar h4.collapsible.collapsed {
  border-bottom: none;
}
body.moderator .sidebar h4.collapsible.collapsed::before {
  content: "↓";
}
body.moderator .sidebar h4.collapsible.collapsed + div {
  display: none;
}
body.moderator .sidebar .toggle-block h4 {
  border-top: 1px solid #d6d6d6;
}
body.moderator .sidebar p {
  margin: 0;
  padding: 8px 12px;
  background: url(img/tablerow.gif) repeat-x 0 0;
  word-break: break-word;
}
body.moderator .sidebar > :last-child {
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: -1px;
}
body.moderator .sidebar label {
  cursor: pointer;
}
body.moderator .sidebar table {
  margin: 0 12px 8px 12px;
  width: 92%;
}
body.moderator .sidebar table td {
  padding: 2px 5px;
  vertical-align: middle;
  text-align: center;
}
body.moderator .sidebar table td input {
  margin: 0;
}
body.moderator .sidebar p.selected,
body.moderator .sidebar tr.selected td {
  background: -moz-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -webkit-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -o-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: -ms-linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  background: linear-gradient(top, #cbe7c8 0%, #ecf7eb 50%, #ecf7eb 51%, #ecf7eb 100%);
  -webkit-box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
  -moz-box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
  box-shadow: 0 -3px 5px -4px #a9d8a4 inset;
}
body.moderator .sidebar.with-fixed-parts {
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
}
body.moderator .sidebar.with-fixed-parts .top-part {
  flex: 0 1 auto;
  overflow-y: auto;
}
body.moderator .sidebar.with-fixed-parts .bottom-part {
  flex: 0 0 auto;
  border-top: 1px solid #d6d6d6;
}
body.moderator .sidebar .select2-container {
  width: 100%;
}
body.moderator .with-sidebars {
  display: flex;
  flex-direction: row;
  padding: 0;
}
body.moderator .with-sidebars .sidebar {
  flex: 0 1 270px;
  min-width: 150px;
}
body.moderator .with-sidebars .sidebar.left {
  border-right: 1px solid #d6d6d6;
}
body.moderator .with-sidebars .sidebar.right {
  border-left: 1px solid #d6d6d6;
}
body.moderator .with-sidebars.with-splitters {
  position: relative;
}
body.moderator .with-sidebars.with-splitters .sidebar.resizable {
  border: none;
}
body.moderator .with-sidebars .content {
  flex: 1 0 300px;
  min-width: 300px;
  overflow-y: auto;
}
body.moderator .sidebar-form.left-validation {
  padding-right: 0;
}
body.moderator .sidebar-form.left-validation .validationMessage {
  right: 10px;
}
.allErrors body.moderator .sidebar-form.left-validation .validationMessage,
body.moderator .sidebar-form.left-validation .validationMessage:hover {
  top: 3px;
  max-width: 90%;
}
body.moderator .sidebar-form p {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  padding: 8px 29px 8px 12px;
}
body.moderator .sidebar-form p label {
  flex-basis: 1;
  width: 100%;
}
body.moderator .sidebar-form p input,
body.moderator .sidebar-form p select,
body.moderator .sidebar-form p textarea {
  display: inline-block;
  flex-grow: 1;
}
body.moderator .splitter {
  flex: 0 0 7px;
  background: #fbfbfb;
  cursor: col-resize;
  border-left: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body.moderator .splitter:hover {
  background: white;
  border-color: #b0b0b0;
}
body.moderator #splitterDrag {
  cursor: col-resize;
  position: absolute;
  background: #a9d8a4;
  opacity: 0.4;
  width: 7px;
  height: 100%;
  top: 0;
  left: 0;
}
@media print {
  body.moderator .scrollpane {
    max-height: none !important;
  }
}
body.moderator span.tristate {
  vertical-align: text-top;
  font-size: 1px;
  display: inline-block;
}
body.moderator span.tristate.thirdstate:before {
  content: " ";
  background: rgba(0, 0, 0, 0.3);
  width: 9px;
  height: 9px;
  position: absolute;
  display: block;
  margin: 5px 0 0 6px;
}
body.moderator span.linkButton {
  text-decoration: underline;
  cursor: pointer;
  color: #888;
}
body.moderator span.linkButton:hover {
  color: black;
}
body.moderator .validationMessage {
  position: absolute;
  overflow: hidden;
  background-position: -154px -126px;
  padding-left: 10px;
  width: 0px;
  height: 10px;
  z-index: 1;
  cursor: help;
  opacity: 0.25;
  margin: 5px 0 0 5px;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  text-align: left;
  font-weight: normal;
}
body.moderator .validationMessage:hover,
body.moderator .allErrors .validationMessage {
  color: black;
  opacity: 1;
  width: auto;
  height: auto;
  padding: 5px 8px 5px 8px;
  border: 1px solid #ff6464;
  text-shadow: 1px 1px 1px #FFF;
  white-space: nowrap;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  background: -moz-linear-gradient(top, #ffffff 0%, #ffe6e6 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #ffe6e6 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #ffe6e6 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #ffe6e6 100%);
  background: linear-gradient(top, #ffffff 0%, #ffe6e6 100%);
  cursor: pointer;
  /*&:hover:before { opacity: 1; }*/
  cursor: help;
}
body.moderator .validationMessage:hover:before,
body.moderator .allErrors .validationMessage:before {
  display: inline-block;
  vertical-align: top;
  margin: 3px 0 0 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  /*opacity: 0.7;*/
  content: " ";
}
body.moderator .validationMessage:hover:before,
body.moderator .allErrors .validationMessage:before {
  background-position: -154px -126px;
  margin: 5px 4px 0 3px;
  width: 10px;
  height: 10px;
}
body.moderator tr .validationMessage {
  margin: 0 0 0 -5px;
}
body.moderator .empty .validationMessage {
  margin: 0 0 0 5px;
}
body.moderator td:last-child .validationMessage {
  right: 16px;
}
body.moderator .icons-selector .validationMessage {
  right: 30px;
}
body.moderator select + .validationMessage,
body.moderator input[type=date] + .validationMessage,
body.moderator .select2-container + input + .validationMessage {
  margin-left: 5px;
}
body.moderator .pickmeup {
  z-index: 10;
}
body.moderator .select2-drop,
body.moderator .select2-dropdown-open .select2-choice,
body.moderator .select2-container-active .select2-choice,
body.moderator .select2-container-multi.select2-container-active .select2-choices,
body.moderator .select2-drop.select2-drop-above.select2-drop-active,
body.moderator .select2-dropdown-open.select2-drop-above .select2-choice,
body.moderator .select2-dropdown-open.select2-drop-above .select2-choices {
  border-color: #55b14c;
}
body.moderator .select2-results .select2-highlighted {
  /*
	.gradient-glossy(rgb(242,246,248), rgb(216,225,231), rgb(181,198,208), rgb(224,239,249));
	.gradient-glossy(rgb(254,204,177), rgb(241,116,50), rgb(234,85,7), rgb(251,149,94));
	.gradient-glossy(rgb(243,226,199), rgb(193,158,103), rgb(182,141,76), rgb(233,212,179));
	.gradient-glossy(rgb(255,196,137), rgb(255,167,61), rgb(255,124,0), rgb(255,180,119));
	.gradient-glossy(rgb(230,240,163), rgb(210,230,56), rgb(195,216,37), rgb(219,240,67));
	.gradient-glossy(rgb(157,213,58), rgb(161,213,79), rgb(128,194,23), rgb(124,188,10));
*/
  background: -moz-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -webkit-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -o-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: -ms-linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  background: linear-gradient(top, #ecf7eb 0%, #cbe7c8 50%, #a9d8a4 51%, #ecf7eb 100%);
  text-shadow: 1px 1px 1px #ffffff;
  color: #000;
  box-shadow: 0 0 0 1px #b0b0b0 inset;
}
body.moderator span.left-validation {
  position: relative;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body.moderator span.left-validation .validationMessage {
  right: 0px;
}
body.moderator span.right-validation .validationMessage {
  right: auto;
}
body.moderator .actionsMenu {
  list-style: none;
  padding: 5px 12px;
  margin: 0;
  background: url(img/tablerow.gif) repeat-x 0 0;
}
body.moderator .actionsMenu kbd {
  color: #4d9f44;
}
body.moderator .actionsMenu kbd::before {
  content: "[";
}
body.moderator .actionsMenu kbd::after {
  content: "]";
}
body.moderator .actionsMenu .actionForm {
  background-color: #f4f4f4;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 3px 12px;
  margin: 2px -12px 2px -12px;
}
body.moderator .actionsMenu li {
  margin: 5px 0;
  line-height: 90%;
}
body.moderator section header h2 {
  margin-left: 42px;
}
body.moderator #usersTable footer .icon-add,
body.moderator #commentariesTable footer .icon-add {
  display: none;
}
body.moderator .left-validation .validationMessage {
  right: 0;
}
body.moderator td span.left-validation .validationMessage {
  right: -8px;
  top: 0px;
}
body.moderator td span.right-validation {
  padding-right: 10px;
}
body.moderator .left-validation {
  padding-right: 16px;
}
body.moderator #usersTable header:before,
body.moderator #usersForm header:before,
body.moderator #usersRights header:before,
body.moderator #nsiTable header:before,
body.moderator #nsiForm header:before,
body.moderator #commentariesTable header:before,
body.moderator #commentariesForm header:before,
body.moderator #faqTable header:before,
body.moderator #faqForm header:before,
body.moderator #clarificationsTable header:before,
body.moderator #clarificationsForm header:before {
  background-position: -34px -34px;
}
#ajax {
  position: relative;
  z-index: 1001;
}
#white-canvas {
  position: fixed;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
}
a,
a:visited {
  color: #3c7191;
}
a:hover {
  color: #6fa4c4;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: 400;
  margin-bottom: 15px;
}
h1 {
  font-size: 26px;
  line-height: 1.38461538;
}
h2 {
  font-size: 24px;
  line-height: 1.5;
}
h3 {
  font-size: 22px;
  line-height: 1.09090909;
}
h4 {
  font-size: 20px;
  line-height: 1.2;
}
h5 {
  font-size: 18px;
  line-height: 1.33333333;
}
h6 {
  font-size: 16px;
  line-height: 1.5;
}
::selection {
  background: #5F8FAF;
  color: #fff;
  text-shadow: none !important;
}
/**
 * controls & misc
*/
/* Inputs, Buttons, Lists */
input,
select,
textarea {
  font: 400 14px/18px 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  vertical-align: top;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #6fa4c4;
  box-shadow: 0 0 1px #6fa4c4;
}
input[dname],
select[dname],
textarea[dname] {
  cursor: pointer;
}
select {
  padding: 3px 10px;
  border-radius: 3px;
  border: 1px solid #CCC;
}
input[disabled],
textarea[disabled] {
  background-color: #F4F4F4;
}
.button {
  display: inline-block;
  outline: none;
  border: none;
  padding: 12px 24px;
  border-radius: 3px;
  background: #002A44;
  border: 1px solid #002A44;
  color: #fff;
  font: 400 14px/16px 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  transition-duration: 0.3s;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.button.button-red {
  background: #e3433c;
  border: 1px solid #E74848;
  color: #fff;
}
.button.button-red:hover {
  background: #f7554e;
}
.button:hover {
  background: #002A44;
  cursor: pointer;
}
.button.current {
  cursor: default;
}
.button.current.pointer {
  cursor: pointer;
}
.button.current.pointer:hover {
  background: #f3f3f3;
}
.button.current,
a.button.current,
a.button.current:visited {
  color: #736969;
}
.button.current,
.button.current:hover {
  background-color: white;
}
.button.disabled {
  background-color: #DCDEE5 !important;
  border: 1px solid #DCDEE5 !important;
  color: #6C6C6C !important;
  cursor: default;
}
.button.green {
  background: #93BF2F;
  border: 1px solid #93BF2F;
}
.button.green:hover {
  background: #aad34e;
}
.button.white {
  background: #fff;
  border: 1px solid #0B1F6D;
  color: #0B1F6D !important;
}
.button.white:hover {
  background: #FAFAFA;
}
.printButton {
  display: inline-block;
  outline: none;
  border: none;
  padding: 12px 24px;
  border-radius: 3px;
  background: #002A44;
  border: 1px solid #002A44;
  color: #fff;
  font: 400 14px/16px 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  transition-duration: 0.3s;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 6px 6px ;
  font: 400 15px/16px 'Open Sans', Arial, Helvetica, sans-serif0;
  background: #c2c7ca;
  margin-left: 20px;
}
.printButton.button-red {
  background: #e3433c;
  border: 1px solid #E74848;
  color: #fff;
}
.printButton.button-red:hover {
  background: #f7554e;
}
.printButton:hover {
  background: #002A44;
  cursor: pointer;
}
.printButton.current {
  cursor: default;
}
.printButton.current.pointer {
  cursor: pointer;
}
.printButton.current.pointer:hover {
  background: #f3f3f3;
}
.printButton.current,
a.printButton.current,
a.printButton.current:visited {
  color: #736969;
}
.printButton.current,
.printButton.current:hover {
  background-color: white;
}
.printButton.disabled {
  background-color: #DCDEE5 !important;
  border: 1px solid #DCDEE5 !important;
  color: #6C6C6C !important;
  cursor: default;
}
.printButton.green {
  background: #93BF2F;
  border: 1px solid #93BF2F;
}
.printButton.green:hover {
  background: #aad34e;
}
.printButton.white {
  background: #fff;
  border: 1px solid #0B1F6D;
  color: #0B1F6D !important;
}
.printButton.white:hover {
  background: #FAFAFA;
}
.link-download {
  font-size: 20px;
  color: #002A44;
  vertical-align: middle;
  cursor: pointer;
}
.link-download:after {
  content: '';
  background-size: cover;
  display: inline-block;
  height: 32px;
  width: 32px;
  color: #002A44;
  vertical-align: middle;
  position: relative;
  left: -5px;
  top: -2px;
}
.link-download:hover {
  color: #002A44 !important;
}
.link-download.link-pdf:after {
  background: url(img/download.svg);
}
.link-download.link-docx:after {
  background: url(img/download.svg);
}
.link-download.link-print:after {
  background: url(img/print.svg);
  left: -3px;
}
.link-download.no-ot:after {
  left: 0;
}
a.button,
a:visited.button {
  color: white;
}
.button-grey {
  background: #eee;
  color: #333;
}
a.button-grey,
a:visited.button-grey {
  color: #333;
}
.button-grey.current,
a.button-grey.current,
a.button-grey.current:visited {
  color: #808080;
}
.button-grey.current,
.button-grey.current:hover {
  background-color: transparent;
}
.button-grey:hover {
  background: #fafafa;
  color: #333;
}
.link {
  color: #3c7191;
  cursor: pointer;
}
.accordion {
  border: 1px #eee solid;
  padding: 10px 13px 0px 13px;
  border-radius: 5px;
  margin: 25px 0 35px 0;
}
.accordion .accordion-tab {
  border-top: 1px #eee solid;
  padding: 10px 0;
  position: relative;
}
.accordion .accordion-tab:first-child {
  border-top: 0;
  padding-top: 0;
}
.accordion .accordion-tab:first-child .accordion-arrow {
  top: 0;
}
.accordion .accordion-options {
  float: right;
  margin-bottom: 10px;
  font-size: 18px;
}
.accordion .accordion-options .resetFilter {
  margin-right: 20px;
}
.accordion .accordion-reset {
  color: #424B5A;
  cursor: pointer;
  text-decoration: underline;
}
.accordion .accordion-arrow {
  position: absolute;
  top: 10px;
  right: 0;
  cursor: pointer;
}
.accordion .accordion-selected .accordion-arrow {
  transform: rotate(90deg);
}
.accordion h6 {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 0;
  cursor: pointer;
  padding-right: 25px;
}
.accordion .accordion-content {
  margin: 8px 0 0 0;
}
.accordion .accordion-content .content-date {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 0.715em;
  outline: none;
  border: 1px solid #CCC;
  line-height: 130%;
  vertical-align: middle;
}
.accordion .accordion-content .content-date-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 130%;
  margin: 0 0 0.5em 0;
  white-space: normal;
  vertical-align: middle!important;
}
.scrollbox {
  font-size: 12px;
  max-height: 350px;
  overflow-y: scroll;
  padding-left: 2px;
  border-radius: 3px;
  margin-bottom: 10px;
  vertical-align: top;
}
.scrollbox .parent input[type="checkbox"] {
  margin-left: 17px;
}
.scrollbox .parent input[type="checkbox"] *:first-of-type {
  margin-left: 0;
}
.treeSelect .filter {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
  transition-duration: 0.3s;
  display: block;
  margin-bottom: 15px;
  padding: 0.715em;
  outline: none;
  border: 1px #CCC solid;
  border-radius: 3px;
  line-height: 130%;
}
.treeSelect .tree li li label {
  margin-left: 16px;
}
.treeSelect .tree li li li label {
  margin-left: 32px;
}
.treeSelect .tree li li li li label {
  margin-left: 48px;
}
.treeSelect .tree li.checkbox-inv {
  display: none;
}
.treeSelect .tree label {
  position: relative;
  padding: 0.8em 0 0.4em 54px;
  cursor: pointer;
  display: block;
  line-height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: normal;
  font-size: 18px;
}
.treeSelect .tree .filtered {
  color: #CCC;
  font-style: 95%;
  text-align: center;
  padding: 5px 10px 3px;
}
.treeSelect .tree .checkbox {
  position: absolute;
  left: 0px;
  top: 0.7em;
}
.treeSelect .tree .checkbox:before {
  content: ' ';
  width: 20px;
  height: 20px;
  display: block;
  background: #002A44;
  border-radius: 2px;
}
.treeSelect .tree .checkbox.checkbox-off:before {
  content: ' ';
  display: block;
  color: #BDBDBD;
  width: 19px;
  height: 19px;
  background: transparent;
  border: 1px solid #BDBDBD;
  border-radius: 2px;
}
.treeSelect .tree .checkbox.checkbox-nof:before {
  width: 19px;
  height: 19px;
  border-radius: 2px;
}
.treeSelect .tree .collapse {
  position: absolute;
  left: 30px;
  top: 0.55em;
  font-size: 20px;
}
.treeSelect .tree .collapse:before {
  content: '⌃';
  transform: rotate(180deg);
  display: inline-block;
}
.treeSelect .tree .collapse.collapse-off {
  top: 0.95em;
}
.treeSelect .tree .collapse.collapse-off:before {
  content: '⌃';
  display: inline;
}
body.mobile .treeSelect .tree label {
  padding: 0.9em 0 0.9em 41px;
  font-size: 12px;
}
body.mobile .treeSelect .tree .checkbox {
  top: 0.765em;
}
body.mobile .treeSelect .tree .checkbox:before {
  font-size: 16px;
}
body.mobile .treeSelect .tree .collapse {
  top: 11.6px;
}
.pagination {
  text-align: center;
  display: inline-block;
  font-size: 0;
}
.pagination .navigation-link {
  text-decoration: none;
  border-radius: 4px;
  padding: 7px 5px;
  line-height: 1;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  color: #3c7191;
  display: inline-block;
  margin: 0 3px 0 0;
  font-size: 20px;
}
.pagination .navigation-link.nav-prev:before,
.pagination .navigation-link.nav-next:before {
  content: '\e808';
  font-family: 'fontello';
}
.pagination .navigation-link.nav-prev {
  transform: rotate(180deg);
}
.pagination .navigation-link:hover {
  color: #6fa4c4;
}
.pagination .navigation-link.active {
  cursor: default;
  color: white;
  background-color: #3c7191;
}
.pagination .navigation-link.active:hover {
  text-decoration: none;
}
.pagination-calendar {
  width: 100%;
  margin-bottom: 20px;
  margin-left: -5px;
}
.center {
  text-align: center;
}
.select2-container.select2-allowclear .select2-arrow {
  display: none;
}
.select2-container .select2-choice {
  border-color: #CCC;
  background: white;
  line-height: 2.5em;
  height: 2.5em;
}
.select2-container .select2-choice .select2-chosen {
  padding: 0.715em;
  font-size: 18px;
}
.select2-container .select2-choice .select2-arrow {
  background: transparent;
  border: none;
  margin-right: 5px;
}
.select2-container .select2-choice .select2-arrow:before {
  content: '⌃';
  display: inline-block;
  font-size: 18px;
  transform: rotate(180deg);
  position: relative;
  font-weight: 200;
  height: 100%;
  top: -7px;
}
.select2-container .select2-choice .select2-arrow b {
  display: none;
}
.select2-container abbr.select2-search-choice-close {
  font-size: 11px;
  font-weight: 600;
  line-height: 17px;
  background-image: none!important;
  height: 100%;
}
.select2-container abbr.select2-search-choice-close:after {
  content: "\2716";
  display: inline-block;
  font-size: 14px;
  transform: rotate(180deg);
  position: relative;
  font-weight: 200;
  height: 100%;
  top: -15px;
  right: -10px;
}
.select2-drop.select2-drop-above.select2-drop-active {
  border-top-color: #CCC;
}
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border-color: #CCC;
}
.select2-drop-active {
  border: 1px solid #002a44;
  border-bottom: none;
  box-shadow: none;
}
.additional-dashboard-menu {
  display: flex;
  margin-top: 40px;
}
.additional-dashboard-menu ul {
  list-style: disc;
  margin-left: 15px;
}
.additional-dashboard-menu ul li {
  margin-bottom: 10px;
}
.additional-dashboard-menu .popular-list,
.additional-dashboard-menu .dashboard-calendar {
  flex-basis: 50%;
}
.additional-dashboard-menu .popular-list {
  margin-right: 20px;
}
.additional-dashboard-menu .popular-list .list-scroll {
  height: 420px;
  overflow-y: auto;
}
.additional-dashboard-menu .dashboard-calendar {
  background: #002a43;
  border-radius: 10px;
}
.additional-dashboard-menu .dashboard-calendar .xdsoft_datetimepicker {
  width: 100%;
}
.additional-dashboard-menu .dashboard-calendar .xdsoft_datetimepicker .xdsoft_datepicker {
  width: 100%;
  padding: 0 20px;
  float: none;
  margin-left: 4px;
}
.additional-dashboard-menu .dashboard-calendar .xdsoft_datetimepicker .xdsoft_datepicker .xdsoft_monthpicker {
  padding-left: 28px;
  padding-right: 28px;
  margin-bottom: 10px;
}
.additional-dashboard-menu .dashboard-calendar .xdsoft_datetimepicker .xdsoft_datepicker th {
  font-size: 18px;
  height: 38px;
}
.additional-dashboard-menu .dashboard-calendar .xdsoft_datetimepicker .xdsoft_datepicker td.xdsoft_other_month {
  visibility: hidden;
}
.additional-dashboard-menu .dashboard-calendar .xdsoft_datetimepicker .xdsoft_datepicker td.xdsoft_date {
  background: transparent!important;
  height: 38px;
}
.additional-dashboard-menu .dashboard-calendar .xdsoft_datetimepicker .xdsoft_datepicker td.xdsoft_date > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  font-size: 18px;
}
.additional-dashboard-menu .dashboard-calendar .xdsoft_datetimepicker .xdsoft_datepicker td.xdsoft_date:hover > div,
.additional-dashboard-menu .dashboard-calendar .xdsoft_datetimepicker .xdsoft_datepicker td.xdsoft_date.xdsoft_current > div {
  background: #93bf2f;
}
.additional-dashboard-menu .dashboard-calendar h2 {
  color: #fff;
  text-align: center;
  padding: 30px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.additional-dashboard-menu .dashboard-calendar .button {
  font-size: 18px;
  margin-top: 10px;
}
#inline-calendar-popup {
  display: none;
  position: absolute;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #4D6A80;
  padding: 15px;
  box-shadow: 7px 4px 28.8px 0px #273A6059;
  border-radius: 5px;
  font-family: 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px;
  min-width: 240px;
  z-index: 100;
}
#inline-calendar-popup a {
  display: block;
}
.portal-table {
  width: 100%;
  color: #333333;
  border-left: 1px #002A44 solid;
  text-align: left;
}
.portal-table th {
  font-weight: 400;
  font-size: 18px;
  border-right: 1px solid #002A44;
  border-bottom: 1px solid #002A44;
  border-top: 1px solid #002A44;
  letter-spacing: 2px;
  padding: 10px 12px;
  background: #002A44;
  color: #fff;
}
.portal-table th:not(:last-child) {
  border-right-color: #BBBBBB;
}
.portal-table td {
  border-right: 1px solid #002A44;
  border-bottom: 1px solid #002A44;
  padding: 6px 6px 6px 12px;
}
.portal-table tbody.numbered {
  counter-reset: tbl;
}
.portal-table tbody.numbered > tr {
  counter-increment: tbl;
}
.portal-table tbody.numbered > tr > td:first-child:before {
  content: counter(tbl, decimal);
}
.portal-table ul {
  list-style-type: disc;
  padding: 0 0 0 1em;
  margin: 0;
}
.portal-table ul li {
  margin: 0;
  padding: 0;
}
.form-simple .prop {
  margin: 0 0 13px 0;
}
.form-simple input,
.form-simple textarea {
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  border: 1px #CCC solid;
  border-radius: 3px;
  outline: none;
  margin: 0 0 8px 0;
}
.form-simple .validationMessage {
  display: inline-block;
  width: 300px;
  line-height: 120%;
  margin: 0 0 0 15px;
  color: #BA3B3B;
}
.form-simple label {
  display: block;
  line-height: 2em;
}
.form-simple .button {
  padding: 10px 12px;
}
.form-simple .req {
  color: #002A44;
  /*@error-color;*/
}
section.popup {
  display: none;
  position: fixed;
  top: 200px;
  left: 200px;
  z-index: 2;
  padding: 30px;
  background-color: white;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
}
section.popup h1 {
  cursor: move;
}
section.popup .close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  text-align: center;
  line-height: 2em;
  overflow: hidden;
  cursor: pointer;
}
.onlyprint {
  display: none;
}
/**
 * Template styles
 */
#ajax {
  background: url('img/ajax.png');
  width: 100%;
  height: 10px;
  position: fixed;
  z-index: 2;
}
#blackout {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.3;
  filter: alpha(opacity=30);
  z-index: 2;
}
header {
  background: white;
  /* Main Menu */
}
header .container {
  padding: 14px;
}
header #header {
  align-items: center;
}
header .right-wrapper {
  display: flex;
  margin-left: auto;
  align-items: center;
}
header #langList {
  margin-right: 50px;
}
header #langList span {
  display: table-cell;
  padding: 2px 6px;
  line-height: 1;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
header #langList span:not(:last-child) {
  border-right: 1px solid #0B1F6D;
}
header .headerTitle a,
header .headerTitle a:visited {
  color: #0B1F6D;
}
header .headerTitle a p,
header .headerTitle a:visited p {
  width: 395px;
  font-size: 12px;
  line-height: 14px;
}
header a.nolink {
  color: #333738;
  text-decoration: none;
  cursor: default;
}
header #topMenu {
  text-align: right;
}
header #topMenu span {
  text-transform: uppercase;
}
header #topMenu span.link {
  color: #32acdd;
}
header #topMenu span.link:hover,
header #topMenu span.icon-eye:hover {
  color: #5ebee4;
}
header #topMenu .button.green {
  margin-right: 15px;
  padding: 10px 28px;
}
header #topMenu .button.white {
  padding: 10px 28px;
}
header #topMenu .icon {
  cursor: pointer;
}
.header-menu {
  position: relative;
  background: linear-gradient(to right, #0d354d, #0e679b);
}
.header-menu .container {
  padding: 8px 14px;
  align-items: center;
  justify-content: space-between;
}
.header-menu #logo {
  background: url('img/logo-hat.png');
  background-size: cover;
  width: 60px;
  height: 60px;
}
.header-menu .header-search {
  position: relative;
  display: flex;
  align-items: center;
}
.header-menu .header-search input {
  border: 0.5px #CCC solid;
  border-radius: 3px;
  outline: none;
  background: transparent;
  height: 35px;
  width: 170px;
  padding-left: 16px;
  padding-right: 170px;
  color: #fff;
}
.header-menu .header-search input::placeholder {
  color: #fff;
  margin-left: 16px;
}
.header-menu .header-search > a {
  position: absolute;
  right: 20px;
  size: 12px;
  color: #fff;
  font-weight: 300;
  text-decoration: underline;
  cursor: pointer;
}
.header-menu .header-links {
  margin-right: 60px;
}
.header-menu .header-links a {
  color: #fff;
  margin-right: 20px;
}
.header-menu .callback {
  color: #fff;
  font-weight: 500;
}
.header-menu .callback span {
  color: #fff;
  font-weight: 300;
  text-decoration: underline;
  float: right;
}
#dashboardSlider {
  color: #fff;
}
#dashboardSlider .main-slide {
  background: linear-gradient(90deg, #002A43 0%, #0069A6 118.01%);
  background-size: cover;
}
#dashboardSlider .main-slide .container.flex {
  align-items: center;
}
#dashboardSlider .dashboard-title {
  font-size: 34px;
  line-height: 41px;
  width: 550px;
}
#dashboardSlider .dashboard-subtitle {
  font-size: 34px;
  line-height: 41px;
  width: 580px;
}
#dashboardSlider .dashboard-desc {
  font-size: 18px;
  font-weight: 200;
  width: 500px;
  margin: 30px 0;
}
#dashboardSlider .button.green {
  font-size: 20px;
}
#dashboardSlider .main-titles {
  margin-right: 40px;
}
#dashboardSlider .dashboard-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
#dashboardSlider .dashboard-right .dashboard-item {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #B0D2F11A;
  border-radius: 5px;
  height: 123px;
  font-weight: 300;
  line-height: 20px;
}
#dashboardSlider .dashboard-right .dashboard-item .item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 43%;
}
#dashboardSlider .dashboard-right .dashboard-item span {
  size: 17px;
  width: 135px;
  letter-spacing: 0.02em;
}
.main-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.main-categories .categories-item {
  display: flex;
  width: 350px;
  background: #F0F7FF;
  border-radius: 3px;
  color: #2C3675;
  flex: 1 1 calc((100% - 64px) / 3);
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border 0.3s ease;
}
.main-categories .categories-item:hover,
.main-categories .categories-item.selected {
  background: #93BF2F;
  color: #fff;
}
.main-categories .categories-item:hover img,
.main-categories .categories-item.selected img {
  filter: invert(100%) brightness(1000%);
}
.main-categories .categories-item span {
  font-size: 20px;
  width: 80%;
  margin-right: 5px;
}
.main-categories .categories-item .item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 20%;
  margin: 14px 0;
}
.categories-button-search {
  margin: 40px 0;
  background: #3C7191;
  border: 1px solid #3C7191;
  width: 255px;
  padding: 16px 24px;
  font-size: 20px;
}
.categories-button-search:hover {
  background: #4b8db5;
}
.main-title-collapse {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E3E3E3;
}
.main-title-collapse .main-title-text {
  font-size: 24px;
}
.main-title-collapse .main-title-right {
  margin-left: auto;
}
.main-title-collapse .main-title-btn {
  display: inline-block;
  font-size: 20px;
  cursor: pointer;
}
.main-title-collapse .main-title-btn span {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.main-title-collapse .main-title-btn.main-sa {
  margin-right: 15px;
}
.main-title-collapse .main-title-btn .collapse:before {
  content: '⌃';
  display: inline-block;
  font-size: 24px;
  transform: rotate(180deg);
  position: relative;
  font-weight: 200;
  top: -4px;
}
.main-title-collapse .main-title-btn.collapsed {
  font-weight: 500;
}
.main-title-collapse .main-title-btn.collapsed .collapse:before {
  content: '⌃';
  transform: rotate(0deg);
  top: 8px;
}
.main-accordion {
  border: 0;
  margin: 0;
  padding: 0;
}
.main-accordion.accordion {
  z-index: 10;
  background: #fff;
}
.main-accordion.accordion .accordion-tab {
  margin: 0;
  border: 0;
  padding: 0;
}
.main-accordion.accordion .accordion-tab .accordion-content {
  padding: 10px 13px 0px 13px;
  border: 1px #eee solid;
  border-radius: 5px;
  margin: 25px 0 35px 0;
  box-shadow: 4px 4px 20.1px 0px #A8A8A840;
}
.main-accordion .accordion-arrow {
  display: none;
}
.xdsoft_datetimepicker {
  background: #002A43;
  border-radius: 10px;
  font-family: 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  box-shadow: none;
  border: none;
}
.xdsoft_datetimepicker .xdsoft_datetimepicker.xdsoft_datepicker {
  margin-left: 0;
}
.xdsoft_datetimepicker .xdsoft_year {
  margin: 0;
}
.xdsoft_datetimepicker .xdsoft_calendar .xdsoft_other_month {
  opacity: 1!important;
  color: #BDBDBD;
}
.xdsoft_datetimepicker .xdsoft_calendar th,
.xdsoft_datetimepicker .xdsoft_calendar td {
  background: transparent;
  border: 0;
  text-align: center;
  font-weight: 400;
  color: #fff;
  height: 32px;
}
.xdsoft_datetimepicker .xdsoft_calendar td {
  border-radius: 50%;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td:hover {
  background: #93BF2F !important;
  box-shadow: none;
  font-weight: 400;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #fff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover {
  color: #fff !important;
  opacity: 0.5;
}
.xdsoft_datetimepicker .xdsoft_calendar td > div {
  padding-right: 0;
}
.xdsoft_datetimepicker .xdsoft_monthpicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 15px;
}
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_label i {
  display: none;
}
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_label.xdsoft_month,
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_label.xdsoft_year {
  background: transparent;
  text-align: center;
}
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_label.xdsoft_month span,
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_label.xdsoft_year span {
  font-weight: 200;
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_label.xdsoft_year {
  width: 52px;
}
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  background: #93BF2F;
  box-shadow: none;
}
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_today_button {
  display: none;
}
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_next {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 1;
}
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_prev::before {
  content: '⌃';
  font-size: 24px;
  color: #fff;
  font-family: 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  transform: rotate(-90deg);
  margin-top: 36px;
  font-weight: 200;
}
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_next::before {
  content: '⌃';
  font-size: 24px;
  color: #fff;
  font-family: 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  transform: rotate(90deg);
  margin-top: -42px;
  font-weight: 200;
}
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_prev:hover::before,
.xdsoft_datetimepicker .xdsoft_monthpicker .xdsoft_next:hover::before {
  color: #BDBDBD;
}
section {
  display: none;
}
section .two-lang {
  display: flex;
  /*.second-doc {
			order: 2;
		}*/
}
section .two-lang .first-doc,
section .two-lang .second-doc {
  padding-top: 3px;
  max-height: 900px;
  overflow-y: auto;
  width: 50%;
}
section .commenting .cls-text {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
section .commenting .cls-text:hover {
  transition: box-shadow 0.2s ease-in-out;
  -webkit-box-shadow: 0px 0px 0.5px 2px #0e679b;
  -moz-box-shadow: 0px 0px 0.5px 2px #0e679b;
  box-shadow: 0px 0px 0.5px 2px #0e679b;
}
section .commenting .cls-text .delete-commentary {
  display: none;
}
section .cls-text {
  position: relative;
}
section .cls-text .commentary-here {
  position: absolute;
  right: -10px;
  top: 0;
  width: 10px;
  height: 50%;
  background-color: #3C7191;
  cursor: pointer;
  z-index: 1;
}
section .cls-text .commentary-here:hover {
  background-color: #4b8db5;
  transition-duration: 0.3s;
}
section .cls-text .delete-commentary {
  position: absolute;
  top: 50%;
  right: -10px;
  height: 10px;
  width: 10px;
  background: #e3433c;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  text-indent: 0;
  line-height: 0;
  box-shadow: none;
  border: 0;
  z-index: 1;
}
section .cls-text .delete-commentary:hover {
  color: #000;
  background: #f7554e;
  transition-duration: 0.3s;
}
section .commentary-list {
  list-style-type: decimal;
  padding-left: 30px;
  position: relative;
}
section .commentary-list span {
  margin-right: 10px;
}
section .commentary-list span.remove {
  margin-right: 0;
  cursor: pointer;
}
section .commentary-list span.remove:hover {
  color: #32acdd;
}
section .line {
  background: white;
}
section .line.main {
  padding-bottom: 10px;
}
section .line.main h1 {
  margin-bottom: 30px;
}
section .line.grey {
  background: #f0f0f0;
}
section .line.dark-grey {
  background: #dddddd;
}
section .descMessage {
  margin: 0 0 1em 0;
}
section .info .info-desc {
  margin: 0 1em 0 0;
}
section .info .button-line {
  display: inline-block;
}
section .info .button-line > *,
section .info .button-line .secondRow > * {
  margin-right: 10px;
  margin-top: 10px;
}
section .info .button-line > *:last-child,
section .info .button-line .secondRow > *:last-child {
  margin-left: 0;
}
section .info .button-line .secondRow > * {
  margin-top: 0;
}
section .info .button-line .secondRow {
  margin-top: 20px;
}
section .info .button-line .button {
  padding: 12px 20px;
  background: #fff;
  color: #002A44;
  border: 1px solid #002A44;
  border-radius: 3px;
  font-size: 20px;
}
section .info .button-line .button:hover,
section .info .button-line .button.current {
  background: #93BF2F;
  border: 1px solid #93BF2F;
  color: #fff;
}
section .info .button-line .button.button-red {
  background: #e3433c;
  border: 1px solid #E74848;
  color: #fff;
}
section .info .button-line .button.button-red:hover {
  background: #f7554e;
}
section .breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
}
section .message {
  font-weight: bold;
  padding: 6px 15px;
  border-radius: 5px;
  margin: 0 0 15px 0;
  font-family: 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid;
  border-color: #3C7191;
  background-color: #3C7191;
  color: #fff;
}
section .warning {
  font-weight: bold;
  padding: 6px 15px;
  border-radius: 5px;
  margin: 0 0 15px 0;
  font-family: 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid;
  border-color: #3C7191;
  background-color: #3C7191;
  color: #fff;
  border-color: #e7e646;
  background-color: #feffb0;
  color: #002A44;
}
section .error {
  font-weight: bold;
  padding: 6px 15px;
  border-radius: 5px;
  margin: 0 0 15px 0;
  font-family: 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px;
  border: 1px solid;
  border-color: #3C7191;
  background-color: #3C7191;
  border-color: #E74848;
  background-color: #f7554e;
  color: #fff;
  font-weight: 400;
}
section .message {
  color: #fff;
  background: #3C7191;
}
.container {
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hide {
  display: none;
}
#bottom {
  background: #fff;
}
#bottom .link {
  white-space: nowrap;
}
#bottom .fineprint {
  font-size: 82%;
  text-align: center;
  margin-top: 18px;
}
#bottom .short-statistics {
  gap: 32px;
}
#bottom .short-statistics > div {
  background: #F0F7FF;
  flex: 1;
  border-radius: 5px;
  padding: 25px;
  color: #002A43;
  font-size: 20px;
}
#bottom .short-statistics > div span {
  display: block;
  margin-bottom: 15px;
  font-size: 38px;
}
#bottom .short-statistics > div div {
  width: 150px;
  font-size: 18px;
  font-weight: 300;
}
/* Footer */
footer {
  background: #222426;
  color: #fff;
}
footer .flex.container div:nth-child(1) {
  flex: 1 1 20%;
  padding-top: 0;
  padding-left: 0;
}
footer .flex.container div:nth-child(2) {
  flex: 1 1 20%;
}
footer .flex.container div:nth-child(3) {
  flex: 2 1 30%;
}
footer .flex.container div:nth-child(4) {
  flex: 2 1 30%;
  border-right: none;
}
footer .flex.container #footer-logo {
  background: url(img/logo-hat.png);
  background-size: cover;
  width: 72px;
  height: 72px;
}
footer .flex.container .footer-list,
footer .flex.container .footer-icon {
  padding: 20px 50px 0 50px;
  border-right: 0.5px solid #5F5E77;
}
footer .flex.container .footer-list *,
footer .flex.container .footer-icon * {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 200;
}
footer .flex.container .footer-list a,
footer .flex.container .footer-icon a,
footer .flex.container .footer-list p,
footer .flex.container .footer-icon p,
footer .flex.container .footer-list .link,
footer .flex.container .footer-icon .link {
  color: #fff;
  margin-bottom: 15px;
}
footer .flex.container .footer-list p > a,
footer .flex.container .footer-icon p > a {
  width: auto;
  display: inline-block;
  margin-bottom: 0;
}
footer .flex.container .footer-list .bold,
footer .flex.container .footer-icon .bold {
  font-weight: 400;
}
footer .flex.container .footer-icon p {
  font-size: 14px;
  width: 200px;
}
#moveUp {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 60px;
  height: 100%;
  text-align: center;
  font: 18px Verdana;
  color: black;
  background: #E1E7ED;
  padding-top: 1em;
  opacity: 0.1;
  filter: alpha(opacity=10);
  cursor: pointer;
}
#moveUp:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
  background-color: #3C7191;
  color: white;
}
/**
 * Modules styles
 */
/** statistics*/
#statistics {
  border-top: 1px solid #ccc;
}
#statistics .container {
  position: static;
}
#statistics .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  /*		#vert_bar_chart_add,#hor_bar_chart_add,#hor_bar_chart_add2,#table-stateAgency,#table-legislationAreas!*,#table-regions*! {
			flex-basis: 100%;
		}*/
}
#statistics .flex .block-title {
  margin-bottom: 0;
}
#statistics .flex > div {
  border-radius: 5px;
  box-shadow: 0px 4px 25px 0px #B2B2B259;
  overflow: auto;
}
#statistics .flex > div .block-title {
  font-size: 24px;
  border-bottom: none;
  margin: 0;
  padding: 30px;
  width: inherit;
}
#statistics .flex #pie_chart {
  padding-bottom: 15px;
}
#statistics .flex #vert_bar_chart,
#statistics .flex #hor_bar_chart,
#statistics .flex #hor_bar_chart2 {
  flex-grow: 1;
}
#statistics .flex #table-stateAgency,
#statistics .flex #table-legislationAreas {
  padding: 20px;
}
#statistics .stat-filter-button {
  margin-bottom: 10px;
  margin-right: 6px;
}
#statistics .stat-filter-button span {
  margin-right: 0;
}
#statistics .stat-filters {
  display: flex;
  flex-wrap: wrap;
}
#statistics .stat-filters .accordion {
  flex-basis: 100%;
  margin: 10px 0 10px 0;
}
#statistics .stat-filters h3 {
  font-weight: bold;
  font-size: medium;
  line-height: 130%;
  margin: 0 0 0.5em 0;
  white-space: normal;
}
#statistics .stat-filters input {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  padding: 0.715em;
  outline: none;
  border: 1px solid #CCC;
  line-height: 130%;
  margin-right: 10px;
  margin-bottom: 10px;
  height: 36px;
}
#statistics .stat-filters .select2-container {
  width: 240px;
  height: 36px;
}
#statistics .stat-filters .select2-container.select2-container-active .select2-choice {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#statistics #map_img {
  display: flex;
  margin-bottom: 35px;
}
#statistics h5 {
  padding: 6px 0;
  margin-bottom: 6px;
}
#statistics #kazmap .kazmap-path {
  cursor: pointer;
  stroke: #fff;
  stroke-width: 1;
}
#statistics #kazmap .kazmap-path.highlighted {
  fill: #B0E3B3;
}
#statistics #kazmap .kazmap-path:hover {
  fill: #B0E3B3;
}
#statistics #kazmap text {
  z-index: 5;
  color: #4D6A80;
  cursor: pointer;
  font-size: 10px;
}
#statistics .tspan-rus,
#statistics .tspan-kaz {
  display: none;
}
#statistics .map-popup-info {
  display: none;
  position: absolute;
  background-color: #fff;
  color: #4D6A80;
  padding: 15px;
  box-shadow: 7px 4px 28.8px 0px #273A6059;
  border-radius: 5px;
  pointer-events: none;
  font-family: 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 12px;
  min-width: 250px;
  z-index: 3;
}
#statistics .map-popup-info h5 {
  padding-left: 0;
}
#statistics .map-popup-info .map-popup-statuses {
  margin-bottom: 15px;
}
#statistics .map-popup-info .map-popup-statuses .status-name {
  color: #4D6A80;
  font-size: 14px;
  margin-bottom: 5px;
}
#statistics .map-popup-info .map-popup-statuses .progress {
  height: 20px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #b3b3b3;
  position: relative;
  color: #fff;
  font-weight: bold;
}
#statistics .map-popup-info .map-popup-statuses .progress .progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  background-color: #337ab7;
  margin-right: 2px;
}
#statistics .map-popup-info .map-popup-full-count {
  margin-left: 2px;
}
#statistics #table-regions {
  max-height: 407px;
  min-height: 407px;
  padding: 20px;
  font-size: 14px;
  border-radius: 5px;
  box-shadow: 0px 4px 25px 0px #B2B2B259;
}
#statistics #pieChart,
#statistics #vert_bar_chart_add,
#statistics #hor_bar_chart_add,
#statistics #hor_bar_chart_add2 {
  cursor: pointer;
}
#statistics #vert_bar_chart_add,
#statistics #hor_bar_chart_add,
#statistics #hor_bar_chart_add2 {
  padding: 15px;
}
#statistics .legend-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
#statistics .legend-item {
  display: flex;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
#statistics .legend-color-box {
  width: 20px;
  height: 16px;
  margin-right: 6px;
}
#statistics .legend-item.strikethrough span {
  text-decoration: line-through;
  color: grey;
}
#statistics .dt-container {
  color: #474747;
}
#statistics .dt-column-title {
  font-weight: 400;
}
#statistics th.dt-orderable-asc.dt-orderable-desc:first-child {
  padding-left: 0;
}
#statistics .dt-search {
  width: 100%;
}
#statistics .dt-search .dt-input {
  width: 100%;
  background: #F6F6F6;
  border: 0;
}
#statistics .dt-input {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  padding: 0.715em;
  outline: none;
  border: 1px solid #CCC;
  line-height: 130%;
}
#statistics .dt-paging {
  margin-right: 6px;
}
#statistics div.dt-container .dt-paging .dt-paging-button:not(.disabled) {
  background: transparent;
  box-shadow: none;
}
#statistics div.dt-container .dt-paging .dt-paging-button:not(.disabled):hover,
#statistics div.dt-container .dt-paging .dt-paging-button:not(.disabled).current,
#statistics div.dt-container .dt-paging .dt-paging-button:not(.disabled):active {
  background: transparent;
  border: 1px solid #CCC;
  color: #000 !important;
  box-shadow: none;
}
#faq .faq-filters {
  margin: 0 0 10px 0;
  border: 1px #eee solid;
  padding: 10px 13px 0px 13px;
  border-radius: 5px;
}
#faq .faq-filters .accordion-tab > a {
  cursor: pointer;
}
#faq .faq-list {
  margin: 10px 0;
}
#faq .faq-list .faq-question {
  margin-right: 16px;
  font-size: 20px;
}
#faq .faq-list .faq-answer {
  font-size: 20px;
}
#faq .faq-list .faq-date {
  color: #ccc;
  font-size: 12px;
  margin-right: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}
#faq .button span {
  margin-right: 0;
  margin-bottom: 10px;
}
#faq .accordion .accordion-tab > a {
  cursor: pointer;
}
#faq .accordion p {
  margin-top: 10px;
}
#faq .faq-not-found {
  text-align: center;
  margin: 16px 0;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 10px;
}
#faq .button,
#faq .link-download {
  margin-right: 10px;
}
#faq .button-faq-change {
  background: #235c72;
  cursor: pointer;
  padding: 4px;
}
#faq .button-faq-delete {
  background: #e3433c;
  cursor: pointer;
  padding: 4px;
}
#faq-form {
  width: 600px;
}
#faq-form textarea {
  width: 100%;
  resize: none;
}
#faq-form textarea.faq-question-textarea {
  height: 60px;
}
#faq-form textarea.faq-answer-textarea {
  height: 100px;
}
#faq-form .select2-container {
  width: 100%;
  margin-bottom: 10px;
}
/** dashboard */
#dashboard .resetFilter {
  white-space: nowrap;
  border: none;
  color: #828282;
  cursor: inherit;
}
#dashboard .remove {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  padding: 0.3em 0.5em;
  color: #BA3B3B;
}
.searchblock {
  position: relative;
  margin: 30px 0 7px 0;
  font-size: 14px;
}
.searchblock .reset {
  float: left;
  width: 10em;
  position: absolute;
  left: 0;
  top: 0px;
  height: 2.7em;
}
.searchblock .reset .button {
  width: 100%;
  height: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.searchblock .bottom {
  text-align: center;
}
.searchblock .bottom .reset-second {
  display: none;
}
.searchblock .bottom .button {
  margin: 0 0.5em 0.5em 0;
  padding-top: 0.1em;
}
.searchblock .button {
  padding: 0 1em;
  font-size: 0.9em;
  line-height: 3.24em;
}
.searchblock .searchbar {
  position: relative;
  overflow: hidden;
  margin: 0 0 10px 10.5em;
}
.searchblock .searchbar input {
  width: 100%;
  height: 2.7em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0 0 10px;
  float: left;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px #CCC solid;
  border-radius: 3px;
  outline: none;
  font-size: inherit;
}
.searchblock .searchbar .button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 10.2em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#dashboard {
  /*	.kaz & .kaz { display: inline-block; }
	.eng & .eng { display: inline-block; }
	.rus & .rus { display: inline-block; }*/
}
#dashboard .treeSelect .scrollbox {
  height: 400px;
}
#dashboard .dateDescription {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  background: #002A44;
  color: #fff;
  font-size: 20px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  margin-bottom: 0;
  font-weight: 200;
  text-transform: capitalize;
  height: 55px;
  align-items: center;
  justify-content: center;
  width: 55px;
}
#dashboard .dateDescription:first-child {
  margin-left: 0;
}
#dashboard .dateDescription.kaz {
  width: inherit;
  padding: 0 10px;
}
#dashboard .dateDescription.kaz + input {
  width: 240px;
  padding-left: 102px;
}
#dashboard .dateDescription.kaz + input.second {
  width: 260px;
  padding-left: 122px;
}
#dashboard .dateDescription.eng {
  width: 55px;
  padding: 0 10px;
}
#dashboard .dateDescription.eng + input {
  width: 230px;
  padding-left: 92px;
}
#dashboard .dateDescription-smallScreen {
  margin-left: 0!important;
  width: 25px!important;
  text-align: left!important;
}
#dashboard .input-smallScreen {
  margin-bottom: 10px;
}
#dashboard .xdsoft_datetimepicker {
  vertical-align: top;
}
#dateOfAcceptance .date-of-acceptance {
  display: none;
}
#dateOfAcceptance .accordion-content {
  display: flex;
  justify-content: center;
  padding: 40px;
}
#dateOfAcceptance .accordion-content .flex {
  gap: 50px;
}
#dateOfAcceptance input {
  height: 55px;
  width: 200px;
  padding-left: 72px;
  font-size: 20px;
}
#dateOfAcceptance div.calendar-icon {
  background-image: url(img/clarity_calendar-line.svg);
  width: 45px;
  height: 45px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin-left: 15px;
}
#dateOfAcceptance div.calendar-icon:first-child {
  margin-right: 20px;
}
/** mode: viewer */
#viewerResults .filters {
  padding: 0.3em 0;
}
#viewerResults .filters .item {
  padding: 0.3em 0.5em;
  background-color: #FFF;
  border-radius: 4px;
  margin: 0 0.6em 0.6em 0;
  cursor: pointer;
  display: inline-block;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
  margin-right: 0;
}
#viewerResults .filters .search-params {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
#viewerResults .filters .search-params .sort-buttons {
  float: right;
}
#viewerResults .filters .search-params .sort-buttons span.sortBy {
  max-width: 400px;
  height: 16px;
  font-size: 11px;
}
#viewerResults .filters .search-params .sort-buttons span.sortBy span {
  margin-right: 0px;
}
#viewerResults input[type="radio"] {
  display: none;
}
#viewerResults input[type="radio"] + label.rbutton:before {
  content: '';
  display: inline-block;
  color: #BDBDBD;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #BDBDBD;
  border-radius: 2px;
  box-sizing: border-box;
  vertical-align: middle;
}
#viewerResults input[type="radio"]:checked + .rbutton:before {
  width: 20px;
  height: 20px;
  background: #002A44;
  border: 1px solid #002A44;
}
#viewerResults .searchbar {
  position: relative;
  overflow: hidden;
  margin: 5px 0 10px 0;
  max-width: 1020px;
  font-size: 14px;
}
#viewerResults .searchbar input {
  width: 100%;
  height: 2.4em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0 0 10px;
  float: left;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px #CCC solid;
  border-radius: 3px;
  outline: none;
  font-size: 12px;
}
#viewerResults .searchbar .button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 10.2em;
  height: 2.4em;
  line-height: 2.4em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 12px;
  padding-top: 0;
  padding-bottom: 0;
}
#viewerResults .searchbar .button .sb-label {
  font-size: 12px;
}
#viewerResults .limits,
#viewerResults .orders {
  margin: 1em 0 0;
  text-align: center;
}
#viewerResults .limits .delimiter:last-child,
#viewerResults .orders .delimiter:last-child {
  display: none;
}
#viewerResults .limits .link,
#viewerResults .orders .link {
  text-decoration: underline;
}
#viewerResults .limits .variants .link,
#viewerResults .orders .variants .link {
  text-decoration: none;
}
#viewerResults .orders {
  margin-top: 0;
}
#viewerResults .block-title {
  position: relative;
}
#viewerResults .block-title .block-filter-title {
  margin-bottom: 20px;
}
#viewerResults .block-title .result-filter {
  display: inline;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}
#viewerResults .block-title .result-filter:before {
  content: '';
  display: inline-block;
  height: 20px;
  width: 20px;
  background: url('img/filter.svg');
  background-size: cover;
  vertical-align: middle;
}
#viewerResults .block-title #result-filter-menu {
  display: none;
  padding: 20px;
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 14.4px 0px #86868640;
  margin-top: 15px;
  font-size: 18px;
  right: 0;
  left: 0;
  z-index: 1;
}
#viewerResults .block-title .result-filter-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
#viewerResults .block-title .result-filter-menu .result-sort {
  display: flex;
  gap: 20px;
}
#viewerResults .block-title .result-filter-menu .result-sort .result-filter-title {
  margin-left: 26px;
  margin-bottom: 10px;
  font-size: 20px;
}
#viewerResults .block-title .result-filter-menu .date-block input {
  width: 250px;
  border-radius: 5px;
  border: 1px solid #CCC;
}
#viewerResults .block-title .limits {
  margin: 0;
  font-size: 18px;
  display: inline;
  float: right;
}
.results article {
  border-bottom: 1px #BDBDBD solid;
  margin-bottom: 20px;
  background: #fff;
}
.results-doc-title .results article:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
}
.results article:last-child {
  border: none;
}
.results article .results-doc-title {
  font-size: 24px;
}
.results article a:visited {
  color: #a4c0d1;
}
.results article .index {
  font-size: 24px;
  color: #555;
}
.results article .yts {
  background-color: #3c7191;
  color: white;
  border: 1px solid #002a44;
  border-radius: 3px;
  font-size: 14px;
  padding: 0 8px;
  margin-top: 10px;
  line-height: 170%;
  display: inline-block;
}
.results article .icon-star {
  color: #3c7191;
}
/** mode viewer.search */
#viewerFilter .row {
  white-space: nowrap;
  margin: 0 0 1em 0;
}
#viewerFilter input {
  font-size: 18px;
}
#viewerFilter .button {
  font-size: 20px;
}
#viewerFilter > .block-title {
  padding: 0;
  margin: 20px 0;
}
#viewerFilter .left {
  display: inline-block;
  width: 49%;
  margin: 0 1% 0 0;
  vertical-align: top;
}
#viewerFilter .right {
  display: inline-block;
  width: 49%;
  vertical-align: top;
}
#viewerFilter .right .row {
  margin-top: 0.8em;
}
#viewerFilter .right .row:first-child {
  margin-top: 0;
}
#viewerFilter .scrollbox {
  height: 200px;
}
#viewerFilter .field-judicialAuthority .scrollbox,
#viewerFilter .field-actTypes .scrollbox {
  height: 168px;
}
#viewerFilter h3 {
  font-weight: bold;
  font-size: medium;
  line-height: 130%;
  margin: 0 0 0.5em 0;
  white-space: normal;
}
#viewerFilter .resetFilter {
  white-space: nowrap;
}
#viewerFilter .treeSelect {
  border: 1px solid #CCC;
  border-radius: 4px;
  padding: 5px;
}
#viewerFilter .treeSelect .filter {
  margin-bottom: 0.5em;
}
#viewerFilter .w2,
#viewerFilter .w3 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}
#viewerFilter .w2:first-child,
#viewerFilter .w3:first-child {
  margin-left: 0;
}
#viewerFilter input[type="text"],
#viewerFilter input[type="date"] {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  padding: 0.715em;
  outline: none;
  border: 1px solid #CCC;
  line-height: 130%;
}
#viewerFilter .rbutton {
  font-size: 18px;
  vertical-align: bottom;
}
#viewerFilter input[type="radio"] {
  vertical-align: middle;
  margin: 0 0.3em 0 0;
  display: none;
}
#viewerFilter input[type="radio"] + .rbutton {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  height: 22px;
}
#viewerFilter input[type="radio"] + .rbutton:before {
  content: '';
  display: inline-block;
  color: #BDBDBD;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #BDBDBD;
  border-radius: 2px;
  box-sizing: border-box;
  vertical-align: middle;
}
#viewerFilter input[type="radio"] + .rbutton span {
  vertical-align: middle;
}
#viewerFilter input[type="radio"]:checked + .rbutton:before {
  content: '';
  width: 20px;
  height: 20px;
  background: #002A44;
  border: 1px solid #002A44;
}
#viewerFilter .find-in {
  float: left;
}
#viewerFilter .find-in span {
  font-size: 20px;
}
#viewerFilter .find-in > span,
#viewerFilter .find-in .w2 {
  margin-right: 15px;
}
#viewerFilter select {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#viewerFilter .select2-container {
  width: 100%;
}
#viewerFilter .select2-container .select2-choice {
  height: auto;
}
#viewerFilter .select2-container .select2-choice .select2-arrow b {
  background-position: 0 6px;
}
#viewerFilter .select2-container .select2-choice abbr {
  top: 0;
}
#viewerFilter .select2-container .select2-chosen {
  padding-top: 0.715em;
  padding-bottom: 0.715em;
  line-height: 130%;
}
#viewerFilter .button {
  margin: 0 0 0.5em 0;
}
#viewerFilter .button.right-side {
  float: right;
}
#viewerFilter .button.right-side + .right-side {
  margin-right: 20px;
}
#viewerFilter .flex-titles {
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 30px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #BDBDBD;
  margin-bottom: 20px;
}
#viewerFilter .flex-titles .search-title,
#viewerFilter .flex-titles .search-exclude {
  flex-basis: 50%;
}
#viewerFilter .flex-titles .search-title input,
#viewerFilter .flex-titles .search-exclude input {
  border-color: #002A44;
}
#viewerFilter .flex-titles .search-title input::placeholder,
#viewerFilter .flex-titles .search-exclude input::placeholder {
  color: #002A44;
}
#viewerFilter .search-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 4px 4px 20.1px 0px #A8A8A840;
  border-radius: 5px;
  gap: 32px;
}
#viewerFilter .search-block .marg {
  margin-top: 42px;
}
#viewerFilter .search-block .search-left-block,
#viewerFilter .search-block .search-right-block {
  flex-basis: calc(50% - 16px);
}
#viewerFilter .search-block .search-full-block {
  flex-basis: 100%;
}
#viewerFilter .search-block .statuses-block {
  width: 100%;
  gap: 20px;
  margin-bottom: 20px;
}
#viewerFilter .search-block .statuses-block .w2 {
  width: calc(50% - 10px);
}
#viewerFilter .search-block .treeSelect {
  border: none;
  padding: 0;
}
#viewerFilter .search-block .treeSelect .scrollbox {
  height: 350px;
}
#viewerFilter .search-block .treeSelect input {
  margin-bottom: 20px;
}
#viewerFilter .search-block .tree-options {
  display: flex;
  justify-content: space-between;
}
#viewerFilter .search-block .tree-options .search-block-title {
  font-size: 20px;
  margin-bottom: 20px;
}
#viewerFilter .search-block .tree-options .resetFilter {
  color: #828282;
}
#viewerFilter .search-block .tree-options .tree-reset {
  color: #424B5A;
  cursor: pointer;
  text-decoration: underline;
}
#viewerFilter .search-mini-block {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 4px 4px 20.1px 0px #A8A8A840;
  border-radius: 5px;
}
#viewerFilter .search-mini-block .search-block-title {
  font-size: 20px;
  margin-bottom: 20px;
}
#viewerFilter .align-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
  flex-direction: row;
  display: flex;
  justify-content: space-between;
}
.date-between {
  display: flex;
  gap: 20px;
  margin: 35px 0;
}
.date-between .date-block {
  flex-basis: calc(50% - 10px);
}
.date-block {
  position: relative;
}
.date-block:before {
  content: '';
  background-image: url(img/clarity_calendar-line.svg);
  background-size: cover;
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 8px;
}
.date-block input {
  height: 50px;
  width: 100%;
  padding-left: 72px!important;
  font-size: 20px;
  box-sizing: border-box;
}
.date-block .content-date-title {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  background: #002A44;
  color: #fff;
  font-size: 20px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  margin-bottom: 0;
  font-weight: 200;
  text-transform: capitalize;
  height: 50px;
  align-items: center;
  justify-content: center;
  width: 55px;
}
.date-block .content-date-title.kaz {
  width: inherit;
  padding: 0 4px;
}
.date-block .content-date-title.kaz + input {
  padding-left: 80px!important;
}
.date-block .content-date-title.kaz.second + input {
  padding-left: 102px!important;
}
/** viewer.metadata */
#access .form-simple {
  margin: 0 0 1em 0;
}
#accessProfile .form-simple {
  margin: 0 0 1em 0;
}
#accessProfile .select2-container {
  width: 240px;
}
#accessProfile input[type="text"],
#accessProfile input[type="password"] {
  width: 240px;
}
#accessProfile .block-title {
  font-size: 22px;
}
#accessProfile .block-title .edit-profile {
  font-size: 20px;
  color: #828282;
  cursor: pointer;
  float: right;
}
#accessProfile .block-title .edit-profile:before {
  content: '';
  background: url(img/edit.svg);
  background-size: cover;
  display: inline-block;
  height: 24px;
  width: 24px;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -3px;
}
.result-read {
  display: block;
  margin: 20px 0;
  cursor: pointer;
  color: #424B5A !important;
  font-size: 20px;
  font-weight: 400;
}
.result-read:after {
  content: '\e808';
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  font-size: 20px;
}
.shadow-block {
  padding: 40px 30px;
  box-shadow: 3px 4px 17.3px 0px #9B9B9B40;
  border-radius: 10px;
}
.profile-list-title {
  font-size: 20px;
  margin-left: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}
.profile-list {
  max-height: 650px;
  overflow-y: auto;
}
.profile-list .profile-list-item {
  border-bottom: 1px solid #BDBDBD;
  margin-bottom: 20px;
  margin-right: 30px;
}
.profile-list .profile-list-item .profile-doc-options {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  padding-left: 0;
  padding-top: 2px;
  position: relative;
}
.profile-list .profile-list-item .profile-doc-options .profile-doc-summary {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 400px;
}
.profile-list .profile-list-item .profile-doc-options .profile-doc-summary + .profile-doc-summary {
  font-size: 10px;
}
.profile-list .profile-list-item .profile-doc-options .profile-commentary {
  flex: 1;
}
.profile-list .profile-list-item .profile-doc-read .result-read {
  font-size: 16px;
  margin-top: 0;
}
.profile-list .profile-list-item:last-child {
  border-bottom: none;
}
#accessHistory .profile-doc-summary {
  width: 350px;
}
.icon-cancel:hover:before {
  background: #424B5A;
  color: #fff;
}
#accessCommentaries .profile-list {
  height: auto;
  padding-right: 10px;
}
#accessCommentaries .profile-list .profile-list-item .profile-doc-options {
  width: 100%;
  padding: 0;
}
#accessCommentaries .profile-list .profile-list-item .profile-doc-options a {
  font-size: 18px;
}
#accessCommentaries .profile-list .profile-list-item .profile-doc-options ul {
  padding: 10px;
  margin: 10px;
  margin-right: 30px;
}
#accessCommentaries .profile-list .profile-list-item .profile-doc-options ul li {
  padding: 10px;
}
#accessCommentaries .profile-list .profile-list-item .profile-doc-options ul li:not(:last-child) {
  border-bottom: 1px solid #bdbdbd;
}
#accessCommentaries .profile-list .profile-list-item .profile-doc-options ul li .remove.icon-cancel {
  cursor: pointer;
}
#accessCommentaries .profile-list .profile-list-item:last-child {
  margin-bottom: 0;
}
#favorites .categories {
  margin: 0 0 1em 0;
}
#favorites .categories .button {
  margin-right: 0.4em;
}
#favorites .categories .button .icon-ok,
#favorites .categories .button .icon-cancel,
#favorites .categories .button .icon-edit {
  color: #333;
}
#favorites .categories .button .icon-ok:hover,
#favorites .categories .button .icon-cancel:hover,
#favorites .categories .button .icon-edit:hover {
  cursor: pointer;
  color: #3c7191;
}
#favorites .categories .button .icon-ok:last-child,
#favorites .categories .button .icon-cancel:last-child,
#favorites .categories .button .icon-edit:last-child {
  margin-right: 0;
}
#favorites .icon-ok,
#favorites .icon-cancel,
#favorites .icon-edit {
  color: #333;
}
#favorites .icon-ok:hover,
#favorites .icon-cancel:hover,
#favorites .icon-edit:hover {
  cursor: pointer;
  color: #3c7191;
}
#favorites .icon-ok:last-child,
#favorites .icon-cancel:last-child,
#favorites .icon-edit:last-child {
  margin-right: 0;
}
#favorites .category {
  margin-bottom: 5px;
}
#favorites .category input {
  margin: 0 5px 0 0;
  padding: 0 5px;
}
#favorites .category .icon-edit,
#favorites .category .icon-ok {
  margin-right: 5px;
  position: relative;
  top: 1px;
}
#favorites .category .label:last-child {
  margin-right: 0;
}
#favorites .icon-check-empty,
#favorites .icon-ok-squared {
  cursor: pointer;
}
#favorites .category-renaming {
  margin: 0 5px 0 0;
}
#favorites .category-renaming input {
  height: 25px;
  width: 10em;
  margin: 3px 5px 0 0;
  padding: 0 5px;
}
#favorites .category-renaming .validationMessage {
  position: absolute;
  margin: 9px 0 0 -24px;
  white-space: nowrap;
  overflow: hidden;
  width: 16px;
  cursor: pointer;
}
#favorites .category-renaming .validationMessage:before {
  font-family: "fontello";
  content: '\e854';
  font-style: normal;
  speak: 0;
  color: #BA3B3B;
  margin: 0 8px 0 0;
}
#favorites .category-renaming .validationMessage:hover {
  width: auto;
  white-space: normal;
  background-color: #BA3B3B;
  color: white;
  padding: 5px;
  z-index: 2;
  text-align: left;
  border-radius: 4px;
  text-transform: none;
}
#favorites .category-renaming .validationMessage:hover:before {
  color: white;
}
#favorites .category-renaming [class^="icon"] {
  cursor: pointer;
}
#favorites .table {
  margin: 0 0 1em 0;
}
#favorites .table .remove,
#favorites .table .cbox {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  padding: 0.5em 0.9em;
}
#favorites .table .remove {
  color: #BA3B3B;
}
#favorites .table .selected {
  background-color: #E5F3F4;
}
#favorites .movePanel {
  text-align: right;
  margin-top: 10px;
}
#favorites .movePanel select {
  margin: 0 0.5em 0 0;
  padding: 0 1em;
  width: 20em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  height: 30px;
  border-radius: 3px;
  border: 1px solid #CCC;
  cursor: pointer;
}
#favorites .movePanel .button {
  padding: 0 1em;
  height: 30px;
  line-height: 30px;
  margin: 0 0 0.5em 0;
}
#viewerDoc .docIndex .index-item {
  line-height: 2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#viewerDoc .docIndex .index-item:before {
  content: '•';
  margin: 0 0.4em 0 0;
}
#viewerDoc .docIndex [data-level="2"] {
  margin-left: 1em;
}
#viewerDoc .docIndex [data-level="3"] {
  margin-left: 2em;
}
#viewerDoc .docIndex [data-level="4"] {
  margin-left: 3em;
}
#viewerDoc .docIndex [data-level="5"] {
  margin-left: 4em;
}
#viewerDoc .docIndex [data-level="6"] {
  margin-left: 5em;
}
#viewerDoc .docIndex [data-level="7"] {
  margin-left: 6em;
}
#viewerDoc .docIndex [data-level="8"] {
  margin-left: 7em;
}
#viewerDoc .docIndex [data-level="9"] {
  margin-left: 8em;
}
#viewerDoc .block-title {
  margin: 0;
}
#viewerDoc .requisites {
  color: #777;
  font-size: 0.9em;
}
#viewerDoc .documentContent {
  /*		a {
			color: black;
			text-decoration: none;
			cursor: default;
		}*/
}
#viewerDoc .documentContent .toc {
  margin: 0 0 1em 0;
}
#viewerDoc .documentContent .toc .toc_label {
  cursor: pointer;
  display: block;
  font-weight: bold;
  padding: 6px 15px;
  border-radius: 5px;
  margin: 0 0 15px 0;
  font-family: 'Inter', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid;
  border-color: #3C7191;
  background-color: #3C7191;
  color: #fff;
  text-transform: capitalize;
}
#viewerDoc .documentContent .toc .toc_label:hover {
  border-color: #569ca5;
}
#viewerDoc .documentContent .toc .toc_label:after {
  content: '\e808';
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  position: relative;
  top: -1px;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  margin: 0 0 0 0.5em;
  transform: rotate(90deg);
}
#viewerDoc .documentContent .toc.opened .toc_label {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#viewerDoc .documentContent .toc.opened .toc_label:after {
  transform: rotate(-90deg) /*none;*/;
}
#viewerDoc .documentContent .toc.opened .toc_list {
  display: block;
}
#viewerDoc .documentContent .toc .toc_list {
  display: none;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}
#feedbackDialog {
  max-width: 640px;
}
#feedbackDialog input {
  width: 240px;
}
#feedbackDialog input.fullsize {
  width: 100%;
}
#feedbackDialog textarea {
  width: 100%;
}
#feedbackDialog textarea + .validationMessage {
  width: 100%;
  margin: 0 0 1em 0;
}
#feedbackDialog #arg {
  display: none;
}
#authDialog {
  width: 450px;
  height: 530px;
}
#authDialog .auth-top {
  display: flex;
  height: 130px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#authDialog .messages {
  min-height: 35px;
  max-height: 110px;
  overflow: auto;
  margin-bottom: 10px;
  width: 100%;
}
#authDialog .messages .message,
#authDialog .messages .error {
  margin-bottom: 0;
}
#authDialog h1 {
  cursor: inherit;
  color: #002A44;
  font-weight: 600;
  text-align: center;
  font-size: 28px;
}
#authDialog .form-simple {
  font-size: 16px;
  text-align: center;
}
#authDialog .form-simple input {
  height: 34px;
  border: none;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 10px;
  border-radius: 0;
  width: 312px;
  padding-left: 0;
  padding-right: 0;
}
#authDialog .form-simple input:focus {
  border: none;
  border-bottom: 1px solid #E0E0E0;
  box-shadow: none;
}
#authDialog .form-simple input:-webkit-autofill {
  background: #FFF !important;
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}
#authDialog .form-simple .relative .validationMessage {
  display: inline-block;
  width: 300px;
  margin: 0 0 0 15px;
  color: #BA3B3B;
  position: absolute;
  right: 0;
  bottom: -9px;
  font-size: 14px;
  z-index: 1;
  margin-left: 2px;
}
#authDialog .form-simple .button {
  margin-top: 60px;
  font-weight: 500;
  padding: 14px 32px;
  border-color: #3C7191;
  background-color: #3C7191;
}
#authDialog .bottom-links {
  margin-top: 10px;
}
#authDialog .bottom-links .link {
  color: #828282;
  text-decoration: underline;
}
#authDialog .bottom-links a.link {
  color: #002A44;
  margin-top: 40px;
  display: block;
}
#registerDialog,
#profileDialog {
  width: 450px;
  height: 700px;
}
#registerDialog .auth-top,
#profileDialog .auth-top {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#registerDialog .messages,
#profileDialog .messages {
  min-height: 35px;
  max-height: 110px;
  width: 100%;
  overflow: auto;
  margin-bottom: 10px;
}
#registerDialog .messages .message,
#profileDialog .messages .message,
#registerDialog .messages .error,
#profileDialog .messages .error {
  margin-bottom: 0;
}
#registerDialog h1,
#profileDialog h1 {
  cursor: inherit;
  color: #002A44;
  font-weight: 600;
  text-align: center;
  font-size: 28px;
}
#registerDialog .form-simple,
#profileDialog .form-simple {
  font-size: 16px;
  text-align: center;
  height: 435px;
  overflow-y: auto;
}
#registerDialog .form-simple input[type=checkbox],
#profileDialog .form-simple input[type=checkbox] {
  display: none;
}
#registerDialog .form-simple input[type=checkbox] + label.checkbox:before,
#profileDialog .form-simple input[type=checkbox] + label.checkbox:before {
  content: ' ';
  display: inline-block;
  color: #BDBDBD;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #BDBDBD;
  border-radius: 2px;
  box-sizing: border-box;
  vertical-align: middle;
  margin-bottom: 3px;
}
#registerDialog .form-simple input[type=checkbox]:checked + label.checkbox:before,
#profileDialog .form-simple input[type=checkbox]:checked + label.checkbox:before {
  background: #002A44;
  border-color: #002A44;
}
#registerDialog .form-simple label.checkbox,
#profileDialog .form-simple label.checkbox {
  display: inline-block;
  vertical-align: middle;
}
#registerDialog .form-simple input:not([type=checkbox]),
#profileDialog .form-simple input:not([type=checkbox]) {
  height: 34px;
  border: none;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 10px;
  border-radius: 0;
  width: 312px;
  padding-left: 0;
  padding-right: 0;
}
#registerDialog .form-simple input:not([type=checkbox]):focus,
#profileDialog .form-simple input:not([type=checkbox]):focus {
  border: none;
  border-bottom: 1px solid #E0E0E0;
  box-shadow: none;
}
#registerDialog .form-simple input:not([type=checkbox]):-webkit-autofill,
#profileDialog .form-simple input:not([type=checkbox]):-webkit-autofill {
  background: #FFF !important;
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}
#registerDialog .form-simple .relative .validationMessage,
#profileDialog .form-simple .relative .validationMessage {
  display: inline-block;
  width: 300px;
  margin: 0 0 0 15px;
  color: #BA3B3B;
  text-align: right;
  font-size: 14px;
  z-index: 1;
  position: relative;
  top: -9px;
  right: 0;
}
#registerDialog .form-simple .button,
#profileDialog .form-simple .button {
  margin-top: 10px;
  font-weight: 500;
  padding: 14px 32px;
  border-color: #3C7191;
  background-color: #3C7191;
}
#registerDialog .form-simple .button:hover,
#profileDialog .form-simple .button:hover {
  background: #4b8db5;
}
#registerDialog .bottom-links,
#profileDialog .bottom-links {
  margin-top: 10px;
}
#registerDialog .bottom-links .link,
#profileDialog .bottom-links .link {
  color: #828282;
  text-decoration: underline;
}
#registerDialog .bottom-links a.link,
#profileDialog .bottom-links a.link {
  color: #002A44;
  display: block;
}
#profileDialog .prop {
  margin-top: 20px;
}
#commentaryDialog {
  max-width: 380px;
}
#commentaryDialog textarea {
  width: 100%;
  height: 100px;
  resize: none;
  margin-bottom: 10px;
}
#commentaryDialog .form-simple {
  width: 100%;
}
#commentaryDialog .validationMessage {
  display: none;
}
.articleContent h2,
.articleContent h3 {
  margin: 1em 0;
}
.articleContent p {
  margin: 1em 0;
}
.articleContent ul {
  list-style-type: disc;
  padding: 0 0 0 2em;
  margin: 1em 0;
}
.articleContent ul li {
  display: list-item;
}
.calendar-table {
  width: 100%;
  margin-bottom: 1.5em;
}
.calendar-table th,
.calendar-table td {
  text-align: center;
}
.calendar-table th:not(:last-child) {
  border-right-color: #BBBBBB;
}
.calendar-table .inactive {
  background-color: #fBfdfd;
}
.calendar-table .inactive .calendar-day {
  display: none;
}
.calendar-table .calendar-day {
  font-size: 20px;
  color: #424B5A;
}
.calendar-table .calendar-count {
  display: inline-block;
  font-size: 16px;
  line-height: 100%;
}
.calendar-table td {
  padding: 0;
  height: 8.5em;
  width: 14.4%;
}
.calendar-table .calendar-empty,
.calendar-table .calendar-link {
  padding: 0.5em 0.3em 0;
  margin-top: 5px;
  width: 100%;
  /*min-height: 4.5em;*/
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.calendar-table .calendar-link {
  display: block;
  cursor: pointer;
  /*&:hover, &:active { background: @lightBgC; }*/
}
.calendar-table .calendar-link + .calendar-link {
  padding-bottom: 5px;
}
#accessRecovery .form-simple input {
  margin-right: 0.5em;
  padding-top: 8px;
  padding-bottom: 8px;
}
body.vip {
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 50%;
}
body.vip #moveUp {
  display: none !important;
}
.icon-loading {
  background-image: url('img/ajax-loader.gif');
  background-repeat: no-repeat;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}
.select2-results .select2-highlighted {
  color: #fff;
  background: #3c7191;
  box-shadow: none;
}
@media print {
  html,
  body {
    background-color: white;
  }
  body {
    font-family: Times, 'Times New Roman', serif;
    color: #000;
  }
  .breadcrumbs,
  .info,
  .message,
  .error {
    display: none;
  }
  .noprint {
    display: none !important;
  }
  .print,
  .onlyprint {
    display: block;
  }
  #viewerDoc .line > .container {
    padding: 0;
  }
  section .message,
  .yts {
    background-color: #F0F0F0;
    color: #333;
    border: 0;
    border-bottom: 1px solid #CCC;
    border-radius: 0;
    padding: 0 1em;
    line-height: 150%;
    text-align: center;
    margin: 0 0 0.4em 0;
  }
  .mdHeader {
    font-size: 8pt;
    line-height: 1;
  }
  .mdHeader .first-row {
    position: relative;
    overflow: hidden;
    padding: 0 0 1em 0;
    border-bottom: 2px solid #333;
    margin: 0 0 2em 0;
  }
  .mdHeader .first-row img {
    position: absolute;
    top: 50%;
    margin-top: -17px;
  }
  .mdHeader .first-row .md-desc {
    margin: 0 15em 0 120px;
    padding: 0 1em 0 0;
  }
  .mdHeader .md-dates {
    float: right;
    width: 15em;
  }
  .mdHeader .md-dates label {
    display: inline-block;
    width: 9.5em;
  }
  .mdHeader table {
    width: 100%;
    margin: 0 0 1em 0;
  }
  .mdHeader table td {
    padding: 5px;
    text-align: center;
    width: 30%;
  }
  .mdHeader table td + td {
    width: auto;
  }
  .mdHeader table td + td + td {
    width: 30%;
  }
  .qrCodes {
    margin-top: 1em;
    border-top: 2px solid #333;
    padding-top: 1em;
    overflow: hidden;
    font-size: 8pt;
    line-height: 1;
  }
  .qrCodes .qr-code {
    height: 2.4cm;
    margin: 0 0.15cm 0 0;
  }
  .qrCodes .qr-sign {
    overflow: hidden;
  }
  .qrCodes .qr-sign .qr-list {
    line-height: 0;
    margin: 0 0 0.2cm 0;
  }
  .qrCodes .qr-link {
    text-align: right;
    float: right;
  }
  .documentContent .table-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .documentContent .documentContent img {
    -fs-fit-images-to-width: 100%;
  }
  .documentContent .pre > div,
  .documentContent table {
    font-size: 8.5pt;
  }
  .line.dark-grey {
    background-color: transparent;
  }
  #viewerResults .results article {
    padding: 1em 0;
    margin: 0;
  }
  @page {
    margin: auto 1.5cm auto 2.5cm;
  }
}
.mobile #moveUp {
  display: none !important;
}
.mobile section .breadcrumbs {
  margin-bottom: 1em;
}
.mobile section .breadcrumbs .bcItem {
  display: inline-block;
  background-color: #FAFAFA;
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 0.5em;
}
.mobile section .dark-grey .breadcrumbs .bcItem {
  background-color: #EFEAEA;
}
.mobile .popup {
  max-height: 100%;
  overflow-y: scroll;
}
.rules1000 #moveUp {
  width: 40px;
}
.rules1000 .two-lang {
  display: block;
  margin-right: 0;
  /*.second-doc {
			display: none;
		}*/
}
.rules1000 .two-lang .first-doc,
.rules1000 .two-lang .second-doc {
  padding-top: 0;
  max-height: none;
  /*overflow-y: auto;*/
}
.rules1000 #logo {
  display: none;
}
.rules1000 .header-menu .flex {
  flex-wrap: wrap;
}
.rules1000 .header-menu .flex .header-search a {
  display: none;
}
.rules1000 .header-menu .flex .callback {
  text-align: center;
  width: 100%;
  margin-top: 10px;
}
.rules1000 .header-menu .flex .callback span {
  width: 100%;
}
.rules1000 .header-links {
  width: 100%;
  flex-basis: 100%;
  text-align: center;
  margin: 10px 0;
}
.rules1000 #dashboardSlider .main-slide {
  padding: 10px 0;
}
.rules1000 #dashboardSlider .main-slide .flex {
  flex-wrap: wrap;
}
.rules1000 #dashboardSlider .main-slide .main-titles {
  width: 100%;
  text-align: center;
}
.rules1000 #dashboardSlider .main-slide .main-titles div {
  width: 100%;
}
.rules1000 #dashboardSlider .main-slide .dashboard-right {
  flex-basis: 100%;
  margin-top: 15px;
}
.rules1000 .date-block input {
  font-size: 16px!important;
}
.rules1000 .date-block:before {
  display: none;
}
.rules1000 .additional-dashboard-menu {
  flex-wrap: wrap;
}
.rules1000 .additional-dashboard-menu .popular-list {
  flex-basis: 100%;
  margin-right: 0;
}
.rules1000 .additional-dashboard-menu .dashboard-calendar {
  flex-basis: 100%;
  margin-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .no-vip #moveUp {
    width: 40px;
  }
  .no-vip .two-lang {
    display: block;
    margin-right: 0;
    /*.second-doc {
			display: none;
		}*/
  }
  .no-vip .two-lang .first-doc,
  .no-vip .two-lang .second-doc {
    padding-top: 0;
    max-height: none;
    /*overflow-y: auto;*/
  }
  .no-vip #logo {
    display: none;
  }
  .no-vip .header-menu .flex {
    flex-wrap: wrap;
  }
  .no-vip .header-menu .flex .header-search a {
    display: none;
  }
  .no-vip .header-menu .flex .callback {
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }
  .no-vip .header-menu .flex .callback span {
    width: 100%;
  }
  .no-vip .header-links {
    width: 100%;
    flex-basis: 100%;
    text-align: center;
    margin: 10px 0;
  }
  .no-vip #dashboardSlider .main-slide {
    padding: 10px 0;
  }
  .no-vip #dashboardSlider .main-slide .flex {
    flex-wrap: wrap;
  }
  .no-vip #dashboardSlider .main-slide .main-titles {
    width: 100%;
    text-align: center;
  }
  .no-vip #dashboardSlider .main-slide .main-titles div {
    width: 100%;
  }
  .no-vip #dashboardSlider .main-slide .dashboard-right {
    flex-basis: 100%;
    margin-top: 15px;
  }
  .no-vip .date-block input {
    font-size: 16px!important;
  }
  .no-vip .date-block:before {
    display: none;
  }
  .no-vip .additional-dashboard-menu {
    flex-wrap: wrap;
  }
  .no-vip .additional-dashboard-menu .popular-list {
    flex-basis: 100%;
    margin-right: 0;
  }
  .no-vip .additional-dashboard-menu .dashboard-calendar {
    flex-basis: 100%;
    margin-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 2000px) {
  .vip #moveUp {
    width: 40px;
  }
  .vip .two-lang {
    display: block;
    margin-right: 0;
    /*.second-doc {
			display: none;
		}*/
  }
  .vip .two-lang .first-doc,
  .vip .two-lang .second-doc {
    padding-top: 0;
    max-height: none;
    /*overflow-y: auto;*/
  }
  .vip #logo {
    display: none;
  }
  .vip .header-menu .flex {
    flex-wrap: wrap;
  }
  .vip .header-menu .flex .header-search a {
    display: none;
  }
  .vip .header-menu .flex .callback {
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }
  .vip .header-menu .flex .callback span {
    width: 100%;
  }
  .vip .header-links {
    width: 100%;
    flex-basis: 100%;
    text-align: center;
    margin: 10px 0;
  }
  .vip #dashboardSlider .main-slide {
    padding: 10px 0;
  }
  .vip #dashboardSlider .main-slide .flex {
    flex-wrap: wrap;
  }
  .vip #dashboardSlider .main-slide .main-titles {
    width: 100%;
    text-align: center;
  }
  .vip #dashboardSlider .main-slide .main-titles div {
    width: 100%;
  }
  .vip #dashboardSlider .main-slide .dashboard-right {
    flex-basis: 100%;
    margin-top: 15px;
  }
  .vip .date-block input {
    font-size: 16px!important;
  }
  .vip .date-block:before {
    display: none;
  }
  .vip .additional-dashboard-menu {
    flex-wrap: wrap;
  }
  .vip .additional-dashboard-menu .popular-list {
    flex-basis: 100%;
    margin-right: 0;
  }
  .vip .additional-dashboard-menu .dashboard-calendar {
    flex-basis: 100%;
    margin-top: 15px;
    padding-bottom: 15px;
  }
}
.rules850 #dashboardSlider #slider .item {
  padding: 20px 0;
}
.rules850 #dashboardSlider #slider .icons {
  display: none;
}
.rules850 .container {
  padding: 15px 20px;
}
.rules850 section .info .info-desc {
  display: inline-block;
  margin-bottom: 10px;
}
.rules850 header #logo {
  width: 29.33333333px;
  height: 29.33333333px;
  top: 16px;
  background-size: contain;
}
.rules850 header .headerTitle {
  margin: 2em 0 0 0;
}
.rules850 #topMenu {
  float: none;
  width: auto;
}
.rules850 #topMenu ul li,
.rules850 #topMenu ul li:first-child {
  border-radius: 0;
  padding: 0;
  border: 0;
  margin: 0 5px 5px 0;
}
.rules850 #topMenu ul li a,
.rules850 #topMenu ul li:first-child a {
  padding: 7px 12px;
  border-radius: 4px;
  display: inline-block;
  background-color: #FAFAFA;
}
.rules850 #topMenu span {
  padding: 7px 12px;
  border-radius: 4px;
  display: inline-block;
  color: #000;
}
.rules850 #topMenu span.link {
  background-color: #FAFAFA;
  color: #32acdd;
}
.rules850 #topMenu span.icon-eye-off,
.rules850 #topMenu span.icon-eye {
  background-color: #FAFAFA;
  color: #000;
}
.rules850 #topMenu span.link:hover,
.rules850 #topMenu span.icon-eye-off:hover,
.rules850 #topMenu span.icon-eye:hover {
  color: #5ebee4;
}
.rules850 #topMenu #accessMenu,
.rules850 #topMenu ul {
  display: inline-block;
}
.rules850 #viewerFilter .left {
  width: 48%;
  margin-right: 3.75%;
}
.rules850 #viewerFilter .right {
  width: 48%;
}
.rules850 #viewerFilter .w2 {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
}
.rules850 #viewerFilter .align-end {
  display: block;
}
.rules850 #viewerFilter .align-end .w2 {
  margin-bottom: 10px;
}
.rules850 .shadow-block {
  padding: 15px;
}
.rules850 .flex-half {
  width: 100%;
  flex-basis: 100%;
  margin: 0 10px;
}
.rules850 .profile-list-title {
  margin-left: 0;
}
.rules850 .profile-list .profile-list-item {
  margin-right: 5px;
}
.rules850 .popup {
  width: 100%;
}
.rules850 #moveUp {
  width: 30px;
}
.rules850 .portal-table {
  width: auto;
  display: block;
  overflow: auto;
}
.rules850 #header {
  flex-wrap: wrap;
}
.rules850 #header .headerTitle {
  margin: 0;
  width: 100%;
}
.rules850 #header .right-wrapper {
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
}
.rules850 #header-search {
  width: 100%;
}
.rules850 .header-search {
  width: 100%;
}
.rules850 .header-search a {
  display: none;
}
.rules850 .short-statistics {
  flex-wrap: wrap;
}
.rules850 .main-title-text {
  display: none;
}
.rules850 footer .flex .footer-icon {
  display: none;
}
.rules850 footer .flex .footer-list {
  border: none;
  padding: 0;
}
.rules850 #dateOfAcceptance .flex {
  flex-wrap: wrap;
}
.rules850 #dateOfAcceptance .flex input {
  width: 100%;
}
.rules850 #dateOfAcceptance .flex input.second {
  width: 100%;
}
.rules850 #dateOfAcceptance .flex .calendar-icon {
  display: none;
}
@media screen and (max-width: 850px) {
  .no-vip #dashboardSlider #slider .item {
    padding: 20px 0;
  }
  .no-vip #dashboardSlider #slider .icons {
    display: none;
  }
  .no-vip .container {
    padding: 15px 20px;
  }
  .no-vip section .info .info-desc {
    display: inline-block;
    margin-bottom: 10px;
  }
  .no-vip header #logo {
    width: 29.33333333px;
    height: 29.33333333px;
    top: 16px;
    background-size: contain;
  }
  .no-vip header .headerTitle {
    margin: 2em 0 0 0;
  }
  .no-vip #topMenu {
    float: none;
    width: auto;
  }
  .no-vip #topMenu ul li,
  .no-vip #topMenu ul li:first-child {
    border-radius: 0;
    padding: 0;
    border: 0;
    margin: 0 5px 5px 0;
  }
  .no-vip #topMenu ul li a,
  .no-vip #topMenu ul li:first-child a {
    padding: 7px 12px;
    border-radius: 4px;
    display: inline-block;
    background-color: #FAFAFA;
  }
  .no-vip #topMenu span {
    padding: 7px 12px;
    border-radius: 4px;
    display: inline-block;
    color: #000;
  }
  .no-vip #topMenu span.link {
    background-color: #FAFAFA;
    color: #32acdd;
  }
  .no-vip #topMenu span.icon-eye-off,
  .no-vip #topMenu span.icon-eye {
    background-color: #FAFAFA;
    color: #000;
  }
  .no-vip #topMenu span.link:hover,
  .no-vip #topMenu span.icon-eye-off:hover,
  .no-vip #topMenu span.icon-eye:hover {
    color: #5ebee4;
  }
  .no-vip #topMenu #accessMenu,
  .no-vip #topMenu ul {
    display: inline-block;
  }
  .no-vip #viewerFilter .left {
    width: 48%;
    margin-right: 3.75%;
  }
  .no-vip #viewerFilter .right {
    width: 48%;
  }
  .no-vip #viewerFilter .w2 {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    margin-left: 0;
  }
  .no-vip #viewerFilter .align-end {
    display: block;
  }
  .no-vip #viewerFilter .align-end .w2 {
    margin-bottom: 10px;
  }
  .no-vip .shadow-block {
    padding: 15px;
  }
  .no-vip .flex-half {
    width: 100%;
    flex-basis: 100%;
    margin: 0 10px;
  }
  .no-vip .profile-list-title {
    margin-left: 0;
  }
  .no-vip .profile-list .profile-list-item {
    margin-right: 5px;
  }
  .no-vip .popup {
    width: 100%;
  }
  .no-vip #moveUp {
    width: 30px;
  }
  .no-vip .portal-table {
    width: auto;
    display: block;
    overflow: auto;
  }
  .no-vip #header {
    flex-wrap: wrap;
  }
  .no-vip #header .headerTitle {
    margin: 0;
    width: 100%;
  }
  .no-vip #header .right-wrapper {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }
  .no-vip #header-search {
    width: 100%;
  }
  .no-vip .header-search {
    width: 100%;
  }
  .no-vip .header-search a {
    display: none;
  }
  .no-vip .short-statistics {
    flex-wrap: wrap;
  }
  .no-vip .main-title-text {
    display: none;
  }
  .no-vip footer .flex .footer-icon {
    display: none;
  }
  .no-vip footer .flex .footer-list {
    border: none;
    padding: 0;
  }
  .no-vip #dateOfAcceptance .flex {
    flex-wrap: wrap;
  }
  .no-vip #dateOfAcceptance .flex input {
    width: 100%;
  }
  .no-vip #dateOfAcceptance .flex input.second {
    width: 100%;
  }
  .no-vip #dateOfAcceptance .flex .calendar-icon {
    display: none;
  }
}
@media screen and (max-width: 1700px) {
  .vip #dashboardSlider #slider .item {
    padding: 20px 0;
  }
  .vip #dashboardSlider #slider .icons {
    display: none;
  }
  .vip .container {
    padding: 15px 20px;
  }
  .vip section .info .info-desc {
    display: inline-block;
    margin-bottom: 10px;
  }
  .vip header #logo {
    width: 29.33333333px;
    height: 29.33333333px;
    top: 16px;
    background-size: contain;
  }
  .vip header .headerTitle {
    margin: 2em 0 0 0;
  }
  .vip #topMenu {
    float: none;
    width: auto;
  }
  .vip #topMenu ul li,
  .vip #topMenu ul li:first-child {
    border-radius: 0;
    padding: 0;
    border: 0;
    margin: 0 5px 5px 0;
  }
  .vip #topMenu ul li a,
  .vip #topMenu ul li:first-child a {
    padding: 7px 12px;
    border-radius: 4px;
    display: inline-block;
    background-color: #FAFAFA;
  }
  .vip #topMenu span {
    padding: 7px 12px;
    border-radius: 4px;
    display: inline-block;
    color: #000;
  }
  .vip #topMenu span.link {
    background-color: #FAFAFA;
    color: #32acdd;
  }
  .vip #topMenu span.icon-eye-off,
  .vip #topMenu span.icon-eye {
    background-color: #FAFAFA;
    color: #000;
  }
  .vip #topMenu span.link:hover,
  .vip #topMenu span.icon-eye-off:hover,
  .vip #topMenu span.icon-eye:hover {
    color: #5ebee4;
  }
  .vip #topMenu #accessMenu,
  .vip #topMenu ul {
    display: inline-block;
  }
  .vip #viewerFilter .left {
    width: 48%;
    margin-right: 3.75%;
  }
  .vip #viewerFilter .right {
    width: 48%;
  }
  .vip #viewerFilter .w2 {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    margin-left: 0;
  }
  .vip #viewerFilter .align-end {
    display: block;
  }
  .vip #viewerFilter .align-end .w2 {
    margin-bottom: 10px;
  }
  .vip .shadow-block {
    padding: 15px;
  }
  .vip .flex-half {
    width: 100%;
    flex-basis: 100%;
    margin: 0 10px;
  }
  .vip .profile-list-title {
    margin-left: 0;
  }
  .vip .profile-list .profile-list-item {
    margin-right: 5px;
  }
  .vip .popup {
    width: 100%;
  }
  .vip #moveUp {
    width: 30px;
  }
  .vip .portal-table {
    width: auto;
    display: block;
    overflow: auto;
  }
  .vip #header {
    flex-wrap: wrap;
  }
  .vip #header .headerTitle {
    margin: 0;
    width: 100%;
  }
  .vip #header .right-wrapper {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }
  .vip #header-search {
    width: 100%;
  }
  .vip .header-search {
    width: 100%;
  }
  .vip .header-search a {
    display: none;
  }
  .vip .short-statistics {
    flex-wrap: wrap;
  }
  .vip .main-title-text {
    display: none;
  }
  .vip footer .flex .footer-icon {
    display: none;
  }
  .vip footer .flex .footer-list {
    border: none;
    padding: 0;
  }
  .vip #dateOfAcceptance .flex {
    flex-wrap: wrap;
  }
  .vip #dateOfAcceptance .flex input {
    width: 100%;
  }
  .vip #dateOfAcceptance .flex input.second {
    width: 100%;
  }
  .vip #dateOfAcceptance .flex .calendar-icon {
    display: none;
  }
}
.rules650 #dashboardSlider #slider .item {
  padding: 0;
}
.rules650 #viewerFilter input[type="text"],
.rules650 #viewerFilter input[type="date"] {
  padding: 5px;
}
.rules650 #viewerFilter .left {
  margin: 0 0 1em;
}
.rules650 #viewerFilter .left,
.rules650 #viewerFilter .right {
  display: block;
  width: 100%;
}
.rules650 #viewerFilter .button.right-side {
  float: left;
}
.rules650 .date-block:before {
  display: none;
}
.rules650 #dashboard .searchblock {
  font-size: 12px;
}
.rules650 #accessFavorites .table .column-category,
.rules650 #accessFavorites .table .column-approvalPlace {
  display: none;
}
.rules650 .main-categories .categories-item {
  width: 100%;
  margin: 0 5px;
  flex-basis: 100%;
}
.rules650 footer .container {
  background-image: none;
}
.rules650 footer .container p {
  padding-left: 0;
}
.rules650 .calendar-table .calendar-count {
  font-size: 1px;
  color: transparent;
}
.rules650 .calendar-table .calendar-count::before {
  content: attr(data-count);
  font-size: 12px;
  color: #3c7191;
  display: block;
  line-height: 10px;
}
.rules650 .calendar-table .calendar-link {
  padding: 0.1em 0.1em 0;
}
.rules650 .calendar-table .calendar-empty,
.rules650 .calendar-table .calendar-link {
  min-height: 3.5em;
}
.rules650 #moveUp {
  width: 26px;
}
.rules650 #favorites .movePanel select {
  margin-right: 0px;
  margin-bottom: 10px;
  width: 200px;
}
@media screen and (max-width: 650px) {
  .no-vip #dashboardSlider #slider .item {
    padding: 0;
  }
  .no-vip #viewerFilter input[type="text"],
  .no-vip #viewerFilter input[type="date"] {
    padding: 5px;
  }
  .no-vip #viewerFilter .left {
    margin: 0 0 1em;
  }
  .no-vip #viewerFilter .left,
  .no-vip #viewerFilter .right {
    display: block;
    width: 100%;
  }
  .no-vip #viewerFilter .button.right-side {
    float: left;
  }
  .no-vip .date-block:before {
    display: none;
  }
  .no-vip #dashboard .searchblock {
    font-size: 12px;
  }
  .no-vip #accessFavorites .table .column-category,
  .no-vip #accessFavorites .table .column-approvalPlace {
    display: none;
  }
  .no-vip .main-categories .categories-item {
    width: 100%;
    margin: 0 5px;
    flex-basis: 100%;
  }
  .no-vip footer .container {
    background-image: none;
  }
  .no-vip footer .container p {
    padding-left: 0;
  }
  .no-vip .calendar-table .calendar-count {
    font-size: 1px;
    color: transparent;
  }
  .no-vip .calendar-table .calendar-count::before {
    content: attr(data-count);
    font-size: 12px;
    color: #3c7191;
    display: block;
    line-height: 10px;
  }
  .no-vip .calendar-table .calendar-link {
    padding: 0.1em 0.1em 0;
  }
  .no-vip .calendar-table .calendar-empty,
  .no-vip .calendar-table .calendar-link {
    min-height: 3.5em;
  }
  .no-vip #moveUp {
    width: 26px;
  }
  .no-vip #favorites .movePanel select {
    margin-right: 0px;
    margin-bottom: 10px;
    width: 200px;
  }
}
@media screen and (max-width: 1300px) {
  .vip #dashboardSlider #slider .item {
    padding: 0;
  }
  .vip #viewerFilter input[type="text"],
  .vip #viewerFilter input[type="date"] {
    padding: 5px;
  }
  .vip #viewerFilter .left {
    margin: 0 0 1em;
  }
  .vip #viewerFilter .left,
  .vip #viewerFilter .right {
    display: block;
    width: 100%;
  }
  .vip #viewerFilter .button.right-side {
    float: left;
  }
  .vip .date-block:before {
    display: none;
  }
  .vip #dashboard .searchblock {
    font-size: 12px;
  }
  .vip #accessFavorites .table .column-category,
  .vip #accessFavorites .table .column-approvalPlace {
    display: none;
  }
  .vip .main-categories .categories-item {
    width: 100%;
    margin: 0 5px;
    flex-basis: 100%;
  }
  .vip footer .container {
    background-image: none;
  }
  .vip footer .container p {
    padding-left: 0;
  }
  .vip .calendar-table .calendar-count {
    font-size: 1px;
    color: transparent;
  }
  .vip .calendar-table .calendar-count::before {
    content: attr(data-count);
    font-size: 12px;
    color: #3c7191;
    display: block;
    line-height: 10px;
  }
  .vip .calendar-table .calendar-link {
    padding: 0.1em 0.1em 0;
  }
  .vip .calendar-table .calendar-empty,
  .vip .calendar-table .calendar-link {
    min-height: 3.5em;
  }
  .vip #moveUp {
    width: 26px;
  }
  .vip #favorites .movePanel select {
    margin-right: 0px;
    margin-bottom: 10px;
    width: 200px;
  }
}
.rules500 {
  text-align: center;
}
.rules500 .owl-carousel .item h1 {
  font-size: 20px;
  text-align: center;
  padding: 5px;
}
.rules500 .container {
  padding: 15px 2px;
}
.rules500 #accessAuth input,
.rules500 #accessProfile input {
  width: 100%;
}
.rules500 .accordion {
  padding: 10px 2px 0px 2px;
}
.rules500 #dashboardSlider .main-titles {
  margin: 0;
}
.rules500 #dashboardSlider .dashboard-right {
  margin: 15px;
}
.rules500 #dashboardSlider #slider .item {
  font-size: 14px;
  padding: 0;
}
.rules500 #header .headerTitle {
  text-align: center;
}
.rules500 #header .right-wrapper #langList {
  margin: 0;
}
.rules500 #bottom .short-statistics {
  margin: 0 10px;
}
.rules500 #bottom .short-statistics > div div {
  width: auto;
}
.rules500 #headerMenu .header-search {
  margin: 0 10px;
}
.rules500 .main-sa {
  margin-right: 0;
}
.rules500 .date-between {
  flex-wrap: wrap;
}
.rules500 .header-menu .header-links {
  display: flex;
  justify-content: space-around;
}
.rules500 .header-menu .header-links a {
  margin-right: 0;
}
.rules500 #viewerFilter input::placeholder {
  font-size: 12px!important;
}
.rules500 #viewerFilter .find-in {
  display: block;
  width: 100%;
  float: left;
}
.rules500 #viewerFilter .flex-titles {
  width: 100%;
}
.rules500 #viewerFilter .search-block .search-left-block,
.rules500 #viewerFilter .search-block .search-right-block {
  flex-basis: 100%;
  width: 100%;
}
.rules500 #viewerFilter .date-between {
  width: 100%;
  flex-wrap: wrap;
}
.rules500 #viewerFilter .date-between .date-block {
  flex-basis: 100%;
  width: 100%;
}
.rules500 #viewerFilter .filter-buttons-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.rules500 #viewerFilter .filter-buttons-block .button {
  margin-right: 0!important;
}
.rules500 .pagination-calendar {
  margin-left: 5px;
}
.rules500 .calendar-month {
  margin-left: 10px;
}
.rules500 section.popup .close-btn {
  right: 20px;
}
.rules500 #accessMenu a:not(.button) {
  margin-right: 2px;
}
.rules500 #accessCommentaries .profile-doc-options {
  flex-wrap: wrap;
}
.rules500 #accessCommentaries .profile-doc-options .profile-commentary {
  flex-basis: 100%!important;
}
.rules500 #accessCommentaries .commentary-list {
  text-align: left;
}
.rules500 .edit-profile {
  margin-right: 5px;
}
.rules500 .commentary-here {
  right: -5px !important;
}
.rules500 .delete-commentary {
  right: -5px !important;
}
.rules500 #dashboard .reset {
  display: none;
}
.rules500 #dashboard .searchbar {
  margin-left: 0;
}
.rules500 #dashboard .reset-second {
  display: inline-block;
}
.rules500 #moveUp {
  display: none !important;
}
.rules500 .searchblock .bottom {
  display: inline-block;
}
.rules500 .searchblock .button {
  float: left;
  padding: 0 0.5em;
}
.rules500 .searchblock .searchbar input {
  padding-left: 2px;
  font-size: 10px;
}
.rules500 .searchblock .searchbar .button {
  position: relative;
  width: 100px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 3px;
  text-align: center;
}
.rules500 #dateOfAcceptance .accordion-content span {
  margin-bottom: 10px;
}
.rules500 #dateOfAcceptance .accordion-content input {
  width: 100%;
}
.rules500 #dateOfAcceptance .accordion-content .flex > .relative {
  flex: 1;
}
@media screen and (max-width: 500px) {
  .no-vip {
    text-align: center;
  }
  .no-vip .owl-carousel .item h1 {
    font-size: 20px;
    text-align: center;
    padding: 5px;
  }
  .no-vip .container {
    padding: 15px 2px;
  }
  .no-vip #accessAuth input,
  .no-vip #accessProfile input {
    width: 100%;
  }
  .no-vip .accordion {
    padding: 10px 2px 0px 2px;
  }
  .no-vip #dashboardSlider .main-titles {
    margin: 0;
  }
  .no-vip #dashboardSlider .dashboard-right {
    margin: 15px;
  }
  .no-vip #dashboardSlider #slider .item {
    font-size: 14px;
    padding: 0;
  }
  .no-vip #header .headerTitle {
    text-align: center;
  }
  .no-vip #header .right-wrapper #langList {
    margin: 0;
  }
  .no-vip #bottom .short-statistics {
    margin: 0 10px;
  }
  .no-vip #bottom .short-statistics > div div {
    width: auto;
  }
  .no-vip #headerMenu .header-search {
    margin: 0 10px;
  }
  .no-vip .main-sa {
    margin-right: 0;
  }
  .no-vip .date-between {
    flex-wrap: wrap;
  }
  .no-vip .header-menu .header-links {
    display: flex;
    justify-content: space-around;
  }
  .no-vip .header-menu .header-links a {
    margin-right: 0;
  }
  .no-vip #viewerFilter input::placeholder {
    font-size: 12px!important;
  }
  .no-vip #viewerFilter .find-in {
    display: block;
    width: 100%;
    float: left;
  }
  .no-vip #viewerFilter .flex-titles {
    width: 100%;
  }
  .no-vip #viewerFilter .search-block .search-left-block,
  .no-vip #viewerFilter .search-block .search-right-block {
    flex-basis: 100%;
    width: 100%;
  }
  .no-vip #viewerFilter .date-between {
    width: 100%;
    flex-wrap: wrap;
  }
  .no-vip #viewerFilter .date-between .date-block {
    flex-basis: 100%;
    width: 100%;
  }
  .no-vip #viewerFilter .filter-buttons-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .no-vip #viewerFilter .filter-buttons-block .button {
    margin-right: 0!important;
  }
  .no-vip .pagination-calendar {
    margin-left: 5px;
  }
  .no-vip .calendar-month {
    margin-left: 10px;
  }
  .no-vip section.popup .close-btn {
    right: 20px;
  }
  .no-vip #accessMenu a:not(.button) {
    margin-right: 2px;
  }
  .no-vip #accessCommentaries .profile-doc-options {
    flex-wrap: wrap;
  }
  .no-vip #accessCommentaries .profile-doc-options .profile-commentary {
    flex-basis: 100%!important;
  }
  .no-vip #accessCommentaries .commentary-list {
    text-align: left;
  }
  .no-vip .edit-profile {
    margin-right: 5px;
  }
  .no-vip .commentary-here {
    right: -5px !important;
  }
  .no-vip .delete-commentary {
    right: -5px !important;
  }
  .no-vip #dashboard .reset {
    display: none;
  }
  .no-vip #dashboard .searchbar {
    margin-left: 0;
  }
  .no-vip #dashboard .reset-second {
    display: inline-block;
  }
  .no-vip #moveUp {
    display: none !important;
  }
  .no-vip .searchblock .bottom {
    display: inline-block;
  }
  .no-vip .searchblock .button {
    float: left;
    padding: 0 0.5em;
  }
  .no-vip .searchblock .searchbar input {
    padding-left: 2px;
    font-size: 10px;
  }
  .no-vip .searchblock .searchbar .button {
    position: relative;
    width: 100px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 3px;
    text-align: center;
  }
  .no-vip #dateOfAcceptance .accordion-content span {
    margin-bottom: 10px;
  }
  .no-vip #dateOfAcceptance .accordion-content input {
    width: 100%;
  }
  .no-vip #dateOfAcceptance .accordion-content .flex > .relative {
    flex: 1;
  }
}
@media screen and (max-width: 1000px) {
  .vip {
    text-align: center;
  }
  .vip .owl-carousel .item h1 {
    font-size: 20px;
    text-align: center;
    padding: 5px;
  }
  .vip .container {
    padding: 15px 2px;
  }
  .vip #accessAuth input,
  .vip #accessProfile input {
    width: 100%;
  }
  .vip .accordion {
    padding: 10px 2px 0px 2px;
  }
  .vip #dashboardSlider .main-titles {
    margin: 0;
  }
  .vip #dashboardSlider .dashboard-right {
    margin: 15px;
  }
  .vip #dashboardSlider #slider .item {
    font-size: 14px;
    padding: 0;
  }
  .vip #header .headerTitle {
    text-align: center;
  }
  .vip #header .right-wrapper #langList {
    margin: 0;
  }
  .vip #bottom .short-statistics {
    margin: 0 10px;
  }
  .vip #bottom .short-statistics > div div {
    width: auto;
  }
  .vip #headerMenu .header-search {
    margin: 0 10px;
  }
  .vip .main-sa {
    margin-right: 0;
  }
  .vip .date-between {
    flex-wrap: wrap;
  }
  .vip .header-menu .header-links {
    display: flex;
    justify-content: space-around;
  }
  .vip .header-menu .header-links a {
    margin-right: 0;
  }
  .vip #viewerFilter input::placeholder {
    font-size: 12px!important;
  }
  .vip #viewerFilter .find-in {
    display: block;
    width: 100%;
    float: left;
  }
  .vip #viewerFilter .flex-titles {
    width: 100%;
  }
  .vip #viewerFilter .search-block .search-left-block,
  .vip #viewerFilter .search-block .search-right-block {
    flex-basis: 100%;
    width: 100%;
  }
  .vip #viewerFilter .date-between {
    width: 100%;
    flex-wrap: wrap;
  }
  .vip #viewerFilter .date-between .date-block {
    flex-basis: 100%;
    width: 100%;
  }
  .vip #viewerFilter .filter-buttons-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .vip #viewerFilter .filter-buttons-block .button {
    margin-right: 0!important;
  }
  .vip .pagination-calendar {
    margin-left: 5px;
  }
  .vip .calendar-month {
    margin-left: 10px;
  }
  .vip section.popup .close-btn {
    right: 20px;
  }
  .vip #accessMenu a:not(.button) {
    margin-right: 2px;
  }
  .vip #accessCommentaries .profile-doc-options {
    flex-wrap: wrap;
  }
  .vip #accessCommentaries .profile-doc-options .profile-commentary {
    flex-basis: 100%!important;
  }
  .vip #accessCommentaries .commentary-list {
    text-align: left;
  }
  .vip .edit-profile {
    margin-right: 5px;
  }
  .vip .commentary-here {
    right: -5px !important;
  }
  .vip .delete-commentary {
    right: -5px !important;
  }
  .vip #dashboard .reset {
    display: none;
  }
  .vip #dashboard .searchbar {
    margin-left: 0;
  }
  .vip #dashboard .reset-second {
    display: inline-block;
  }
  .vip #moveUp {
    display: none !important;
  }
  .vip .searchblock .bottom {
    display: inline-block;
  }
  .vip .searchblock .button {
    float: left;
    padding: 0 0.5em;
  }
  .vip .searchblock .searchbar input {
    padding-left: 2px;
    font-size: 10px;
  }
  .vip .searchblock .searchbar .button {
    position: relative;
    width: 100px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 3px;
    text-align: center;
  }
  .vip #dateOfAcceptance .accordion-content span {
    margin-bottom: 10px;
  }
  .vip #dateOfAcceptance .accordion-content input {
    width: 100%;
  }
  .vip #dateOfAcceptance .accordion-content .flex > .relative {
    flex: 1;
  }
}
body.traur ::selection {
  background: #000 !important;
}
body.traur button,
body.traur .button {
  color: #fff !important;
  background-color: #000 !important;
}
body.traur xdsoft_datepicker button {
  background-color: #000 !important;
}
body.traur .owl-carousel {
  background: #000 !important;
}
body.traur a,
body.traur .link {
  color: #000 !important;
}
body.traur img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
body.traur header #logo,
body.traur footer .container {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
body.traur #ajax {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
body.traur footer {
  background: #000 !important;
}
body.traur footer a,
body.traur footer .link {
  color: #fff !important;
}
body.traur .portal-table,
body.traur .portal-table td,
body.traur .portal-table th {
  color: #000 !important;
  border: 1px solid #000 !important;
  background-color: #fff !important;
}
body.traur #topMenu span.link:hover,
body.traur #topMenu span.icon-eye:hover,
body.traur .treeSelect .tree .collapse:hover {
  color: #000 !important;
}
body.traur .treeSelect .tree .checkbox:before {
  color: #000 !important;
}
body.traur #dashboard .resetFilter {
  border-bottom: 1px dashed #000 !important;
}
body.traur .xdsoft_datepicker button {
  background-color: transparent!important;
}
body.traur .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  background-color: #000 !important;
  color: #fff !important;
}
body.traur .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
body.traur .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
body.traur .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background-color: #000 !important;
  color: #fff !important;
}
body.traur .xdsoft_datetimepicker .xdsoft_calendar td:hover,
body.traur .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background-color: gray!important;
  color: #fff !important;
}
body.traur .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,
body.traur .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled:hover {
  background-color: #000 !important;
  color: #fff !important;
}
body.traur .pagination .navigation-link.active {
  background-color: #000 !important;
  color: #fff !important;
}
body.traur .pagination .navigation-link {
  background-color: #fff !important;
  color: #000 !important;
}
body.traur .warning,
body.traur .message,
body.traur .error {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}
body.traur input:focus,
body.traur select:focus,
body.traur textarea:focus {
  border-color: #000 !important;
  box-shadow: none!important;
}
body.traur .select2-results .select2-highlighted {
  background-color: #000 !important;
  color: #fff !important;
}
body.traur #viewerFilter input[type="radio"]:checked + .rbutton:after {
  background: #000 !important;
}
body.traur #moveUp:hover {
  background-color: #000 !important;
}
