/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 12.2.2015, 8:43:31
    Author     : Václav Peredarjuk
*/

@import url("font-face.css");

/* ------------------------- Global styles web app USSPA -------------------- */ 
body, html {
    background:url('../images/bg-new.jpg') top center no-repeat;
    color:#404041;
    font-family: 'NimbusSansDOT-LighExte' !important;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-font-smoothing: subpixel-antialiased;
    -webkit-text-stroke: 0.15px;
    -moz-text-stroke: 0.15px;
    background-size:cover;
}

body #master #app-body button {
    border:none;
    font-family: 'NimbusSansDOT-LighExte' !important;
    outline: none;
}

.ui-overlay-a, .ui-page {
    background:transparent !important;
}

html, html a {
    -webkit-font-smoothing: antialiased !important;
}

body #overlay {
    background:url("../images/overlay.png") left top;
    position:fixed;
    left:0;
    top:0;
    z-index:5;
    width:100%;
    height:100%;
}

body #master {
    width:974px;
    background:#e7e7e8 url("../images/app-body.png") left bottom no-repeat;
    height:720px;
    position:absolute;
    left:50%;
    top:50%;
    margin: -360px 0 0 -487px;
    border-radius:8px;
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    overflow:hidden;
    z-index:10;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.6);
    -moz-box-shadow: 2px 2px 15px rgba(0,0,0,0.6);
    -webkit-box-shadow: 2px 2px 15px rgba(0,0,0,0.6);
}

body #master.masterRelative {
    position:relative;
    left:inherit;
    top:inherit;
    margin:0px auto 0px auto;
}

.pumpDisabled {
    opacity: 0.5;
}

body #master header {
    background:#f5f5f5;
    border-bottom:1px solid #dcdcdc;
    height:80px;
    position:absolute;
    left:0;
    top:0;
    width:100%;
    z-index:500;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

/* --------------------------- Global styles end  -----------------------------*/

/* Control section */
body #master section {
    width:974px;
    height:75px;
    position:absolute;
    left:0;
    bottom:0;
    background:#f5f5f5;
    border-top:1px solid #dcdcdc;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

body #master section .logout {
    width:28px;
    height:30px;
    background:url("../images/ikony/power.png") left top no-repeat;
    background-size:contain;
    display:block;
    position:absolute;
    left:68%;
    top:22px;
    margin-left:-14px;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
    opacity:0.5;
}

body #master section .logout:hover {
    opacity:1;
}


/* --------------------------- Header styles start ----------------------------*/
body #master header .spa-name {
    line-height:80px;
    font-size:20px;
    margin:0 0 0 0;
    text-align:center;
    text-transform: uppercase;
}

body #master header .usspa-logo {
    display:block;
    height:33px;
    width:120px;
    position:absolute;
    left:55px;
    bottom:20px;
    background:url("../images/usspa-logo.png") left top no-repeat;
    background-size:contain;
}

body #master header .time {
    display:inline-block;
    right:55px;
    text-align:right;
    top:20px;
    position:absolute;
    font-family: 'NimbusSansDOT-LighExte';
    width:auto;
}

body #master section .menu-icon {
    width:34px;
    height:27px;
    display:block;
    position:absolute;
    left:50%;
    top:25px;
    margin-left:-17px;
    background:url("../images/menu-icon.png")left top no-repeat;
    background-size:contain;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    opacity:0.5;
}

body #master section .menu-icon.active {
    width:34px;
    height:27px;
    display:block;
    position:absolute;
    left:50%;
    top:25px;
    margin-left:-17px;
    background:url("../images/menu-icon.png")left top no-repeat;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    opacity:1;
}

body #master section .menu-icon:hover {
    opacity:1;
}

body #master section .home-icon {
    width:32px;
    height:30px;
    display:block;
    position:absolute;
    left:32%;
    top:22px;
    margin-left:-16px;
    background:url("../images/ikony/home.png")left top no-repeat;
    background-size:contain;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    opacity:0.5;
}

body #master section .home-icon.active {
    width:32px;
    height:30px;
    display:block;
    position:absolute;
    left:32%;
    top:22px;
    margin-left:-16px;
    background:url("../images/ikony/home.png")left top no-repeat;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    opacity:1;
}

body #master section .home-icon:hover {
    opacity:1;
}

/* --------------------------- Header styles end  -----------------------------*/


/* --------------------------- Application styles start -----------------------*/

#app-body {
    height: 565px;
    padding-top: 80px;
    position: relative;
}
#app-body #scrollbox {
    height: 150px;
}

#app-body p {
    padding:0 25px 0 25px;
    text-align:center;
}

#app-body #successNotif {
    position:absolute;
    left:0;
    top:50%;
    font-size:25px;
    width:974px;
    text-align:center;
    display:none;
}

#app-body-overlay {
    position: absolute;
    width: 100%;
    display: none;
    background: #bbb;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

header .last-update {
    position:absolute;
    text-align:right;
    right:55px;
    top:31px;
}

.last-update.resp {
    display:none;
}

