/* =====================================================================================================================

	Author: @matijaabram
	Company: Innovatif d.o.o.
	Client: SICAS
	Created: 8 / 2014
	Preprocessor: LESS

======================================================================================================================*/
/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
iframe {
  display: block;
}
/* Mixins */
.v-hidden.focusable:active,
.v-hidden.focusable:focus {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  overflow: visible;
}
/*
Version: @@ver@@ Timestamp: @@timestamp@@
*/
.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  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, #eeeeee), color-stop(0.5, #ffffff));
  background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, #ffffff 50%);
  background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, #ffffff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to top, #eeeeee 0%, #ffffff 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, #eeeeee), color-stop(0.9, #ffffff));
  background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, #ffffff 90%);
  background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, #ffffff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to bottom, #eeeeee 0%, #ffffff 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('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-drop-auto-width .select2-search {
  padding-top: 4px;
}
.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, #cccccc), color-stop(0.6, #eeeeee));
  background-image: -webkit-linear-gradient(center bottom, #cccccc 0%, #eeeeee 60%);
  background-image: -moz-linear-gradient(center bottom, #cccccc 0%, #eeeeee 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
  background-image: linear-gradient(to top, #cccccc 0%, #eeeeee 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('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-left: 4px;
  padding-right: 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: #ffffff url('select2.png') no-repeat 100% -22px;
  background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #ffffff), color-stop(0.99, #eeeeee));
  background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #ffffff 85%, #eeeeee 99%);
  background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #ffffff 85%, #eeeeee 99%);
  background: url('select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #ffffff 85%, #eeeeee 99%) 0 0;
}
html[dir="rtl"] .select2-search input {
  padding: 4px 5px 4px 20px;
  background: #ffffff url('select2.png') no-repeat -37px -22px;
  background: url('select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #ffffff), color-stop(0.99, #eeeeee));
  background: url('select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #ffffff 85%, #eeeeee 99%);
  background: url('select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #ffffff 85%, #eeeeee 99%);
  background: url('select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #ffffff 85%, #eeeeee 99%) 0 0;
}
.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px;
}
.select2-search input.select2-active {
  background: #ffffff url('select2-spinner.gif') no-repeat 100%;
  background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #ffffff), color-stop(0.99, #eeeeee));
  background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #ffffff 85%, #eeeeee 99%);
  background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #ffffff 85%, #eeeeee 99%);
  background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #ffffff 85%, #eeeeee 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, #ffffff), color-stop(0.5, #eeeeee));
  background-image: -webkit-linear-gradient(center bottom, #ffffff 0%, #eeeeee 50%);
  background-image: -moz-linear-gradient(center bottom, #ffffff 0%, #eeeeee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to top, #ffffff 0%, #eeeeee 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, #ffffff), color-stop(0.5, #eeeeee));
  background-image: -webkit-linear-gradient(center top, #ffffff 0%, #eeeeee 50%);
  background-image: -moz-linear-gradient(center top, #ffffff 0%, #eeeeee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 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('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%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(to bottom, #eeeeee 1%, #ffffff 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: #ffffff url('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 #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #ffffff 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%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 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('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('select2x2.png') !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important;
  }
  .select2-search input {
    background-position: 100% -21px !important;
  }
}
/* typography */
@font-face {
  font-family: 'Republika';
  src: url('../fonts/republika-regular-webfont.eot');
  src: url('../fonts/republika-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/republika-regular-webfont.woff') format('woff'), url('../fonts/republika-regular-webfont.ttf') format('truetype'), url('../fonts/republika-regular-webfont.svg#republikaregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Republika';
  src: url('../fonts/republika-bold-webfont.eot');
  src: url('../fonts/republika-bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/republika-bold-webfont.woff') format('woff'), url('../fonts/republika-bold-webfont.ttf') format('truetype'), url('../fonts/republika-bold-webfont.svg#republikabold') format('svg');
  font-weight: bold;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Republika, arial, helvetica, sans-serif;
  color: #333333;
  font-weight: normal;
  text-rendering: optimizelegibility;
}
h2 {
  font-weight: bold;
}
p {
  font-family: arial, helvetica, sans-serif;
  color: #2c2c2c;
}
small {
  font-size: 14px;
  font-size: 1.4rem;
}
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
cite {
  font-style: normal;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
ins {
  background-color: #ebebeb;
  color: #2c2c2c;
  text-decoration: none;
}
mark {
  background-color: #ebebeb;
  color: #2c2c2c;
  font-style: italic;
  font-weight: bold;
}
pre,
code,
kbd,
samp {
  font-family: arial, helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
sub,
sup {
  position: relative;
  font-size: 10px;
  font-size: 1rem;
  line-height: 0;
  vertical-align: baselineheight;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* common */
.btn-standard,
.confirm-btn,
.certificate .with-certificate,
.login-form .submit input,
.id-methods li .content a,
.btn-logout,
.default-form .submit input {
  background: #5c9a92;
  color: #fff;
  font-family: Republika, arial, helvetica, sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 42px;
  padding: 0 35px;
  border: 0;
  border-radius: 2px;
}
.btn-standard:focus,
.confirm-btn:focus,
.btn-logout:focus {
  outline: 0;
}
.btn-standard:hover,
.confirm-btn:hover,
.btn-logout:hover {
  background: #6aa69e;
  color: #fff;
}
.extendable,
.hidden-element {
  overflow: hidden;
  position: relative;
}
.extendable:before,
.hidden-element:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 11px 11px;
  border-color: transparent transparent #5c9a92 transparent;
}
.extendable.open:before,
.hidden-element.open:before {
  border-width: 0 11px 11px 0;
  border-color: transparent #5c9a92 transparent transparent;
  bottom: auto;
  top: 0;
}
.gray-box,
.certificate,
.hidden-element,
.box-link,
.dashboard-links a,
.id-methods li,
.logout-box,
.attributes-box {
  background: #f2f2f2;
  width: 100%;
  padding: 40px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 1px 0px #d9d9d9;
  -moz-box-shadow: 0px 1px 0px #d9d9d9;
  -ms-box-shadow: 0px 1px 0px #d9d9d9;
  box-shadow: 0px 1px 0px #d9d9d9;
  border-radius: 2px;
}
.gray-box h2 {
  font-size: 16px;
  margin-bottom: 20px;
}
.sprite,
.msg .close,
.msg .close,
.dopis .trigger:after,
.login-form .checkbox input + label:before,
.removable-list .remove-item:before,
.id-methods li .remove-item:before,
.roll .closed,
.default-form .checkbox input + label:before {
  background: url(../images/sprite.png?v=4) no-repeat;
}
/* default style */
html {
  overflow-y: auto;
  height: 100%;
}
body {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  background: #fff;
  color: #333;
  background: url(../images/header-bg.png) top center no-repeat;
}
#wrapper {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
#wrapper:after {
  content: "";
  display: table;
  clear: both;
}
a {
  color: #457a73;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul,
ol,
menu {
  list-style: none;
}
dt {
  font-weight: normal;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
b,
strong {
  font-weight: bold;
}
i,
em {
  font-style: italic;
}
sup,
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.6em;
}
sub {
  bottom: -0.25em;
}
address {
  font-style: normal;
}
small {
  font-size: 11px;
}
label,
input[type='submit'] {
  cursor: pointer;
}
input,
textarea {
  font-family: helvetica, arial, sans-serif;
}
img {
  display: block;
}
header,
main {
  max-width: 460px;
  margin: 60px auto 0;
  padding: 0 10px 0;
}
header {
  margin-top: 40px;
}
header h1 {
  display: block;
  width: 100%;
  max-width: 434px;
  height: 53px;
  text-indent: -4000px;
  background: url(../images/rs-CAS.png) 0 0 no-repeat;
  background-size: contain;
  overflow: hidden;
}
main {
  padding-bottom: 240px;
  margin-top: 30px;
}
footer {
  position: absolute;
  width: 100%;
  height: 90px;
  bottom: 0;
  left: 0;
  background: #f2f2f2;
  padding: 20px 0 0;
}
footer .lang {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
footer .lang li {
  position: relative;
  display: inline;
  text-align: center;
  margin-left: 32px;
}
footer .lang li:before {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: -19px;
  height: 4px;
  width: 4px;
  border-radius: 2px;
  background: #d8d8d8;
}
footer .lang li:first-child {
  margin-left: 0;
}
footer .lang li:first-child:before {
  display: none;
}
footer .support {
  text-align: center;
  margin-bottom: 10px;
}
footer .copyright {
  text-align: center;
}
footer .ess-logo {
    max-height: 50px;
    width: auto;
    height: auto;
    position: absolute;
    left: 50%;
    margin: -90px 0 0 -60px;
    top: 0;
}
footer .unique-user-id {
  position: absolute;
  left: 50%;
  margin: -18px 0 0 -150px;
  top: 0;
  width: 300px;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: #bbb;
}
.btn {
  border-radius: 2px;
  background-color: #3077ae;
  color: #fff;
  text-decoration: none !important;
  padding: 7px 15px;
  display: inline-block;
  clear: both;
  margin-bottom: 15px;
  border: none;
  text-align: center;
  min-width: 40px;
  font-weight: bold;
}
.btn:hover {
  background-color: #3685c2;
}
.btn.tick {
  background-color: #fff;
  color: #333;
}
.btn.small {
  font-size: 11px;
  padding: 5px 15px;
  display: inline-block;
}
.btn.small.tick {
  padding-left: 35px;
  padding-right: 35px;
  background-position: -846px -679px;
}
.btn.gray {
  color: #3077ae;
  background-color: #eee;
}
.highlight .btn {
  margin-top: 15px;
  margin-bottom: 0;
  background-color: #333;
}
.exposed .btn {
  background-color: #fff;
  color: #333;
}
.exposed .btn:hover {
  background-color: #edf6fd;
}
.section {
  margin: 0 0 20px;
}
.section .roll {
  margin: 4px 0 0 0;
}
.section .btn-standard,
.section .confirm-btn,
.section .btn-logout {
  padding: 0 25px;
  line-height: 42px;
  display: inline-block;
}
.msg {
  background: #e9f1f4;
  color: #407c94;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 18px;
  padding: 12px 42px 12px 20px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 2px;
}
.msg a {
  color: #21404d;
}
.msg a:hover {
  text-decoration: underline;
}
.msg p {
  color: #407c94;
}
.msg .close {
  background-position: 0 -360px;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -999em;
}
.msg .close:after {
  content: "";
  display: table;
  clear: both;
}
.msg.error {
  background: #fdd;
  color: #d00;
}
.msg.error a {
  color: #770000;
}
.msg.error p {
  color: #d00;
}
.msg.error .close {
  background-position: 0 -320px;
}
.msg.success {
  background: #e0e8c4;
  color: #85983f;
}
.msg.success a {
  color: #465021;
}
.msg.success p {
  color: #85983f;
}
.msg.success .close {
  background-position: 0 -340px;
}
.e404 strong {
  display: block;
  font-family: Republika, arial, helvetica, sans-serif;
  color: #407c94;
  font-size: 100px;
  margin-bottom: 20px;
  text-align: center;
}
.e404 p {
  font-size: 16px;
  color: #333;
  line-height: 1.5em;
}
.exposed h3 {
  color: #fff;
}
.eugo-bar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  z-index: 2;
  background-color: #2c2c2c;
  height: 50px;
  width: 100%;
  position: fixed;
  top: 0;
}
.eugo-bar:after {
  content: "";
  display: table;
  clear: both;
}
.eugo-bar .inner {
  padding: 0;
  margin: 0;
  position: relative;
}
.eugo-bar .inner:after {
  content: "";
  display: table;
  clear: both;
}
.eugo-bar .rs {
  width: 102px;
  height: 32px;
  overflow: hidden;
  float: left;
  margin-top: 3px;
  position: absolute;
  left: 60px;
  top: 6px;
}
.dopis {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  display: block;
  width: 100%;
  padding: 0 25px;
  font-size: 12px;
  color: #777;
  background: #000;
  right: 100%;
  min-height: 50px;
}
.dopis > span {
  position: absolute;
  top: 7px;
  left: 0;
  padding-left: 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.dopis .trigger {
  color: #aaa;
  font-weight: bold;
  position: absolute;
  top: 25px;
  left: 0;
  padding-left: 25px;
  padding-bottom: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.dopis .trigger:after {
  content: '';
  background-position: 0 -250px;
  display: block;
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 50px;
  height: 50px;
}
.dopis .trigger.open {
  background-position: right -963px;
}
.dopis .dropdown {
  position: absolute;
  background-color: #2C2C2C;
  left: 0;
  top: 50px;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.dopis .dropdown ul {
  display: block;
  margin: 0 25px;
}
.dopis .dropdown ul:last-of-type {
  height: 100%;
}
.dopis .dropdown a {
  color: #aaa;
  display: block;
  padding: 15px 10px;
}
.dopis .dropdown li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #444;
}
.dopis .dropdown .current a {
  color: #fff;
}
.dopis .dropdown .first {
  margin-bottom: 0;
  margin-top: 50px;
}
.dopis span,
.dopis a {
  width: 100%;
  clear: left;
  display: block;
}
.logo-sicas {
  float: right;
  margin-top: 12px;
  display: none;
}
main h1 {
  font-size: 24px;
  margin-bottom: 25px;
}
.confirm-btn {
  display: inline-block;
  line-height: 42px;
  padding: 0 25px;
}
.certificate,
.hidden-element {
  margin-bottom: 20px;
}
.certificate h2,
.certificate p {
  margin-bottom: 25px;
}
.certificate h2 {
  font-size: 16px;
}
.certificate .with-certificate {
  line-height: 42px;
  padding: 0 25px;
  display: inline-block;
  float: right;
  clear: both;
}
.hidden-element {
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
}
.hidden-element.open {
  margin-bottom: 4px;
}
.hidden-element h2 {
  font-size: 16px;
  color: #457a73;
  line-height: 26px;
}
.hidden-element h2 small {
  display: inline-block;
  font-size: 1em;
  font-weight: normal;
}
.hidden-element-blank {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
}
.hidden-element-blank h2 {
  color: #457a73;
  font-weight: normal;
}
.delete-account-section {
  margin: 70px 0 0;
  text-align: center;
}
.delete-account-section .hidden-box {
  text-align: left;
}
.delete-account-section .hidden-box h2 {
  font-size: 16px;
  margin: 0 0 15px;
  font-family: arial, helvetica, sans-serif;
}
.delete-account-section .hidden-box p {
  margin: 0 0 30px;
}
.login-form,
.default-form {
  display: block;
}
.login-form form:after,
.default-form form:after {
  content: "";
  display: table;
  clear: both;
}
.login-form h2,
.default-form h2 {
  display: block;
  font-size: 16px;
  margin-top: -10px;
  margin-bottom: 30px;
}
.hidden-box {
  display: none;
}
.open + .hidden-box {
  display: block;
  margin-bottom: 20px;
}
.box-link {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #333333;
}
.box-link strong {
  font-family: Republika, arial, helvetica, sans-serif;
  font-size: 16px;
}
.box-link:hover {
  text-decoration: none;
  color: #4d4d4d;
  background: #f7f7f7;
}
.login-form .input,
.default-form .input {
  position: relative;
}
.login-form input:focus,
.default-form input:focus {
  outline: 0;
}
.login-form .text input,
.login-form .text label,
.default-form .text input,
.default-form .text label {
  display: block;
  background: #fff;
  border: 0;
  padding: 8px 5% 10px;
  width: 90%;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 25px;
  border-radius: 2px;
}
.login-form .text input,
.default-form .text input {
  -webkit-box-shadow: 0 -4px 0 #e6e6e6;
  -moz-box-shadow: 0 -4px 0 #e6e6e6;
  -ms-box-shadow: 0 -4px 0 #e6e6e6;
  box-shadow: 0 -4px 0 #e6e6e6;
}
.login-form .text input + label,
.default-form .text input + label {
  position: absolute;
  left: 0;
  top: 0;
  cursor: text;
  margin: 0;
  color: #999;
}
.login-form .text.error input,
.login-form .text.error label,
.default-form .text.error input,
.default-form .text.error label {
  border: solid 1px #d50000;
}
.login-form .select,
.default-form .select {
  margin: 0 0 20px;
}
.login-form .select select,
.default-form .select select {
  display: block;
  width: 100%;
}
.login-form .select .select2-container,
.default-form .select .select2-container {
  width: 100% !important;
  -webkit-box-shadow: 0 -4px 0 #e6e6e6;
  -moz-box-shadow: 0 -4px 0 #e6e6e6;
  -ms-box-shadow: 0 -4px 0 #e6e6e6;
  box-shadow: 0 -4px 0 #e6e6e6;
}
.login-form .select2-search,
.default-form .select2-search {
  display: none;
}
.login-form p,
.default-form p {
  text-align: right;
  font-size: 12px;
  margin-bottom: 20px;
}
.login-form hr,
.default-form hr {
  margin: 25px 0;
  border: 0;
  border-top: solid 1px #d9d9d9;
  height: 1px;
  background: #fff;
}
.login-form .checkbox,
.default-form .checkbox {
  display: inline-block;
  float: right;
  margin-top: 14px;
}
.login-form .checkbox input,
.default-form .checkbox input {
  position: absolute;
  top: -4000px;
}
.login-form .checkbox input + label,
.default-form .checkbox input + label {
  position: relative;
  padding-left: 20px;
}
.login-form .checkbox input + label:before,
.default-form .checkbox input + label:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  background-position: -600px -200px;
}
.login-form .checkbox input:checked + label:before,
.default-form .checkbox input:checked + label:before {
  background-position: -600px -214px;
}
.lt-ie9 .login-form .checkbox input,
.lt-ie9 .default-form .checkbox input {
  position: static;
}
.lt-ie9 .login-form .checkbox label,
.lt-ie9 .default-form .checkbox label {
  background: none;
  padding-left: 0;
}
.login-form .submit,
.default-form .submit {
  display: inline-block;
  float: right;
  clear: both;
  margin-top: 14px;
}
.login-form .submit input,
.default-form .submit input {
  border: 0;
  line-height: 42px;
  padding: 0 25px;
}
.login-form .captcha,
.default-form .captcha {
  margin: 0 0 25px;
}
.login-form p.error,
.default-form p.error {
  color: #d50100;
  text-align: left;
  line-height: 1.3em;
  margin-top: -15px;
}
.default-form-select.select2-selection--single {
  border: 0;
  height: 40px;
  font-size: 16px;
}
.default-form-select.select2-selection--single .select2-selection__arrow {
  height: 38px;
  width: 48px;
}
.default-form-select.select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  padding: 0 50px 0 5%;
}
.default-form-select.select2-dropdown {
  border: 0;
  border-bottom: solid 1px #f2f2f2;
}
.default-form-select.select2-dropdown .select2-results {
  background: rgba(0, 0, 0, 0.02);
  margin: 0;
  padding: 0;
}
.default-form-select.select2-dropdown .select2-results__option {
  padding: 12px 0 12px 5%;
  line-height: 18px;
  font-size: 12px;
  color: #999;
  position: relative;
}
.default-form-select.select2-dropdown .select2-results__option:before {
  content: '';
  width: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  border-top: solid 1px #f2f2f2;
}
.default-form-select.select2-dropdown .select2-results__option[aria-selected=true] {
  background: rgba(0, 0, 0, 0.02);
  color: #333;
  font-weight: bold;
}
.default-form-select.select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background: #fff;
  color: #333;
}
.dashboard-links a {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 42px;
  font-size: 16px;
  font-family: Republika, arial, helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
}
.dashboard-links a:hover {
  background: #f7f7f7;
  color: #457a73;
}
.user {
  text-align: center;
  margin-bottom: 60px;
}
.user img {
  margin: 0 auto 25px;
  max-width: 100px;
}
.user h2 {
  font-family: Republika, arial, helvetica, sans-serif;
  font-weight: normal;
  font-size: 24px;
}
.intro {
  margin-bottom: 50px;
}
.intro h1 {
  font-size: 24px;
}
.intro p {
  font-size: 15px;
  line-height: 1.5em;
}
.removable-list {
  margin: 20px 0 20px;
}
.removable-list li {
  padding: 15px 20px 15px 0;
  position: relative;
  margin-bottom: 5px;
  border-bottom: solid 1px #ddd;
}
.removable-list li:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 0;
  border-bottom: solid 1px #fff;
}
.removable-list li > h3 {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  font-family: arial, helvetica, sans-serif;
}
.removable-list li.primary > h3 {
  font-weight: bold;
  margin: 0 15px 0 0;
}
.removable-list li > span {
  display: inline-block;
  font-size: 14px;
}
.removable-list .remove-item {
  text-indent: -100%;
  overflow: hidden;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
  margin: 10px 0 0;
}
.removable-list .remove-item:before {
  content: '';
  background-position: -600px -230px;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  right: 0;
}
.selectable-list {
  margin: 20px 0 20px;
}
.selectable-list li {
  padding: 15px 0;
  position: relative;
  margin-bottom: 5px;
  border-bottom: solid 1px #ddd;
}
.selectable-list li:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 0;
  border-bottom: solid 1px #fff;
}
.selectable-list label {
  padding: 0 0 0 30px;
  position: relative;
  display: block;
}
.selectable-list label:before,
.selectable-list label:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
}
.selectable-list label:before {
  width: 12px;
  height: 12px;
  border: solid 1px #ddd;
  background: #fff;
}
.selectable-list label:after {
  width: 8px;
  height: 8px;
  margin: 3px;
  background: #5c9a92;
  display: none;
}
.selectable-list label h3 {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  font-family: arial, helvetica, sans-serif;
}
.selectable-list label span {
  display: inline-block;
  font-size: 14px;
  margin: 0 0 0 15px;
}
.selectable-list label p {
  text-align: left;
  line-height: 20px;
}
.selectable-list [type=radio],
.selectable-list [type=checkbox] {
  display: none;
}
.selectable-list [type=radio]:checked + label:after,
.selectable-list [type=checkbox]:checked + label:after {
  display: block;
}
.id-methods li {
  padding: 15px 25px;
  position: relative;
  margin-bottom: 5px;
}
.id-methods li > strong {
  display: block;
  font-family: Republika, arial, helvetica, sans-serif;
  font-size: 16px;
}
.id-methods li > span {
  display: block;
  font-size: 13px;
  width: 100%;
}
.id-methods li .remove-item {
  text-indent: -100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 66px;
  top: 0;
  left: 0;
}
.id-methods li .remove-item:before {
  content: '';
  background-position: -600px -230px;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  right: 25px;
}
.id-methods li .content {
  display: none;
}
.id-methods li .content a {
  font-family: arial, helvetica, sans-serif;
  display: inline-block;
  float: left;
  padding: 0 25px;
  line-height: 32px;
  font-size: 13px;
}
.id-methods li .content a:hover {
  text-decoration: none;
}
.id-methods li .content a + a {
  margin-left: 10px;
}
.id-methods li .content p {
  font-size: 15px;
  margin-bottom: 20px;
}
.id-methods li.selected {
  padding-bottom: 40px;
}
.id-methods li.selected .content {
  display: block;
  border-top: solid 1px #fff;
  padding-top: 15px;
}
.id-methods li.selected .remove-item {
  display: none;
}
.id-methods li.selected > span {
  padding-bottom: 15px;
  border-bottom: solid 1px #d9d9d9;
}
.close-sicas {
  text-align: center;
  margin-top: 80px;
}
.login-notice {
  padding: 40px;
  background-color: #e9f1f4;
  color: #407c94;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5em;
}
.login-notice p {
  color: #407c94;
}
.logout-box p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5em;
}
.logout-box .confirm-btn {
  float: right;
}
.attributes-box .attr {
  padding: 20px 0;
  font-size: 15px;
  border-bottom: solid 1px #d9d9d9;
  position: relative;
}
.attributes-box .attr:before {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #fff;
}
.attributes-box .attr:after {
  content: "";
  display: table;
  clear: both;
}
.attributes-box .attr span {
  float: left;
  width: 50%;
  font-weight: bold;
}
.attributes-box .attr span + span {
  font-weight: normal;
}
.attributes-box .confirm-btn {
  margin-top: 40px;
  float: right;
  clear: both;
}
.roll {
  position: relative;
  left: 0;
}
.roll * {
  text-indent: 0;
}
.roll .closed {
  background-position: -1220px -720px;
  display: block;
  width: 18px;
  height: 18px;
  padding: 18px 0 0;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  overflow: hidden;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.roll .closed * {
  display: none;
}
.btn-logout {
  display: inline-block;
  margin: 15px 0 0;
}
.btn-back {
  display: block;
  float: left;
  font-size: 12px;
  line-height: 18px;
  margin: 12px 0;
}
p.important {
  color: #d50100;
  text-align: left;
  line-height: 1.3em;
}
/* 320px */
/* 480px */
@media only screen and (min-width: 480px) {
  .login-form .checkbox,
  .default-form .checkbox {
    float: left;
  }
  .login-form .submit,
  .default-form .submit {
    clear: none;
    margin-top: 0;
  }
}
/* 640px */
@media only screen and (min-width: 640px) {
  header {
    margin-top: 60px;
  }
  main {
    padding-bottom: 170px;
    margin-top: 60px;
  }
  footer {
    line-height: 20px;
    padding: 14px 0;
    height: 20px;
  }
  footer .lang {
    position: absolute;
    left: 50px;
    top: 14px;
    text-align: left;
  }
  footer .copyright {
    position: absolute;
    right: 50px;
    top: 14px;
    text-align: right;
  }
  .eugo-bar {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    z-index: 2;
    position: relative;
    background-color: #2c2c2c;
    height: 50px;
    overflow: visible;
    width: 100%;
  }
  .eugo-bar:after {
    content: "";
    display: table;
    clear: both;
  }
  .eugo-bar .inner {
    padding: 6px 50px 8px;
    margin: 0 auto;
    position: relative;
  }
  .eugo-bar .inner:after {
    content: "";
    display: table;
    clear: both;
  }
  .eugo-bar .rs {
    width: 102px;
    height: 32px;
    overflow: hidden;
    float: left;
    margin-top: 3px;
    position: static;
  }
  .dopis {
    float: left;
    display: block;
    padding-left: 20px;
    margin-left: 20px;
    margin-top: 6px;
    position: relative;
    width: auto;
    height: auto;
    border-left: 1px solid #444;
    background: none;
    min-height: 0;
    right: 0 !important;
  }
  .dopis > span {
    position: static;
    padding-left: 0;
  }
  .dopis .trigger {
    position: static;
    background-position: right -900px;
    color: #aaa;
    font-weight: bold;
    padding-right: 20px;
    padding-bottom: 0;
    padding-left: 0;
    width: auto;
  }
  .dopis .trigger:after {
    background: none;
  }
  .dopis .trigger.open {
    background-position: right -963px;
  }
  .dopis .dropdown {
    position: absolute;
    background-color: #2C2C2C;
    width: 106%;
    height: auto;
    left: 0;
    top: 38px;
    display: none;
  }
  .dopis .dropdown ul {
    margin: 15px 20px;
  }
  .dopis .dropdown a {
    color: #aaa;
    padding: 0;
    display: inline;
  }
  .dopis .dropdown li {
    margin-bottom: 7px;
    border: 0;
  }
  .dopis .dropdown .current a {
    color: #fff;
  }
  .dopis .dropdown .first {
    border-bottom: 1px solid #444;
    padding-bottom: 12px;
    margin-bottom: 0;
    margin-top: 12px;
  }
  .dopis span,
  .dopis a {
    width: 100%;
    clear: left;
    display: block;
  }
  .logo-sicas {
    float: right;
    margin-top: 12px;
    display: block;
  }
  .user img {
    max-width: 100%;
  }
}
/* 768px */
@media only screen and (min-width: 768px) {
  .msg {
    width: 668px;
    margin-left: -104px;
  }
}
@media only screen and (min-width: 855px) {
  .msg {
    width: 755px;
    margin-left: -147px;
  }
}
/* 992px */
@media only screen and (min-width: 992px) {
  .msg {
    width: 892px;
    margin-left: -216px;
  }
}
/* 1025 */
@media only screen and (min-width: 1140px) {
  .msg {
    width: 1040px;
    margin-left: -290px;
  }
}
@media print {
  /* Print */
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  @page {
    margin: 0.5cm;
  }
  h2,
  h3 {
    orphans: 3;
    widows: 3;
    page-break-after: avoid;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  pre,
  blockquote {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr {
    page-break-inside: avoid;
  }
}
/*# sourceMappingURL=style.css.map */