@import "../../fira/fira.css";
body {
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100%;
}
p {
  max-width: 40em;
}
body > .wrapper {
  display: table;
  width: 100%;
}
.sidebar {
  position: relative;
  display: table-cell;
  width: 320px;
  min-width: 320px;
}
.sidebar .wrapper {
  top: 138px;
  position: absolute;
  width: 100%;
}
.sidebar .logo {
  height: 108px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: url('/media/js/bower/salford-js-altworx-core/img/logo80.png') center center no-repeat;
}
.sidebar .logo a {
  display: block;
  width: 100%;
  height: 108px;
}
.sidebar.collapsed {
  width: 120px;
  min-width: 120px;
}
.sidebar.collapsed .logo {
  background: url('/media/js/bower/salford-js-altworx-core/img/logo80s.png') center center no-repeat;
}
.sidebar.collapsed .wrapper {
  display: none;
}
.sidebar .handle {
  display: none;
  position: absolute;
  top: 70px;
  right: 10px;
  padding: 5px 10px;
  background-color: #d5dbdd;
  color: #5c6b70;
  cursor: pointer;
  text-align: center;
}
.sidebar .handle span {
  font-size: 90%;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #303435;
}
.sidebar:hover .handle {
  display: block;
}
.content {
  display: table-cell;
  margin: 10px 30px 10px 330px;
  position: relative;
  padding-bottom: 60px;
  padding-right: 10px;
}
.navigation {
  min-height: 108px;
}
.row {
  margin-bottom: 10px;
}
.row.double {
  margin-bottom: 20px;
}
.row.triple {
  margin-bottom: 30px;
}
.form,
form {
  margin-top: 40px;
}
.form .row,
form .row {
  line-height: 36px;
}
.form .row.required label,
form .row.required label {
  font-weight: bold;
}
.form .row .buttonBox,
form .row .buttonBox {
  width: 24em;
  padding-left: 169px;
}
.form .row .validationMessage,
form .row .validationMessage {
  display: inline-block;
  margin-left: 10px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.form .row .validationMessage.error,
form .row .validationMessage.error {
  color: #d54444;
}
.form .row .validationMessage.error:before,
form .row .validationMessage.error:before {
  content: "\e003";
  font-family: Flaticon;
  font-style: normal;
  margin-right: 5px;
}
.form input[type="password"],
form input[type="password"],
.form input[type="text"],
form input[type="text"] {
  margin-left: 0px;
  font-size: 16px;
  width: 13em;
}
.form label,
form label {
  display: inline-block;
  color: #303435;
  width: 10em;
  text-align: right;
  padding-right: 0.4em;
}
.filter {
  padding: 0 1em 1em 1em;
}
.filter input {
  padding: 0.3em;
  width: 90%;
}
.filter input.dateInput {
  width: 10em;
}
.userBar {
  position: absolute;
  top: 0px;
  right: 0px;
}
.userBar button,
.userBar > a.button {
  margin-top: 0;
  padding-right: 10px;
  padding-left: 10px;
}
.userBar .iconOnly i {
  font-size: 18px;
  line-height: 18px;
}
.loginLayout {
  background: white url('/media/js/bower/salford-js-altworx-core/img/logo80.png') 50px 10px no-repeat;
}
.loginLayout .wrapper {
  max-width: 800px;
  margin: 100px auto;
}
.loginLayout .wrapper .content h1 {
  padding-left: 15px;
}
.loginLayout .wrapper .content #LoginCustomInfo {
  margin-top: 2rem;
  padding-left: 19px;
}
body {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #303435;
}
button,
input,
select {
  font-family: 'Fira Sans', sans-serif;
}
select {
  padding: 5px 3px 0px;
}
select option {
  padding: 5px 3px 0px;
}
p {
  max-width: 40rem;
}
p.leading {
  font-size: 18px;
  line-height: 24px;
}
a,
.fakeLink {
  color: #2477a0;
  text-decoration: underline;
}
a:hover,
.fakeLink:hover {
  color: #44a4d5;
}
/*doc
---
title: Kód
name: kod
category: typografie
---

  Kus kódu vnořený do textu, používat pro kláveskové zkratky, a kusy kódu.

```html_example
    <p>
        Pro vykopírování stisněte <code>CTRL</code> + <code>C</code>
    </p>
```

*/
code {
  font-family: 'Fira Mono', monospace;
  border: 1px solid #d5dbdd;
  color: #5c6b70;
  padding: 1px 5px;
}
pre > code {
  border: none;
}
/*doc
---
title: Zkratka
category: typografie
---

  Text obsahující popisku.
  Je třeba používat jej vždy s atributem `ABBR`

```html_example
    <p>
        <abbr title="Státní poznávací značka">SPZ</abbr> musí být platná!
    </p>
```

*/
abbr {
  border-bottom: 1px dashed #5c6b70;
  cursor: help;
}
input[type="text"],
input[type="password"] {
  border: none;
  border-bottom: 1px solid #5c6b70;
  margin: 0px;
  padding: 0px 8px 0px;
}
input[type="text"]:focus,
input[type="password"]:focus {
  outline: 0px;
  border-bottom-color: #00bfff;
}
input[type="text"].validationFailed,
input[type="password"].validationFailed {
  border-bottom-color: #d54444;
}
.ok {
  color: #7aac39;
}
.ng {
  color: #d54444;
}
ul,
ol {
  max-width: 40rem;
  line-height: 1.6;
}
ul.multiline li,
ol.multiline li {
  margin: 5px 0px;
}
td.smallText {
  font-size: 13px;
}
/* mixins */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.alert {
  padding: 15px 30px;
  position: relative;
  color: #ffffff;
  font-size: 18px;
  background-color: #85a3ae;
  margin: 10px 0;
}
.alert p {
  margin: 5px 0;
}
.alert.success {
  color: white;
  background-color: #7aac39;
}
.alert.success .siblingCounter span {
  color: #567828;
}
.alert.error {
  color: white;
  background-color: #d54444;
}
.alert.error .siblingCounter span {
  color: #a02424;
}
.alert.warning {
  color: white;
  background-color: #e98c49;
}
.alert.warning .siblingCounter span {
  color: #bf5d17;
}
.alert .closeButton {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
}
.alert .closeButton:after {
  content: "\00d7";
}
.alert .siblingCounter {
  display: inline-block;
  margin-right: 10px;
}
.alert .siblingCounter span {
  background-color: #ffffff;
  padding: 4px 8px;
  height: 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #567681;
}
.well {
  position: relative;
  padding-left: 10px;
  margin-left: 3px;
}
.well.warning {
  border-left: 3px solid #bf5d17;
}
.well.info {
  border-left: 3px solid #567681;
}
button,
input[type="submit"],
.button {
  cursor: pointer;
  padding: 5px 15px 3px;
  background-color: #d5dbdd;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 90%;
  line-height: 22px;
  color: #303435;
  border: none;
  border-bottom: 3px solid #5c6b70;
}
button.smaller,
input[type="submit"].smaller,
.button.smaller {
  padding: 2px 10px 1px;
  line-height: 18px;
}
button[disabled],
input[type="submit"][disabled],
.button[disabled],
button.dangerous[disabled],
input[type="submit"].dangerous[disabled],
.button.dangerous[disabled] {
  color: #94afb8;
  cursor: not-allowed;
  border-bottom: 3px solid #94afb8;
}
button[disabled]:hover,
input[type="submit"][disabled]:hover,
.button[disabled]:hover,
button.dangerous[disabled]:hover,
input[type="submit"].dangerous[disabled]:hover,
.button.dangerous[disabled]:hover,
button[disabled].primary:hover,
input[type="submit"][disabled].primary:hover,
.button[disabled].primary:hover,
button.dangerous[disabled].primary:hover,
input[type="submit"].dangerous[disabled].primary:hover,
.button.dangerous[disabled].primary:hover,
button[disabled].dangerous:hover,
input[type="submit"][disabled].dangerous:hover,
.button[disabled].dangerous:hover,
button.dangerous[disabled].dangerous:hover,
input[type="submit"].dangerous[disabled].dangerous:hover,
.button.dangerous[disabled].dangerous:hover {
  color: #94afb8;
  border-bottom: 3px solid #94afb8;
}
button.withIcon i,
input[type="submit"].withIcon i,
.button.withIcon i {
  margin-right: 5px;
}
button:hover,
input[type="submit"]:hover,
.button:hover {
  color: black;
  border-bottom: 3px solid #0c0d0d;
}
button.primary,
input[type="submit"].primary,
.button.primary {
  font-weight: bold;
}
button.primary:hover,
input[type="submit"].primary:hover,
.button.primary:hover {
  border-bottom: 3px solid #00bfff;
}
button.dangerous,
input[type="submit"].dangerous,
.button.dangerous {
  border-bottom: 3px solid #a02424;
}
button.dangerous:hover,
input[type="submit"].dangerous:hover,
.button.dangerous:hover {
  border-bottom: 3px solid #d54444;
}
button.isLoading:before,
input[type="submit"].isLoading:before,
.button.isLoading:before {
  content: "\e002";
  font-family: Flaticon;
  margin-right: 0.5em;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
table.modest {
  border-collapse: collapse;
}
table.modest.markEven tbody tr:nth-child(even) td {
  background-color: #f1f3f4;
}
table.modest th,
table.modest td {
  padding: 5px;
}
table.modest th.numeric,
table.modest td.numeric {
  text-align: right;
}
table.modest th {
  font-weight: normal;
  text-transform: uppercase;
  font-size: 90%;
  text-align: left;
}
table.modest thead td.empty {
  border-bottom: 1px solid #5c6b70;
  border-right: 1px solid #5c6b70;
}
table.modest thead th {
  border-bottom: 1px solid #5c6b70;
  padding-bottom: 2px;
}
table.modest tbody th {
  border-right: 1px solid #5c6b70;
}
.largeNavigation {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0px;
  margin-right: 400px;
  width: auto;
  max-width: 100%;
}
.largeNavigation > li {
  display: inline-block;
  padding: 6px 8px 4px;
  margin: 0 3px;
  border-top: 3px solid #94afb8;
}
.largeNavigation > li.withIcon {
  padding-left: 7px;
}
.largeNavigation > li.first {
  margin-left: 0px;
}
.largeNavigation > li.service {
  font-size: 80%;
  line-height: 2.1;
}
.largeNavigation > li:hover {
  border-top: 3px solid #51707a;
}
.largeNavigation > li:hover a {
  color: black;
}
.largeNavigation > li a {
  text-transform: uppercase;
  font-size: 110%;
  text-decoration: none;
  color: #303435;
}
.largeNavigation > li.current {
  border-top: 5px solid #00bfff;
  margin-top: -2px;
}
.largeNavigation > li.current a {
  font-weight: bold;
}
.appNavigation {
  display: none;
  list-style-type: none;
  padding-left: 0;
  clear: both;
  margin-top: 0px;
}
.appNavigation > li {
  float: left;
  margin: 1px 5px 0;
  padding: 5px 10px 10px;
  border-top: 2px solid #94afb8;
}
.appNavigation > li.first {
  margin-left: 0px;
}
.appNavigation > li.withIcon {
  padding-left: 4px;
}
.appNavigation > li:hover {
  border-top: 3px solid #51707a;
  margin-top: 0;
}
.appNavigation > li:hover a {
  color: black;
}
.appNavigation > li.current {
  border-top: 3px solid #00bfff;
  margin-top: 0;
}
.appNavigation > li.current a {
  font-weight: bold;
}
.appNavigation > li a {
  text-decoration: none;
  color: #303435;
}
.moduleNavigation {
  list-style-type: none;
  padding-left: 0;
  clear: both;
  margin-top: 0px;
  border-top: 1px solid #d5dbdd;
}
.moduleNavigation > li {
  float: left;
  margin: 3px 5px 5px;
  padding: 5px 10px 10px;
  border-top: 2px solid #94afb8;
}
.moduleNavigation > li.first {
  margin-left: 0px;
}
.moduleNavigation > li.withIcon {
  padding-left: 4px;
}
.moduleNavigation > li:hover {
  border-top: 3px solid #51707a;
  margin-top: 2px;
}
.moduleNavigation > li:hover a {
  color: black;
}
.moduleNavigation > li.current {
  border-top: 3px solid #00bfff;
  margin-top: 2px;
}
.moduleNavigation > li.current a {
  font-weight: bold;
}
.moduleNavigation > li a {
  text-decoration: none;
  color: #303435;
}
.widget {
  position: relative;
  margin-bottom: 20px;
}
.widget:hover .setup i {
  display: inline-block;
}
.widget .setup {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
}
.widget .setup i {
  color: #94afb8;
  display: none;
  cursor: pointer;
}
.widget h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
}
.widget.small {
  width: 160px;
  height: 160px;
}
.widget.small .wrapper {
  height: 140px;
}
.widget.small .chart {
  height: 130px;
  margin-top: 5px;
  width: 100%;
}
.widget.small.wide {
  width: 320px;
  height: 160px;
}
.widget.small.wide .wrapper {
  height: 140px;
}
.widget.small.wide .chart {
  height: 130px;
  margin-top: 5px;
  width: 100%;
}
.widget.large {
  width: 320px;
  height: 320px;
}
.widget.large .wrapper {
  height: 300px;
}
.widget.large .chart {
  height: 290px;
  margin-top: 5px;
  width: 100%;
}
.widget.large.wide {
  width: 640px;
  height: 320px;
}
.widget.large.wide .wrapper {
  height: 300px;
}
.widget.large.wide .chart {
  height: 290px;
  margin-top: 5px;
  width: 100%;
}
.widget.large.semiWide {
  width: 480px;
  height: 320px;
}
.widget.large.semiWide .wrapper {
  height: 300px;
}
.widget.large.semiWide .chart {
  height: 290px;
  margin-top: 5px;
  width: 100%;
}
.widget .doughnutCenter {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #51707a;
}
table.enum {
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 30px;
}
table.enum td,
table.enum th {
  padding: 3px 10px;
}
table.enum td.sign,
table.enum th.sign {
  text-align: center;
}
table.enum td.number,
table.enum th.number {
  text-align: right;
}
table.enum td.primary,
table.enum th.primary {
  background: url("../img/gray-stripe.png") top left repeat;
  border-left: 1px solid #5c6b70;
  border-right: 1px solid #5c6b70;
}
table.enum thead td,
table.enum thead th {
  border-bottom: 1px solid #51707a;
}
table.enum thead th {
  font-weight: normal;
  text-align: left;
}
table.enum tfoot {
  border-top: 10px solid white;
}
table.enum tfoot td[colspan],
table.enum tfoot th[colspan] {
  padding-left: 0px;
}
table.enum input[type="checkbox"] {
  cursor: pointer;
}
table.enum label {
  cursor: pointer;
  font-weight: bold;
}
table.enum button,
table.enum a.button {
  padding: 2px 10px 1px;
  text-transform: uppercase;
  line-height: 18px;
  margin: 0px 3px;
}
table.enum tr.removed .primary {
  text-decoration: line-through;
}
.modal {
  position: fixed;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal .overlay {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.modal .overlay .window {
  padding: 20px;
  background-color: #ffffff;
  max-width: 500px;
  margin: 0px auto;
  text-align: left;
  position: relative;
}
.modal .overlay .window .title h2 {
  margin-top: 0px;
}
.modal .overlay .window .title .closeButton {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
}
.modal .overlay .window .footer {
  text-align: right;
}
.hint {
  display: none;
  position: relative;
}
.hint i {
  color: #00bfff;
}
.hint .inner {
  display: none;
  position: absolute;
  width: 350px;
  top: 10px;
  border: 1px solid #00bfff;
  background: url('../img/gray-stripe.png') repeat;
  left: 30px;
  z-index: 10;
  padding: 10px;
}
.hint .inner p {
  line-height: 22px;
}
.hint .inner .closeButton {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
}
.hierarchyListing {
  color: #94afb8;
}
.hierarchyListing li.isLoading:after {
  font-family: FontAwesome;
  content: "\f1ce";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.hierarchyListing ul {
  list-style-type: none;
  padding-left: 15px;
}
.hierarchyListing li i {
  color: #303435;
  margin-right: 10px;
}
.hierarchyListing li span {
  color: #303435;
  cursor: pointer;
}
.hierarchyListing li.empty > span,
.hierarchyListing li.expanded > span {
  cursor: default;
}
.tableChartBar {
  height: 12px;
}
.hintsInput .top .label,
.hintsInput .top input {
  display: inline-block;
}
.hintsInput .top div {
  margin: 0px 5px;
}
.hintsInput .top .label {
  color: #d5dbdd;
}
.hintsInput .hints {
  position: relative;
}
.hintsInput .loadingIndicator {
  display: none;
}
.hintsInput.isLoading .loadingIndicator {
  display: inline-block;
}
.hintsInput ul {
  position: absolute;
  top: 2px;
  z-index: 10;
  clear: both;
  list-style-type: none;
  max-height: 200px;
  overflow-y: scroll;
  background-color: #ffffff;
  margin: 0px;
  padding-left: 0px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  border-left: 1px solid #d5dbdd;
}
.hintsInput ul li {
  cursor: pointer;
}
.hintsInput ul li:hover {
  background-color: #d5dbdd;
}
.hintsInput ul li span {
  margin: 3px 15px 3px 7px;
}
.hintsInput .clearer {
  clear: both;
}
.privilege {
  background-color: #d5dbdd;
  white-space: nowrap;
  padding: 5px;
  border-radius: 5px;
  font-size: 16px;
}
.privilege i {
  color: #51707a;
  font-size: 70%;
}
span.privilege {
  display: inline-block;
}
#MessageBox .badge {
  font-size: 14px;
  line-height: 20px;
  border-radius: 9px;
  padding: 3px 6px;
  margin: 1px;
  color: #FFF;
}
#MessageBox .badge.redSeverity {
  background-color: #d54444;
}
#MessageBox .badge.orangeSeverity {
  background-color: #e98c49;
}
#MessageBox .badge.greenSeverity {
  background-color: #85a3ae;
}
#BubbleBox {
  height: 5px;
  width: 5px;
  position: fixed;
  bottom: 0;
  right: 0;
}
#BubbleBox > div {
  width: 300px;
  bottom: 0;
  position: absolute;
}
#BubbleBox .bubble {
  cursor: pointer;
  width: 240px;
  margin: 10px;
  padding: 10px 20px;
  position: relative;
  color: #303435;
  border-radius: 10px;
  font-size: 14px;
  line-height: 18px;
}
#BubbleBox .bubble .time {
  margin: 0 0 5px 0;
  color: #ffffff;
}
#BubbleBox .bubble.severitygreen {
  background-color: #a9bfc6;
}
#BubbleBox .bubble.severityorange {
  background-color: #f0af80;
}
#BubbleBox .bubble.severityred {
  background-color: #e17a7a;
}
#BubbleBox .bubble .fa-times {
  position: absolute;
  color: #ffffff;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