#app-body h1 {
    margin:46px 0 65px 0;
    text-align:center;
    text-transform:uppercase;
    font-family: 'NimbusSansDOT-BoldExte';
}

#app-body h1.small-bottom-gap {
    margin-bottom:35px;
    margin-top:35px;
}

#app-body h1.bottom25 {
    margin:46px 0 25px 0;
    font-family: 'NimbusSansDOT-BoldExte';
}


#app-body .menu-box {
    width:850px;
    margin:auto;
    margin-top:0px;
}

#master.es #app-body .menu-box a, #master.en #app-body .menu-box a, #master.de #app-body .menu-box a {
    font-size:19px;
}

#app-body .menu-box a {
    width:259px;
    height:76px;
    display:table;
    /*line-height:76px;*/
    float:left;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    border:1px solid #c6c6c6;
    margin:0 32px 32px 0;
    text-align:center;
    text-transform:uppercase;
    color:#9c9c9c;
    text-decoration:none;
    font-size:24px;
    border-radius:5px;
    -webkit-border-radius:5px;
    -o-border-radius:5px;
    -moz-border-radius:5px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

#app-body .menu-box a span {
    display:table-cell;
    vertical-align:middle;
    text-align:center;
    width:100%;
}

#app-body .menu-box a:hover{
    border:1px solid #404041;
    color:#404041;
}

#app-body .menu-box a.last-row {
    margin-right:0;
}

#app-body .menu-box a.last-row.margin-right {
    margin-right:32px;
}

/* Toggle styles start */

#app-body .row {
    width:100%;
}

#app-body .row .left {
    float:left;
    width:50%;
    min-height:100px;
}

#app-body .row .toggle-box {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    text-align:center;
}

#app-body .row .toggle-box.filtrace {
    padding-right:0px;
    width:637px;
    margin:auto;
}

#app-body #usporny-neaktivni {
    float:left;
    margin-left:0;
}

#app-body #usporny-aktivni {
    float:right;
}

#app-body .row .toggle-box.usporny {
    padding-right:0px;
    width:370px;
    margin:auto;
}

#app-body .row .toggle-box#blokace-topeni-switch {
    padding-right:0px;
    width:637px;
    margin:auto;
}

#app-body #filt-neaktivni {
    float:left;
    margin-left:0;
}

#app-body #filt-aktivni {
    float:right;
}

#app-body #filt-automaticka {
    float:left;
    margin-left:0;
}

#app-body #filt-manualni {
    float:right;
}

#app-body .row .right {
    float:right;
    width:50%;
    min-height:100px;
    position:relative;
}

#app-body .row .overlay-avoid {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    z-index:300;
}

.overlay-prevent {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    z-index:100;
    display: none;
}

.overlay-old-browser {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    z-index:500;
    display: none;
    background:url('../images/bg2.jpg') top center no-repeat;
}

.overlay-old-browser p {
    font-size:20px;
    text-align:center;
    padding:50px 50px 0 50px;
    color:#fff;
}


#app-body .row:after {
    clear:both;
    content:"";
    display:block;
    visibility:hidden;
}

#app-body .toggle,
#app-body .toggler {
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
}

#app-body .toggler {
    color: slategray;
    transition: .2s;
    cursor:pointer;
    font-size:25px;
    color:#a7a9ac;
}

#app-body .toggler--is-active { 
    color: #404041; 
}

#app-body .b { display: block; }

#app-body .toggle {
    margin-left: -20px;
    width: 100px;
    height: 32px;
    border-radius: 5px;
    background:#dbdbdb;
    position:relative;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

#app-body .check {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 6;
}

#app-body .check:checked ~ .switch {
    right: 2px;
    left: 69px;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: .08s, 0s;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#app-body .switch {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 2px;
    right: 0;
    width:31px;
    height:31px;
    border-radius: 5px;
    z-index: 1;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: 0s, .08s;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #a9a9a9;
}
/*  Toggle styles end */

#app-body .multiple-select-box {
    width:637px;
    margin:25px auto 0 auto;
    position:relative;
    display:none;
}

#app-body #multiple-select {
    display:none;
}

#app-body .confirm-box {
    width:637px;
    text-align:center;
    margin:0 auto;
}

#app-body .automatic-options {
    width:637px;
    text-align:center;
    margin:0 auto;
}

#app-body .doba-box {
    display:inline-block;
    margin-top:38px;
}

#app-body .visible-box {
    display:inline-block;
}

#app-body .doba-box.firstCycle {
    float:left;
    margin-bottom:20px;
}

#app-body .doba-box.secondCycle {
    float:right;
    margin-right:9px;
    margin-bottom:20px;
}

#app-body .cyclesBox:after {
    clear:both;
    content:"";
    visibility:hidden;
    display:block;
}

#app-body .center-box {
    text-align:center;
    margin:0 0 25px 0;
}

#app-body .setting-box .center-box {
    width:50%;
    float:left;
}

#app-body .center-box.static-parameters-box {
    width:100%;
    padding:0 35px 0 35px;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
     margin:30px 0 0 0;
}

#app-body .setting-box:after {
    clear:both;
    display:block;
    content:"";
}

#app-body .center-box.static-parameters-box .static-parameter-box {
    display:inline-block;
    margin:0 10px 20px 10px;
}

#app-body .center-box:not(.static-parameters-box):last-child {
    margin:0;
}

#app-body .center-box .center-box-inner {
    margin:0 auto;
    display:inline-block;
}

#app-body .doba-box .doba, #app-body .center-box .parameter {
    display:block;
    text-transform: uppercase;
    font-size:17px;
    margin-bottom:16px;
}

#app-body .center-box .parameter {
    font-size:23px;
    margin-bottom:5px;
}

#app-body .center-box .actual-value {
    font-size:42px;
    display:block;
    margin:0;
    letter-spacing:1px;
}

#app-body .center-box .actual-value.green {
    color:#b1c95b;
}

#app-body .center-box .actual-value.orange {
    color:#f7c64f;
}

#app-body .center-box .actual-value.red {
    color:#e13328;
}

#app-body .center-box .parameter {
    text-transform:none;
    text-align:center;
}

#app-body .doba-box .doba-value, #app-body .center-box .parameter-value {
    display:inline-block;
    vertical-align:middle;
    font-size:42px;
    padding:0;
}

#app-body .center-box .parameter-value {
    min-width:120px;
}

#app-body .doba-box .minus-btn, #app-body .usporny-box .minus-btn, #app-body .center-box .minus-btn  {
    //display:table-cell;
    display:inline-block;
    background:url("../images/ikony/MINUS.png") left center no-repeat;
    background-size:contain;
    width:44px;
    height:44px;
    margin-right:23px;
    cursor:pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    vertical-align:middle;
}

#app-body .doba-box .minus-btn.disabled, #app-body .center-box .minus-btn.disabled {
    background:url("../images/ikony/MINUS-DISABLED.png") left center no-repeat;
    background-size:contain;
    cursor:default;
}

#app-body .usporny-box .minus-btn.disabled {
    background:url("../images/ikony/MINUS-DISABLED.png") left center no-repeat;
    background-size:contain;
    cursor:default;
}

#app-body .doba-box .plus-btn, #app-body .usporny-box .plus-btn, #app-body .center-box .plus-btn {
    display:inline-block;
    vertical-align:middle;
    background:url("../images/ikony/PLUS.png") left center no-repeat;
    background-size:contain;
    width:44px;
    height:44px;
    margin-left:23px;
    cursor:pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

#app-body .doba-box .plus-btn.disabled, #app-body .center-box .plus-btn.disabled {
    background:url("../images/ikony/PLUS-DISABLED.png") left center no-repeat;
    background-size:contain;
    cursor:default;
}

#app-body .usporny-box .plus-btn.disabled {
    background:url("../images/ikony/PLUS-DISABLED.png") left center no-repeat;
    background-size:contain;
    cursor:default;
}

/*#app-body .confirm-box .confirmHeat {
    width:126px;
    height:125px;
    line-height:125px;
    display:inline-block;
    background:url("../images/button-bg.png") left top no-repeat;
    margin:20px 0 0 0;
    font-size:23px;
    cursor:pointer;
} */

#app-body .confirmHeat {
    width: auto;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    position:absolute;
    right:55px;
    bottom:30px;
    font-size: 23px;
    cursor: pointer;
    color:#454545;
    border: 1px solid #c5c5c5;
    padding: 5px 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#app-body .confirmHeat:hover {
    border:1px solid #404041;
    background:#404041;
    color:#fff;
}

#app-body .automatic-options {
    display:block;
}

#app-body .automatic-options .doba-box {
    display:block !important;
}

#app-body #dialogErr {
    display: none;
    width: 400px;
    height: 300px;
}
/*
#app-body .confirm-box .confirmFilt {
    width:126px;
    height:125px;
    line-height:125px;
    display:block;
    background:url("../images/button-bg.png") left top no-repeat;
    margin:20px 0 0 0;
    font-size:23px;
    float:right;
    cursor:pointer;
} */

#app-body .confirmFilt {
    width: auto;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    position:absolute;
    right:55px;
    bottom:30px;
    font-size: 23px;
    cursor: pointer;
    color:#454545;
    border: 1px solid #c5c5c5;
    padding: 5px 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#app-body .confirmFilt:hover {
    border:1px solid #404041;
    background:#404041;
    color:#fff;
}

#app-body .multiple-select-box span {
    width:44px;
    height:44px;
    border-radius:22px;
    display:inline-block;
    -webkit-border-radius:44px;
    -moz-border-radius:44px;
    -o-border-radius:44px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    border:1px solid #a7a9ac !important;
    margin:0 9px 14px 0;
    line-height:42px;
    text-align:center;
    font-size:21px;
    color:#a7a9ac;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor:pointer;
    background:transparent;
}

#app-body .multiple-select-box.disabledState span.active {
    border:1px solid #a7a9ac;
    color:#a7a9ac;
    background: transparent;
}