#BubbleBox .bubble .favorited {
  position: absolute;
  color: #ffffff;
  top: 5px;
  right: 20px;
  cursor: pointer;
}
.workIndicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}
.workIndicator .semaphore {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #94afb8;
  margin: 10px 0 0 10px;
}
.workIndicator.working .inner {
  -webkit-animation-name: blink;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease;
}
.workIndicator.success .semaphore {
  background-color: #9bca5e;
}
.workIndicator.error .semaphore {
  background-color: #e17a7a;
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/* validation */
.row.required label.error,
label.error {
  font-weight: normal;
  color: #d54444;
  font-size: 80%;
}
#OnlineSwitch.unknown .fa {
  color: #94afb8;
}
#OnlineSwitch.offline .fa {
  color: #303435;
}
#OnlineSwitch.online .fa {
  color: #00bfff;
}
/* password strength indicator */
#PassStrengthIndicator {
  display: block;
  margin-top: 10px;
}
#PassStrengthIndicator #PasswordBarFrame {
  border-radius: 3px;
  display: inline-block;
  width: 13.9em;
  border: 1px solid #5c6b70;
  margin-left: 5px;
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.1);
  height: 1.4em;
  vertical-align: middle;
}
#PassStrengthIndicator #PasswordBarFrame div#StrengthBar {
  height: 100%;
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.2);
}
#PassStrengthIndicator #PasswordBarFrame div#StrengthBar.ok {
  background-color: rgba(122, 172, 57, 0.9);
}
#PassStrengthIndicator #PasswordBarFrame div#StrengthBar.error {
  background-color: rgba(213, 68, 68, 0.9);
}
@font-face {
  font-family: 'AltworxIcons';
  src: local('AltworxIcons'), url('/media/fonts/AltworxIcons.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
.withIcon {
  background-repeat: no-repeat;
}
.withIcon.iconHome {
  background-image: url('/media/ui-icons/home32.png');
}
.withIcon.iconOk {
  background-image: url('/media/ui-icons/ok32.png');
}
.withIcon.iconNg {
  background-image: url('/media/ui-icons/no32.png');
}
.icon {
  display: inline-block;
  font-style: normal;
  font-size: 22px;
  min-width: 22px;
  min-height: 22px;
  font-family: 'AltworxIcons';
}