#app-body .multiple-select-box span.active {
    border: 1px solid #fff;
    background: #4c4a4b;
    color:#fff;
}

/*#app-body .multiple-select-box span.active:hover {
    border: 1px solid #4c4a4b;
    background: #4c4a4b;
    color: #fff;
}*/
#app-body .multiple-select-box span.inactive {
    border: 1px solid #4c4a4b;
    color: #4c4a4b;
}
/*#app-body .multiple-select-box span.inactive:hover {
    border: 1px solid #fff;
    background: #4c4a4b;
    color:#fff;
}*/

#app-body .multiple-select-box.disabledState span {
    border:1px solid #a7a9ac;
    color:#a7a9ac;
}

#app-body table.table-styled {
    width:860px;
    margin:auto;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border:1px solid #bcbcbc;
}

#app-body table#table-head tr:hover {
    background: none !important;
}

#app-body table.table-styled tr {
    background:none;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

#app-body table.table-styled tr:hover {
    background:#f4f4f4;
}

#app-body table.table-styled td, #app-body table.table-styled th  {
    height:35px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    padding-left:10px;
}

#app-body .visible-small {
    display:none;
}

#app-body table.table-styled th {
    text-align:left;
    padding-left:10px;
    font-size:14px;
}

#app-body table.table-styled td {
    border-bottom:1px solid #bcbcbc;
    border-right:1px solid #bcbcbc; 
    font-size:14px;
    padding-top:3px;
    padding-bottom:3px;
}

#app-body table.table-styled tr td:last-child {
    border-right:none;
}

#app-body table.table-styled tr th:last-child {
    border-right:none;
}

#app-body table.table-styled thead th {
    border-bottom:1px solid #bcbcbc;
    border-right:1px solid #bcbcbc;
}

#app-body table.table-styled tr:last-child td {
    border-bottom:none;
}

#app-body table.table-styled th.datum, #app-body table.table-styled td.datum {
    width:150px;
}

#app-body table.table-styled th.cas, #app-body table td.cas {
    width:125px;
}

#app-body table.table-styled th.kod, #app-body table td.kod {
    width:150px;
}

#app-body table.table-styled th.popis, #app-body table td.popis {
    width:360px;
}

#app-body table td.popis {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cpointer {
    cursor: pointer;
}

#app-body table td.akce {
    text-align:center;
    padding-left:0;
}

#app-body .table-box {
    width:860px;
    margin:auto;
}

#app-body .table-box h3 {
    margin:0 0 5px 10px;
}

#app-body .table-box h3.top33 {
    margin-top:33px;
}

#app-body .table-box .language-box {
    width:860px;
    display:block;
    min-height:25px;
}

#app-body .table-box .language-box .language-select {
    float:right;
}

#app-body .table-box .language-box .language-select h3 {
    display:inline-block;
}

#app-body .table-box .language-box .language-select:after {
    clear:right;
    content:"";
    visibility:hidden;
    display:block;
}

/* Home styles elements */

#app-body .temperature {
    position:absolute;
    left:124px;
    top:191px;
    display:inline-block;
    font-size:97px;
}

.pump1, .pump2, .pump3, .blower, .light1 {
    cursor: pointer;
}
#app-body .pump1 {
    position:absolute;
    left:550px;
    top:190px;
    display:inline-block;
    width:124px;
    height:124px;
    background:url("../images/ikony/PUMP1_OFF.png") left top no-repeat;
    background-size:contain;
    curson:pointer;
}

#app-body .pump1.on {
    background:url("../images/ikony/PUMP1_ON.png") left top no-repeat;
    background-size:contain;
}
#app-body .pump1.on_lower {
    background:url("../images/ikony/PUMP1_LOW.png") left top no-repeat;
    background-size:contain;
}

#app-body .pump2 {
    position:absolute;
    left:734px;
    top:190px;
    display:inline-block;
    width:124px;
    height:124px;
    background:url("../images/ikony/PUMP2_OFF.png") left top no-repeat;
    background-size:contain;
    curson:pointer;
}

#app-body .pump2.on {
    background:url("../images/ikony/PUMP2_ON.png") left top no-repeat;
    background-size:contain;
}

#app-body .pump3 {
    position:absolute;
    left:550px;
    top:369px;
    display:inline-block;
    width:124px;
    height:124px;
    background:url("../images/ikony/PUMP3_OFF.png") left top no-repeat;
    background-size:contain;
    curson:pointer;
}

#app-body .pump3.on {
    background:url("../images/ikony/PUMP3_ON.png") left top no-repeat;
    background-size:contain;
}

#app-body .blower {
    position:absolute;
    left:550px;
    top:369px;
    display:inline-block;
    width:124px;
    height:124px;
    background:url("../images/ikony/BLOWER_OFF.png") left top no-repeat;
    background-size:contain;
    curson:pointer;
}

#app-body .blower.on {
    background:url("../images/ikony/BLOWER_ON.png") left top no-repeat;
    background-size:contain;
}

#app-body .light1 {
    position:absolute;
    left:734px;
    top:369px;
    display:inline-block;
    width:124px;
    height:124px;
    background:url("../images/ikony/LIGHT_OFF.png") left top no-repeat;
    background-size:contain;
    curson:pointer;
}

#app-body .light1.on {
    background:url("../images/ikony/LIGHT_ON.png") left top no-repeat;
    background-size:contain;
}


#app-body .set-box {
    position:absolute;
    left:124px;
    top:323px;
    display:inline-block;
    vertical-align:middle;
}

#app-body .set-box .minus-btn {
    //display:table-cell;
    display:inline-block;
    background:url("../images/ikony/MINUS.png") left center no-repeat;
    background-size:contain;
    width:59px;
    height:59px;
    cursor:pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    padding:0;
    vertical-align:middle;
}

#app-body .set-box .minus-btn.disabled {
    background:url("../images/ikony/MINUS-DISABLED.png") left center no-repeat;
    background-size:contain;
    cursor: default;
}

#app-body .set-box .plus-btn {
    display:inline-block;
    background:url("../images/ikony/PLUS.png") left center no-repeat;
    background-size:contain;
    width:59px;
    height:59px;
    cursor:pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    vertical-align:middle;
}

#app-body .set-box .plus-btn.disabled {
    background:url("../images/ikony/PLUS-DISABLED.png") left center no-repeat;
    background-size:contain;
    cursor: default;
}

#app-body .set-box .temperature-set-box {
    font-size:48px;
    display:inline-block;
    padding:0 17px 0 17px;
    vertical-align:middle;
}

#app-body .set-box .temperature-set-box.disabled {
    color:#919193;
} 

#app-body .heater {
    position:absolute;
    left:117px;
    top:430px;
    display:inline-block;
    width:62px;
    height:62px;
    background:url("../images/ikony/HEATER.png") left top no-repeat;
    background-size:contain;
}

#app-body .heater.blocked {
    background:url("../images/ikony/HEATER_BLOCKED.png") left top no-repeat;
    background-size:contain;
}

#app-body .heater.error {
    background:url("../images/ikony/HEATER_ERROR.png") left top no-repeat;
    background-size:contain;
}

#app-body .filtration {
    position:absolute;
    left:201px;
    top:430px;
    display:inline-block;
    width:62px;
    height:62px;
    background:url("../images/ikony/FILTRATION.png") left top no-repeat;
    background-size:contain;
}

#app-body .filtration.error {
    background:url("../images/ikony/FILTRATION_ERROR.png") left top no-repeat;
    background-size:contain;
}

#app-body .reminder {
    position:absolute;
    left:288px;
    top:430px;
    display:inline-block;
    width:62px;
    height:62px;
    background:url("../images/ikony/REMINDER.png") left top no-repeat;
    background-size:contain;
}
#app-body .reminder.warning {
    background:url("../images/ikony/REMINDER-WARNING.png") left top no-repeat;
    background-size:contain;
}

#app-body .alarm {
    position:absolute;
    left:374px;
    top:430px;
    display:inline-block;
    width:62px;
    height:62px;
    background:url("../images/ikony/ALARM.png") left top no-repeat;
    background-size:contain;
}
#app-body .alarm.warning {
    background:url("../images/ikony/ALARM-WARNING.png") left top no-repeat;
    background-size:contain;
}

/*#app-body #login-form .confirmLogin {
    width:126px;
    height:125px;
    line-height:125px;
    display:inline-block;
    background:url("../images/button-bg.png") left top no-repeat;
    margin:90px 0 0 160px;
    font-size:23px;
    cursor:pointer;
    border:none;
    font-family: 'NimbusSansDOT-LighExte';
}*/

#app-body .confirmLogin {
    width: auto;
    height: 55px;
    line-height: 42px;
    display: inline-block;
    font-size: 23px;
    cursor: pointer;
    color:#454545;
    background:none;
    border: 1px solid #c5c5c5 !important;
    padding: 5px 20px;
    border-radius: 5px;
    margin:50px 0 0 160px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    font-family: 'NimbusSansDOT-LighExte';
}

#app-body .confirmLogin:hover {
    border:1px solid #404041;
    background:#404041;
    color:#fff;
}

#app-body #login-form input {
    font-family: 'NimbusSansDOT-LighExte';
}

#app-body .usporny-box {
    margin-top:40px;
}

#app-body .usporny-box .minus-btn {
    display:table-cell;
    background:url("../images/ikony/MINUS.png") left center no-repeat;
    background-size:contain;
    width:59px;
    height:59px;
    cursor:pointer;
}

#app-body .usporny-box .plus-btn {
    display:table-cell;
    background:url("../images/ikony/PLUS.png") left center no-repeat;
    background-size:contain;
    width:59px;
    height:59px;
    cursor:pointer;
}

#app-body .usporny-box .time-set-box {
    font-size:60px;
    display:table-cell;
    padding:0 30px 0 30px;
    vertical-align:middle;
}

#app-body #timepicker {
    display:block;
    position:relative;
    margin-top:15px;
}

.xdsoft_datetimepicker {
    display:block !important;
}

#app-body .timepicker_wrap {
    display:block !important;
}


/*#app-body .confirmMod {
    width:126px;
    height:125px;
    line-height:125px;
    display:inline-block;
    background:url("../images/button-bg.png") left top no-repeat;
    margin:50px 0 0 142px;
    font-size:23px;
    cursor:pointer;
    border:none;
    font-family: 'NimbusSansDOT-LighExte';
    text-align:center;
}*/

#app-body .confirmMod {
    width: auto;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    position:absolute;
    right:55px;
    bottom:30px;
    font-size: 23px;
    cursor: pointer;
    color:#454545;
    border: 1px solid #c5c5c5;
    padding: 5px 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index:1000;
}

#app-body .confirmMod:hover {
    border:1px solid #404041;
    background:#404041;
    color:#fff;
}

/* datepicker overrides styles */

#app-body #datepicker {
    min-height:250px;
    width:370px;
    margin:20px auto 0 auto;
}

.ui-datepicker {
    background:none !important;
    margin:0 0 0 0px;
    border:none !important;
    width:364px !important;
}

.ui-datepicker-title {
    font-family: 'NimbusSansDOT-LighExte';
}

.ui-datepicker-header {
    background:none !important;
    border:none !important;
}

.ui-datepicker thead th {
    font-family: 'NimbusSansDOT-LighExte';
}

.ui-datepicker tbody td {
    font-family: 'NimbusSansDOT-LighExte';
    background:none !important;
    text-align:center !important;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
}

.ui-datepicker .ui-state-default {
    background:none !important;
    text-align:center !important;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.ui-datepicker .ui-state-default.ui-state-hover {
    color:#fff;
    background:#404041 !important;
    border:none !important;
}

.ui-datepicker td.ui-state-disabled {
    opacity:0.4;
}

.ui-datepicker .ui-state-active {
    background:#404041 !important;
    border:none !important;
    color:#fff !important;
}

.ui-datepicker .ui-state-highlight {
    border:1px solid #404041 !important;
    color:#404041 !important;
}

.ui-datepicker .ui-state-highlight.ui-state-hover {
    color:#fff !important;
}

.ui-datepicker .ui-state-highlight.ui-state-active {
    color:#fff !important;
}

.ui-datepicker td span, .ui-datepicker td a {
    padding:3px 15px 3px 15px !important;
}

.ui-datepicker .ui-datepicker-next {
    background:url("../images/ikony/arrow-right.png") center center no-repeat !important;
    border:none !important;
}

.ui-datepicker .ui-datepicker-next-hover {

}
.ui-datepicker .ui-datepicker-next span {
    background:none !important;
}
.ui-datepicker .ui-datepicker-next.ui-state-disabled {
    background:url("../images/ikony/arrow-right-disabled.png") center center no-repeat !important;
}

.ui-datepicker .ui-datepicker-prev {
    border:none !important;
    background:url("../images/ikony/arrow-left.png") center center no-repeat !important;
}
.ui-datepicker .ui-datepicker-prev span {
    background:none !important;
}
.ui-datepicker .ui-datepicker-prev.ui-state-disabled {
    background:url("../images/ikony/arrow-left-disabled.png") center center no-repeat !important;
}


/* Chosen select style overrides */

.chosen-container {
    min-width:50px;
    height:30px;
    border:1px solid #bcbcbc;
    text-align:center !important;
    margin-left:15px;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    font-size:19px !important;
}

.chosen-container .chosen-single {
    background:none !important;
    border:none !important;
    text-align:center !important;
    padding:0 !important;
    box-shadow:none !important;
    height:30px !important;
    line-height:30px !important;
}

.chosen-container .chosen-single span {
    margin-right:0 !important;
}

.chosen-container.chosen-with-drop .chosen-drop {
    border-left:1px solid #bcbcbc;
    border-right:1px solid #bcbcbc;
    border-bottom:1px solid #bcbcbc;
    width:52px;
    top:-1px;
    left:-1px !important;
    box-shadow:none !important;
    background:#e7e7e8 !important;
}
.chosen-container .chosen-search {
    display:none !important; 
}

.chosen-container .chosen-results {
    padding-top:4px !important;
}

.chosen-container .chosen-results .active-result {
    border-radius:4px !important;
    -moz-border-radius:4px !important;
    -webkit-border-radius:4px !important;
}

.chosen-container .chosen-results .active-result.highlighted {
    background:#404041;
}

#app-body.errorPage {
    text-align:center;
}

#app-body h1.errorTitle {
    font-size:70px;
    padding-left:75px;
    display:inline-block;
    width:auto;
    background:url('../images/ikony/warning.png') left center no-repeat;
}

#app-body h1.small-margin {
    margin-bottom:40px;
}

#app-body p.errorDesc {
    font-size: 30px;
    padding: 0 120px 0 120px;
    text-align: center;
}

#app-body .box-hour {
    margin:auto;
    width:370px;
    text-align:center;
}

#app-body .box-hour.disabled .set-time {
    font-size:35px;
    display:inline-block;
    padding:0 15px 0 15px;
    color:#a2a2a3;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}

#app-body .box-hour.disabled .hour-down {
    display: inline-block;
    background: url("../images/ikony/MINUS-DISABLED.png") left center no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    cursor: default;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}

#app-body .box-hour.disabled .hour-up {
    display: inline-block;
    background: url("../images/ikony/PLUS-DISABLED.png") left center no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    cursor: default;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}

#app-body .box-hour .hour-down {
    display: inline-block;
    background: url("../images/ikony/MINUS.png") left center no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    cursor: pointer;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}

#app-body .box-hour .hour-down.disabled {
    background: url("../images/ikony/MINUS-DISABLED.png") left center no-repeat;
    background-size: contain;
}

#app-body .box-hour .set-time {
    font-size:35px;
    display:inline-block;
    padding:0 15px 0 15px;
    position:relative;
    top:-8px;
}

@-moz-document url-prefix() { 
  #app-body .box-hour .hour-down, #app-body .box-hour .hour-up {
     vertical-align: top;
  }
  
  #app-body .box-hour .set-time {
      top:-2px;
  }
}

#app-body .box-hour .hour-up {
    display: inline-block;
    background: url("../images/ikony/PLUS.png") left center no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    cursor: pointer;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}

#app-body .box-hour .hour-up.disabled {
    background: url("../images/ikony/PLUS-DISABLED.png") left center no-repeat;
    background-size: contain;
}

/* login form styles */

#app-body #login-form {
    margin-top:185px;
}

.language-box-login {
    margin: 22px 40px 0 0;
    float: right;
}

.language-box-login .chosen-container, #app-body .language-box-login .chosen-container .chosen-single  {
    height:35px !important;
}

.language-box-login .chosen-container {
    width:120px !important;
    margin-left:0;
}

.language-box-login .chosen-container .chosen-drop {
    width:101.5% !important;
}

.language-box-login .chosen-container .chosen-results {
    background:#f5f5f5;
    margin:0;
    padding:0 4px 4px 4px;
}

.language-box-login .chosen-container .chosen-single span {
    line-height:35px;
    height:35px;
}


#app-body .form-row {
    width:475px;
    text-align:center;
    margin:0 0 0 216px;
}

#app-body .form-row label {
    display:inline-block;
    width:225px;
    font-size:25px;
    text-align:left;
    line-height:45px;
}

#app-body .form-row input[type="text"], #app-body .form-row input[type="password"] {
    background:#fff;
    border-radius:5px;
    -webkit-border-radius:5px;
    -o-border-radius:5px;
    -moz-border-radius:5px;
    border:none;
    height:45px;
    width:242px;
    margin:0 0 7px 0;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    padding:0 0 0 24px;
    font-size:18px;
    display:inline-block;
    border:1px dotted #c3c3c3;
    outline: none !important;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}

#app-body .form-row input[type="text"]:hover, #app-body .form-row input[type="password"]:hover {
    border:1px dotted #818181;
}

#app-body .display_none {
    display: none;
}
#app-body table td.control {
    width: 13%;
}

#app-body .table-box .del-btn, #app-body .table-styled .del-btn {
    width:24px;
    height:24px;
    display:inline-block;   
    background:url("../images/ikony/delete.png") left top no-repeat;
    background-size:contain;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
    cursor:pointer;
    position:relative;
    top:3px;
}

#app-body .table-box .del-btn:hover, #app-body .table-styled .del-btn:hover {
    background:url("../images/ikony/delete-hover.png") left top no-repeat;
    background-size:contain;
    
}

#app-body .table-box .edit-btn {
    width:24px;
    height:24px;
    display:inline-block;
    background:url("../images/ikony/edit.png") left top no-repeat;
    background-size:contain;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
    cursor:pointer;
    position:relative;
    top:3px;
}

#app-body .table-box .edit-btn:hover {
    background:url("../images/ikony/edit-hover.png") left top no-repeat;
    background-size:contain;
}

#app-body .table-box .ok-btn {
    width:24px;
    height:24px;
    display:none;
    background:url("../images/ikony/ok.png") left top no-repeat;
    background-size:contain;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
    cursor:pointer;
    position:relative;
    top:5px;
}

#app-body .table-box .ok-btn:hover {
    background:url("../images/ikony/ok-hover.png") left top no-repeat;
    background-size:contain;
}

#app-body #emails_table {

}

#app-body #emails_table td {
    vertical-align:middle;
    height:34px;
}

#app-body table td.control {
    width:70px;
}

#app-body .input-email {
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border:1px solid rgb(220,220,220) !important;
    min-height:25px;
    font-family: 'NimbusSansDOT-LighExte' !important;
    font-size:15px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    padding:0 0 0 5px;
    position:relative;
    top:-4px;
    width: 250px;
}

#app-body #langSelectionResponsive, header #langSelectionResponsive  {
    display:none;
}

/* --------------------------- Application styles end  -----------------------------*/

/* --------------------------- Error Dlg start -----------------------------*/

.ui-widget-overlay {
    background:rgba(0,0,0,0.6) !important;
    z-index:600 !important;
    opacity:0.8 !important;
}


.ui-dialog {
    border-radius:8px !important;
    -moz-border-radius:8px !important;
    -webkit-border-radius:8px !important;
    font-family: 'NimbusSansDOT-LighExte' !important;
    padding:0 !important;
    z-index:1000 !important;
    _z-index:1000;
}

.ui-dialog .ui-dialog-titlebar {
    background:rgb(240,240,240); 
    border:none;
    font-family: 'NimbusSansDOT-BoldExte' !important;
    padding-top:10px !important;
    padding-bottom:10px !important;
}

.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
    color:#404041 !important;
}

.ui-dialog .ui-dialog-titlebar-close {
    background:url("../images/ikony/delete.png") left top no-repeat !important;
    background-size:contain !important;
    width:22px !important;
    height:22px !important;
    display:block;
    border:none !important;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
    top:19px !important;
    right:8px !important;
}

.ui-dialog .ui-dialog-titlebar-close:hover {
    width:22px !important;
    height:22px !important;
    background:url("../images/ikony/delete-hover.png") left top no-repeat !important;
    background-size:contain !important;
}

.ui-dialog .ui-dialog-titlebar-close .ui-button-icon-primary {
    background:none !important;
}

.ui-dialog .ui-button {
    font-family: 'NimbusSansDOT-LighExte' !important;
    outline:none !important;
}

.ui-dialog p.warning-content {
    background:url("../images/ikony/warning-validation.png") left center no-repeat !important;
    min-height:37px;
    padding:8px 0 0 50px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.ui-dialog .ui-dialog-buttonpane {
    background:rgb(250,250,250) !important;
}

/* --------------------------- Error Dlg end -----------------------------*/


/* Scrollbar definitions */ 

#app-body #table-body-box {
    max-height:315px;
    overflow:auto;
    width:860px;
    margin:auto;
    border-bottom: 1px solid #bcbcbc;
    border-right: 1px solid #bcbcbc;
    border-left: 1px solid #bcbcbc;
    border-bottom-left-radius:5px;
    -moz-border-bottom-left-radius:5px;
    -webkit-border-bottom-left-radius:5px;
    border-bottom-right-radius:5px;
    -moz-border-bottom-right-radius:5px;
    -webkit-border-bottom-right-radius:5px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    overflow-x:hidden;
}

#app-body #table-body-box table {
    border:none;
}

#app-body #table-body-box table td {
    border-bottom:1px solid #bcbcbc;
    border-right:1px solid #bcbcbc; 
}

#app-body #table-body-box table td:last-child {
    border-right:none;
}

#app-body #table-body-box table tr:last-child {
    border-bottom:none;
}

#app-body #table-body-box table tr:last-child td {
    border-bottom:none;
}

#app-body #table-head-box {
    border-top: 1px solid #bcbcbc;
    border-bottom: 1px solid #bcbcbc;
    border-right: 1px solid #bcbcbc;
    border-left: 1px solid #bcbcbc;
    border-top-left-radius:5px;
    -moz-border-top-left-radius:5px;
    -webkit-border-top-left-radius:5px;
    border-top-right-radius:5px;
    -moz-border-top-right-radius:5px;
    -webkit-border-top-right-radius:5px;
    width:860px;
    margin:30px auto 0 auto;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

#app-body #table-head-box table {
    border:none;
}

#app-body #table-head-box table th {
    border-bottom:none;
}

#ascrail2000 div {
    border:none !important;
}

.overlayAvoidUsporny {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:500;
    display:none;
}

.high_red {
    color: red;
}

.overlayAvoidUsporny.showAvoid {
    display:block;
}

.responsiveTable {
    display:none;
}

#dateBoxResponsive {
    display:none;
}

#app-body .respAppHome {
    display:none;
}

body #master #app-body .display_none {
    display:none;
}


body.MSIE_8 {
    font-family: Verdana, Geneva, sans-serif;
}

#targetHelp {
    background:rgb(245,245,245);
}

#app-body h1.help-header {
    margin:15px 0 15px 0;
}

#app-body .cover-box {
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    display:block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-align:center;
}

#app-body span.acs-state {
    font-size:40px;
    padding:0 0 0 90px;
    display:inline-block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#app-body span.acs-state.opened {
    background:url('../images/ikony/cover/open.png') left center no-repeat;
}

#app-body span.acs-state.closed {
    background:url('../images/ikony/cover/closed.png') left center no-repeat;
}

#app-body span.acs-state.closing {
    background:url('../images/ikony/cover/closing.png') left center no-repeat;
}

#app-body span.acs-state.opening {
    background:url('../images/ikony/cover/opening.png') left center no-repeat;
}

#app-body span.acs-state.error {
    background:url('../images/ikony/cover/error.png') left center no-repeat;
}

#app-body span.acs-state.partially_open {
    background:url('../images/ikony/cover/partially_open.png') left center no-repeat;
}

.chosen-drop {
    position: relative !important;
    z-index: 1000 !important;
}

