/*hlavni soubor stylu*/

*{
    box-sizing:border-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    font-family: "Calibri", Arial;
    position: relative;
    min-height: 100vh;
}

body {
    margin: 0px;
    padding-bottom: 80px;
}

:focus {
    outline: none;
}

a {
    color: inherit;
    text-decoration: none !important;
}

input[type=checkbox] {
    margin: 0;
    margin-right: 3px;
}

textarea {
    font-family: "Calibri", Arial;
    font-size: 14px;
    resize: none;
}

html.hideOverflow {
    overflow: hidden;
}

body *::-webkit-scrollbar { 
    width: 7px;
}

body *::-webkit-scrollbar-thumb {
    background: gray;
}

body *:not(select) {
    scrollbar-width: thin;
}

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    top:0;
    left:0;
    background-color:rgba(0,0,0,0.5);
    color: black;
    z-index: 100;
}

.modalContent {
    display: flex;
    flex-direction: column;
    margin: auto;
    background-color: white;
    margin-top: 5vh;
    max-height: 80vh;
    width: 95%;
    max-width: 550px;
    position: relative;
    align-items: center;
    color: white;
    background-color: rgba(0,0,0,0.9);
    padding-bottom: 15px;
    border: 1px solid gray;
    border-radius: 10px;
    padding-top: 20px;
}

.modalContentClose {
    top: 0;
    right: 0;
    position: absolute;
}

.modalContentClose .material-icons {
    cursor: pointer;
}


.animateDiv {
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.bodyBackground{
    background-image:url("../img/bcg2.jpg");
    background-repeat: no-repeat;
    background-position:center;
    background-attachment: fixed;
    background-size: cover;
}

.content {
    width:100%;
    display:flex;
    align-items:center;
    flex-direction: column;    
    min-height: 650px;
    padding-bottom: 80px;
    position: relative;
}

.tabBoxWrap {
    margin: 0 -10px;
}

.contentBox {
    background-color:rgba(0,0,0,0.9);
    overflow: hidden;
}

.contentBoxLoader { 
    padding: 10px 10px 10px 10px;
    width:1000px;
    height: auto;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
}

.contentBoxMain { 
    align-items: center;
    padding: 10px 0 10px 0;
    border-radius: 5px;
    background-color:rgba(0,0,0,0.0);
    font-size: 16px;
    color: white;
    width: 98%;
    max-width:1300px;
    margin-top: 0px;
}

.menuLogin {
    max-width:1300px;
    width: 98%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.menuLogin .menuLoginUserImage {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
}

.menuLogin .faOblek {
    font-size: 25px;
    color: white;
    border-radius: 50%;
    z-index: 5;
}

.loginBox{
    display:flex;
    flex-direction:column;
    justify-content: space-between;
    align-items:center;
    width:360px;
    min-height:250px;
    background-color:rgba(0,0,0,0.5);
    padding: 10px 24px 24px 24px;
    border-radius: 5px;
    font-size:14px;
    color: white;
    margin-top: 100px;
}

.regBox {
    display:flex;
    flex-direction:column;
    justify-content: space-between;
    align-items:center;
    width:360px;
    min-height:770px;
    background-color:rgba(0,0,0,0.5);
    padding: 10px 13px 23px 12px;
    border-radius: 5px;
    font-size:14px;
    color: white;
    margin-top: 100px;
}

.textCenter {
    text-align: center;
}

.loginBoxObal{
    position:relative;
    width: 100%;
}

.loginRegistrovat {
    margin-top:3px;
    cursor: pointer;
}

.loginMessage {
    display:none;
    position: absolute;
    font-size: 12px;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.loginInput{
    border-radius:4px; 
    width: 100%;
    height:30px;
    border:none;
    padding:5px;
    margin-bottom:15px;
}

.loginInput:focus{
    outline:none;
    box-shadow: 0 0 5px 2px rgba(208,20,20, 0.9);
    -webkit-box-shadow: 0 0 5px 2px rgba(208,20,20, 0.9);
}

.loginPopis{
    margin-bottom:10px;
}

.loginPrihlasit{
    display:flex;
    justify-content: center;
    align-items:center;
    margin-top:15px;
    cursor:pointer;
    width: 150px;
    height:32px;
    font-weight: 600;
    letter-spacing:1px;
    font-size: 15px;
    border-radius: 10em;
    animation: pulse 10s infinite;
}

@keyframes pulse {
    0% {background-color:#FDA11C;}
    50% {background-color:#B73302;}
    100% {background-color:#FDA11C;}
}

.loginInfo{
    margin-top:15px;
    font-size: 15px;
    cursor: pointer;    
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.loginInfo a, .loginInfo div{
    text-decoration:none;
    color: white;
}

.loginInfo .regPodminkyShow {
    margin-top: 8px;
}

.loginInfo a:hover, .loginInfo span:hover { 
    transition: color 0.3s ease;
    color:#E6E6E6;
}

.loaderWrap {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.loader {
    border: 8px solid #FDA11C;
    border-top: 8px solid #B73302;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;    
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dropdownshowUser {
    top:41px;
    width: 100%;
    min-width: 140px;
    border-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.dropdownshowUser .dropdownAkce {
    background-color: #ed1c24;
}

.menuOblekyVyber .dropdownshow {
    top: 41px;
    right: unset;
    left: 0;
}

.menuLoginFlex {
    display: flex;
    align-items: center;
}

.menuLoginLogin {
    margin-right: 15px;
    font-size: 22px;
    color: white;
    text-shadow: 0px 0px 4px #000000;
    font-size: inherit;
    color: white;
    text-shadow: none;
}

.dropdown.menuLoginDrop {
    background-color: #ed1c24;
    margin-right: 0;
}

.dropdown.menuLoginFlex {
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.tabBoxMenu {
    display: flex;
    margin-bottom:10px;
    justify-content: space-around;
    padding: 0 10px;
}

.tabBoxMenuItem {
    display:flex;
    align-items:center;
    text-align: center;
    font-weight:bold;
    font-size:19px;
    text-transform:uppercase;
    padding:10px 0px;
}

.icoVse{
    display:flex;
    justify-content: center;
    align-items:center;
    width:32px;
    height:32px;
    margin-right:5px;
    border-radius:50%;
    border:1px solid white;
    font-size:18px;
}

.tabBoxContent {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
}

.tabBoxContentItem {    
    width:calc(100% / 3);
    text-align: center;
    border-radius: 30px;
}

.tabBoxZakladniObal {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255,255, 0.4);
    margin:0px 10px;
    padding:10px;
    border-radius: 4px;
    height: 100%;
}

.tabBoxZakladniObal.tabBoxZakladniAkce{
    background-color: rgba(109,20,16, 0.7);
}

.tabBoxZakladniObal.tabBoxZakladniServis{
    background-color: rgba(209,75,3, 0.7);
}

.tabBoxZakladniObal.tabBoxZakladniPoznamky{
    background-color: rgba(234,128,6, 0.7);
}

.tabBoxZakladniRadek {
    display: flex;
    border-bottom:1px solid white;
    padding:20px 0px;
    font-size:19px;
    cursor:pointer;
    transition:all 1s ease;
}

.tabBoxZakladniRadekIco .icoPoznamka {
    margin-right:7px;  
    width:15px;   
}

.tabBoxZakladniRadekPoznamkaAkce .tabBoxZakladniRadekIco .icoPoznamka {
    color:#D01403;  
}

.tabBoxZakladniRadekPoznamkaServis .tabBoxZakladniRadekIco .icoPoznamka {
    color:black;  
}

.tabBoxZakladniRadekText {
    flex:1;
    width: 1px;
    text-align: left;
    font-weight:bold;
}

.tabBoxZakladniRadekCislo {
    width: 30px;
}

.tabBoxZakladniPoznamky .tabBoxZakladniRadekText {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 7px;
}

.tabBoxZakladniDole{
    display:flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top:20px;
    margin-bottom:10px;
    flex: 1;
}

.bilePlus .material-icons{
    border-radius:50%;
    border: 2px solid white;
    font-size:28px;
    cursor:pointer;
}

.tabBoxZakladniZobrazitVse{
    border-radius:4px;
    border: 2px solid #000001;
    font-size:15px;
    cursor:pointer;
    padding:5px 10px;
    font-weight:bold;
    background-color:#000001;
    color:white;
}

.modalContentNadpis {
    font-size: 22px;
    margin-bottom: 15px;
}

.vypisZaznamyScroll {
    width: 100%;
    overflow-y: auto;
    padding: 0 15px;
}

.novyZaznamCheckObal {
    display: flex;
    flex-wrap: wrap;
}

.novyZaznamCheck {
    margin-right: 8px;    
    display: flex;
    align-items: center;
}

.novyZaznamNadpis {
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: bold;
}

.novyZaznamCast .loginInput {
    margin-bottom: 0;
}

.novyZaznamCast {
    margin-bottom: 15px;
}

#novyZaznamInfo {
    height: 78px;
}
.novyZaznamUlozitObal {
    text-align: center;
}

.novyZaznamUlozit {
    display: inline-block;
    background: #ff6f01;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    min-height: 30px;
    min-width: 50px;
}

.vypisZaznamy {
    width: 100%;    
}

.header {
    height: 80px;
    background-color: black;
    border-bottom: 5px solid #ed1c24;
    width: 100%;
    top: 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.footer {
    /*height: 80px;*/
    background-color: black;
    border-top: 5px solid #ed1c24;
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
}

.menuOblekyVyber {
    display: flex;
}

.menuOblekyVyber .dropdown {
    font-weight: bold;
    margin-right: 20px;
    background-color: #151515;
    padding: 4px 8px;
    color: white;
    position: relative;
}

.dropdown.menuLoginFlex:focus {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.menuVyberOblekNazev {
    margin-right: 10px;
    z-index: 5;
}

.dropdownshow {
    border-radius: 5px;
}

.menuOblekyVyber .dropdownshow {
    border-top-left-radius: 0px;
    min-width: 120%;
    z-index: 4;
}

.dropdownAkce {
    background-color: #151515;
    color: white;
}

.dropdownAkceItem {
    padding: 10px 20px;
}

.dropdownAkceItem:hover {
    background-color: #ff6f01;
}

#nastaveniUlozit {
    margin-top: 10px;
}

.modalContentNastaveniRow {
    display: flex;
    margin-bottom: 15px;
}

.bodyBackgroundRfid {
    display: none;
}

.detailZaznam .dropdown{
    position: absolute;
    top: 6px;
    left: 11px;
}

.detailZaznam .dropdown .dropdownshow{
    top: 21px;
    left: 0px;
    display: grid;
    overflow: visible;
}

.detailZaznam .dropdown .dropdownshow .dropdownAkce{
    display: inline-block;
    background-color: white;
    color: #151515;
    padding: 10px 20px;
}

#pridatZaznam .loginMessage {
    width: calc(100% - 30px);
}

.vypisZaznamyRadek {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 0 10px;
}

.vypisZaznamyRadek:nth-child(2n+1) {
    background-color: #606060bf;
}

.vypisZaznamyRadek:nth-child(2n) {
    background-color: #2020208a
}

.vypisZaznamyRadekValue {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px;
    width: 25%;
}

.vypisZaznamyRadekValue.vypisZaznamyRadekDatum {
    width: 20%;
    font-style: italic;
}

.vypisZaznamyRadekValue.vypisZaznamyRadekNazev {
    width: 30%;
    font-weight: bold;
}

.vypisZaznamyRadekValue.vypisZaznamyRadekPoznamka {
    width: 1px;
    flex: 1;
    font-style: italic;
}

.vypisZaznamyRadekValue.vypisZaznamyRadekTyp {
    text-decoration: underline;
}

.modalVypisZaznamy .vypisZaznamyScroll{
    padding: 0;
}

.zaznamDetailNazev {
    font-weight: bold;
    font-size: 27px;
}

.zaznamDetailTyp {
    text-decoration: underline;
}

.zaznamDetailInfo {
    font-style: italic;
    margin: 4px 0;
    margin-bottom: 7px;
    border-bottom: 1px solid gray;
    padding-bottom: 15px;
    white-space: pre;
}

.zaznamDetailDatum2 {
    font-size: 12px;
    font-style: italic;
    color: #b7b7b7;
}

.zaznamDetailDatum2Obal {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.zaznamDetailOblekCasti {
    border: 1px solid gray;
    padding: 4px;
    display: inline-flex;
    margin-top: 14px;
}

.zaznamDetailOblek {
    margin-right: 3px;
}

.zaznamDetailCasti {
    margin-left: 3px;
}

.spravaOblekuNadpis {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.spravaOblekuObsah {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 15px;
    border-bottom: 1px solid gray;
    padding-bottom: 15px;
}

.spravaOblekuObsahOblekLine {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.spravaOblekuObsahOblekLine input{
    margin-bottom: 0;
    margin-right: 10px;
    flex: 1;
}

.spravaOblekuOdebratOblek{
    color: crimson;
    cursor: pointer;
}

.spravaOblekuUlozitOblek {
    color: limegreen;
}

.spravaOblekuOblekPridat {
    width: 32px;
    order: 1;
}

.spravaOblekuObsahCastLine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.spravaOblekuObsahCastLine .loginInput {
    width: 50%;
    margin-bottom: 0;
}

.indexLang {
    position: absolute;
    top: 80px;
    right: 0;
    display: flex;
    margin-top: 10px;
    z-index: 1;
}

.indexLangImage {
    margin-right: 10px;
    cursor: pointer;
}

.indexLangImage img{
    width: 20px;
    height: 20px;
}

.hesloResetOkT2 {
    display: none;
}

.contentBoxErrorMessageObal {
    text-align: center;
    margin-top: 100px;
}
.contentBoxErrorMessage {
    display: inline-block;
    padding: 20px;
    background-color: rgba(0,0,0,0.8);
    border-radius: 10px;
}

.skupinyObal {
    background-color: rgba(0,0,0,0.8);
    margin-top: 40px;
    padding: 0px !important;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    height: 520px;
}

.skupinyBtn {
    display: inline-block;
    background: #ff6f01;
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 20px;
}

.skupinyNeclenObal {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.skupinyNeclenTlacitka {
    margin-top: 20px;
    margin-bottom: 40px;
}

.skupinyNeclenForm {
    height: 0;
    overflow: hidden;
    max-width: 360px;
    width: 100%;
}

.skupinyNeclenForm .loginPrihlasit {
    margin:auto;    
    margin-top: 3px;
}

.skupinyNeclenForm .loginBoxObal {
    padding:3px; 
}

#probrimg {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.userImageLabelObal {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.userImageLabel {
    border-radius: 4px;
    padding: 5px;
    background: #595959ba;
    font-size: 15px;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
}

.skupinyClenObal{
    display:flex;
    flex-direction: column;
    height: 100%;
}

.skupinyVypisObal{
    display:flex;
    flex: 1;
    overflow: hidden;
}

.skupinyVypisStromObal{
    width:30%;
    display: flex;
    flex-direction: column;
    border-right:2px solid #595959ba;
    transition: 1s all ease;
}

.skupinyVypisStrom{
    width:100%;
    flex:1; 
    overflow: auto;
    padding-left:15px;
    padding-right:10px;
}

.skupinyVypisClenoveObal{
    width:70%;
    display: flex;
    flex-direction: column;
    border-left:2px solid #595959ba;
    transition: 1s all ease;
}

.skupinyVypisClenove{
    width:100%;
    flex:1;    
    overflow: auto;
}

.skupinaStromObal .skupinaStromObal{
    margin-left: 15px
}

.skupinaStromNazev{
    display:flex;
    align-items:center; 
    margin-top:10px;
}

.skupinaStromNazevHlavni{
    font-size:16px;
    font-weight:bold;
}

.skupinaStromNazevNazev{
    cursor:pointer;
    overflow: hidden;
    text-overflow: ellipsis;
}

.skupinaStromNazev .material-icons{
    cursor:pointer;
}

.skupinaStromNazev .skupinaNazevCislo{
    border-radius:50%;
    margin-right:10px;
    border:1px solid white;
    width: 7px;
    height: 7px;
    min-width: 7px;
}

.skupinaStromNazevHlavni .skupinaNazevCislo{
    width: 10px;
    height: 10px;
}

.skupinaStromNazev.skupinaStromNazevVybrana .skupinaNazevCislo{
    background-color:white;
}

@-webkit-keyframes signalG {
    0% {
        background-image: url('/img/sig1g.png');
    }
    25% {
        background-image: url('/img/sig2g.png');
    }
    50% {
        background-image: url('/img/sig3g.png');
    }
    75% {
        background-image: url('/img/sig4g.png');
    }
    100% {
        background-image: url('/img/sig1g.png');
    }
}

@keyframes signalG {
    0% {
        background-image: url('/img/sig1g.png');
    }
    25% {
        background-image: url('/img/sig2g.png');
    }
    50% {
        background-image: url('/img/sig3g.png');
    }
    75% {
        background-image: url('/img/sig4g.png');
    }
    100% {
        background-image: url('/img/sig1g.png');
    }
}

.signalZelena {
    -webkit-animation-name: signalG;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-name: signalG;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background-size: cover;
}

@keyframes blik {
    0% {opacity: 1;}
    25% {opacity: 0.6;}
    50% {opacity: 0.2;}
    75% {opacity: 0.6}
    100% {opacity: 1;}
}

.blik {
    -webkit-animation-name: blik;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-name: blik;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.skupinyClenoveUser {
    display:flex;
    align-items:center;  
    padding:10px; 
    justify-content: space-between;
    white-space:nowrap; 
}

.skupinyClenoveUser:nth-child(odd) {
    background-color:#595959ba;
}

.skupinyClenoveUserJmeno {
    margin-right:10px;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor:pointer;
}

.skupinyClenoveUser .signalZelena {
    width: 100%;
    height: 100%;
}

.skupinyClenoveUser .signalZelenaObal {
    width: 15px;
    min-width: 15px;
    height: 15px;
    margin-right:5px;
}

.skupinyClenoveUser .emergency {
    font-size:16px;
    color: red;
}

.skupinyClenoveUserInfo,.skupinyClenoveUserOvladani {
    display:flex;
    align-items:center;
}

.skupinyClenoveUserOvladani {
    width: 33px;
    justify-content: flex-end;
}

.skupinyClenoveUserInfo  {
    flex: 1;
    overflow: hidden;
}

.skupinyClenoveUserOvladani .material-icons {
    font-size:19px;
    cursor:pointer;
}

.skupinyVypisNadpis {
    background-color:#595959ba;
    font-size:16px;
    font-weight:bold;
    padding:10px 35px;
    text-align:center;
    position: relative;
    display: flex;
    justify-content: center;
}

.skupinyVypisNadpisZpet {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    height: 100%;
    align-items: center;
    cursor: pointer;
}


.skupinyObalOnTop {
    z-index: 10 !important;
    transition: none;
}

.hlavniOblekNastaveni {
    width: 100%;
}

.skupinyClenoveUserCisla {
    display: flex;
}

.skupinyClenoveUserCislaCisla {
    display: flex;
    cursor: default;
}

.skupinyClenoveUserCislaAkce {
    color: #ea5656;
}

.skupinyClenoveUserCislaServis {
    color: #6b6bd5;
}

.skupinyClenoveUserCislo {
    width: 33px;
    text-align: center;
}

.tabBoxWrapCiziObal {
    width: 98%;
    max-width: 1300px;
    margin: 90px auto;
    background-color: rgba(0,0,0,0.9);
}

#tabBoxWrapCizi {
    padding: 0 30px 30px 30px;
}

.tabBoxWrapOvladaniCizi {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    height: 30px;
}

.modalSkupinyUserNastaveni {
    display: flex;
}

.modalSkupinaStromNastaveni {
    display: flex;    
}

.skupinyUserNastaveniInfo {
    display: flex;
    margin-bottom: 20px;
}

.skupinyUserNastaveniInfoRight {
    margin-left: 10px;
}

.skupinyUserNastaveniInfoJmeno {
    font-weight: bold;
    font-size: 20px;
}

.skupinyUserNastaveniOdebratObal {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0 15px;
    width: 100%;
}

.skupinyUserNastaveniOdebrat {
    background-color: #ed1c24;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.skupinyUserNastaveniPravaObal {
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
}

.skupinyUserNastaveniPravo {
    margin-right: 10px;
    width: 100%;
}

.skupinyUserNastaveniPravo label {
    white-space: break-spaces;
}

.skupinyUserNastaveniPravo.disabled {
    color: gray;
}

.skupinaStromNastaveni, .skupinaStromExport {
    font-size: 19px;
    display: none;
    margin: 0 6px;
}

.skupinaStromNazevVybrana .skupinaStromNastaveni, .skupinaStromNazevVybrana .skupinaStromExport  {
    display: block;
}

.skupinyObal .tabBoxWrap {
    margin: 0;
}

.modalSkupinaStromNastaveni .skupinyUserNastaveniInfoRight {
    margin: 0;
}

.ssnPodrazena{
    display: flex;
    justify-content: space-between;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
}

.ssnPodrazenaNazev {
    overflow: hidden;
    text-overflow: ellipsis;
}

.ssnPodrazena .material-icons {
    color: crimson;
}

.ssnPodrazena.ssnPodrazenaSmaz{
    color: gray;
    display: none
}
.ssnPodrazena.ssnPodrazenaSmaz .material-icons {
    display: none;
}

.tabBoxWrapOvladaniCizi .material-icons {
    cursor: pointer;
}

.tabBoxWrapOvladaniCizi .modalContentClose.material-icons {
    position: relative;
}

.tabBoxWrapCiziObal .tabBoxMenu{
    color: white;
}

.tabBoxWrapCiziObal .tabBoxZakladniAkce {
    background-color: rgba(109,20,16, 0.9);
}
.tabBoxWrapCiziObal .tabBoxZakladniServis {
    background-color: rgba(209,75,3, 0.9);
}
.tabBoxWrapCiziObal .tabBoxZakladniPoznamky {
    background-color: rgba(234,128,6, 0.9);
}

.tabBoxWrapCiziObal .dropdown.menuLoginFlex {
    margin-right: 10px;
    max-width: calc(50% - 10px);
}

.menuOblekyVyber {
    flex: 1;
    max-width: calc(100% - 62px);
    white-space: nowrap;
    height: 44px;    
}

.menuVyberOblekNazev {
    overflow: hidden;
    text-overflow: ellipsis;
}

.tabBoxWrapCiziObal .menuOblekyVyber {
    max-width: calc(100% - 24px);
}

.tabBoxWrapCiziObal .dropdown.menuLoginFlex {
    background-color: black;
}

.tabBoxWrapCiziObal .dropdownAkce {
    background-color: black;
}

.tabBoxWrapCiziObal .dropdownAkceItem {
    padding: 8px 12px;
}

.skupinyVypisNadpis2 .skupinyClenoveUserCislaCisla {
    color: white !important;
}

.modalNoveCasti .modalContentNadpis {
    margin-top: 10px;
}

.modalNoveCasti .loginInput {
    margin: 0;
}

.modalNoveCasti .spravaOblekuObsahOblekLine{
    justify-content: space-between;
}

.modalNoveCasti .spravaOblekuObsahOblekLine .novaCastOddil {
    width: 49%;
    margin-bottom: 5px;
}

.loaderButton {
    width: 100%;
    height: 20px;
}

.loaderButton .loader{
    width: 20px;
    height: 20px;
    border-width: 5px;
    border-color: #FFF;
    border-top-color: #ff6f01;
}

.skupinyNeclenText {
    font-size: 16px;
}

.skupinyNeclenText span{
    font-weight: bold;
}

.skupinyClenoveUserCislaRok .skupinyClenoveUserCislo{
    width: 50px;
}

.skupinyClenoveUserCislaRok {
    margin-left: 5px;
}

.skupinyClenoveUserCislaNazev .skupinyClenoveUserCislo{
    width: 130px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /*text-align: left;*/
}

.skupinyClenoveUserCislaNazev {
    margin-left: 10px;
}

.skupinyClenoveUserCislaServis {
    margin-left: 5px;
}

.prehledOblekuHledat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 5px;
}

.prehledOblekuHledat .loginInput{
    margin-bottom: 0;
    flex: 1;
}

.prehledOblekuHledat .novyZaznamUlozit{
    margin-left: 20px;
}

.prehledOblekuHledatTyp {
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.prehledOblekuVypisLine {
    padding: 11px 0 3px 0;
    border-bottom: 1px solid gray;
}

.prehledOblekuVypisLine .prehledOblekuVypisLineInputObal {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
}

.prehledOblekuVypisLineInput {
    width: 45%;
    position: relative;
}

.prehledOblekuVypisLineInput .loginInput {
    margin: 0;
    height: 22px;
    padding: 4px;
    width: 100%;
}

.prehledOblekuVypisLineInput span {
    position: absolute;
    right: 0;
    top: 0;
    height: 28px;
    width: 28px;
    background-color: darkgreen;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    display: none;
    font-size: 17px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.prehledOblekuVypisLineInput:focus span, .prehledOblekuVypisLineInput:focus-within span{
    display: flex;
}

.prehledOblekuVypisLineInput:focus .loginInput, .prehledOblekuVypisLineInput:focus-within .loginInput{
    padding-right: 25px;
}

#skupinyVypisNadpisNazev {
    margin-left: 5px;
}

.skupinyVypisNadpisEllipsis {
    flex: 1;
    width: 1px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}

.tabBoxWrapOvladaniCiziJmeno {
    text-align: center;
    margin-bottom: 3px;
    font-size: 23px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

.tabBoxWrapOvladaniCizi .material-icons {
    font-size: 28px;
}

.skupinaStromRozbal {
    transition: transform 0.2s linear;
}

.skupinaStromRozbalRotate {
    transform: rotate(-90deg);
}

.gearNastaveni {
    transition: transform 0.5s ease;
}

.gearNastaveniRotate {
    transform: rotate(90deg);
}

.prehledOblekuVypisUser {
    cursor: pointer;
}

.prehledOblekuVypisUserCommBtnObal {
    user-select: none;
}

.prehledOblekuVypisUserCommBtn {
    display: inline-block;
    padding: 3px;
    border: 1px solid gray;
    margin: 2px 0;
    cursor: pointer;
    margin-bottom: 8px;
}

.prehledOblekuHledatTyp label {
    display: flex;
    align-items: center;
    margin-right: 7px;
}

.prehledOblekuHledatTyp input {
    margin: 0;
    margin-right: 3px;
}

.prehledOblekuVypisUserCommNastaveni {
    height: 0;
    overflow: hidden;
    margin-top: -3px;
    padding: 0;
    text-align: right;
}

.prehledOblekuCommShow .prehledOblekuVypisUserCommNastaveni {
    height: auto;
    border: 1px solid gray;
    margin-bottom: 6px;
    padding: 3px;
}

.prehledOblekuCommShow .prehledOblekuVypisUserCommBtn {
    border-bottom: none;
    z-index: 2;
    background-color: black;
    margin-bottom: 2px;
}

.modalPrehledObleku .modalContent {
    background-color: black;
    max-width: 820px;
}

.prehledOblekuVypisUserCommNastaveniPristup {
    display: inline-block;
    align-self: flex-end;
    padding: 2px 10px;
    min-height: 24px;
    background-color: green;
    margin-left: 5px;
}

.prehledOblekuVypisUserCommNastaveniPristupOdebrat {
    background-color: #930000;
}

.commanderObal {
    background-color: rgba(0,0,0,0.8);
    margin-top: 40px;
    padding: 0px !important;
    position: relative;
    z-index: 2;
    min-height: 520px;
    background-color: transparent;
}

.commanderNemaObal {
    padding: 20px;
    background-color: rgba(0,0,0,0.8);
}

.commanderObjednatInfoNadpis {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
}

.commanderObjednatInfoText {    
    margin-bottom: 20px;
}

.commanderObjednatObal {
    max-width: 500px;
    margin: 0 auto;
}

.commanderObjednatObal .novyZaznamUlozit{
    margin-top: 20px;
}

.prehledOblekuVypisUserCommNastaveniText {
    width: 100%;
    text-align: left;
}

.prehledOblekuVypisUserCommNastaveniPristupObal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.novaCastIgnore {
    margin-top: 10px;
    cursor: pointer;
    font-size: 13px;
}

.modalNoveCasti .spravaOblekuObsah {
    border: none;
    padding-bottom: 0;
}

.regPodminkyShow {
    text-decoration: underline;
    cursor: pointer;
}

.modalPodminky .modalContent, .modalNapoveda .modalContent {
    background-color: black;
}

.mojeOblekyNadpis {
    text-align: center;
    font-size: 25px;
    color:#222;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
}

#tabBoxWrapCizi .mojeOblekyNadpis {
    display: none;
}

#tabBoxWrapCizi .icoVse {
    border-color: white;
}

.tabBoxMenu .fa-info{
    display: none;
}

img.headerSmart{
    height: 100%;
}

img.headerSmart2{
    display: none;
    height: 52%;
    max-width: 50%;
}

img.headerRegister {
    height: 52%;
    max-width: 50%;
}

img.headerCommander {
    display: none;
    max-height: 52%;
    max-width: 50%;
}

.headerCommander img.headerCommander {
    display: block;
}

.headerCommander img.headerRegister {
    display: none;
}

.skupinaStromNazev .skupinaStromRozbal {
    font-size: 34px;
    line-height: 20px;
    margin-right: -4px;
}

.detailZaznamOvladani {
    display: none;
}

.modalPridatZaznam .modalContentNadpisPridat {
    display: none;
}

.modalPridatZaznam .modalContentNadpisUpravit {
    display: block;
}

.modalCizi {
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 50;
    color: white;
}

.modalSkupinaStromNastaveni .userImageLabel{
    margin-left: 0;
    margin-right: 10px;
    margin-top: 5px;
}

.lupa {
    position: absolute;
    right: 11px;
    top: 13px;
    cursor: pointer;
}

.skupinyVypisNadpisHledani {
    display: none;
    height: 40px;
    width: 100%;
    padding: 8px 40px 8px 8px;
    background-color: #000;
    position: relative;
}

.skupinyVypisNadpisHledani input {
    background-color: #000;
    border:none;
    width: 100%;
    height: 100%;
    font-size: 15px;
    color: white;
}

.skupinyVypisNadpisHledani .material-icons {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.skupinyVypisNadpisHledaniVisible {
    display: block;
}

.modalSkupinaStromExport .userImageLabel {
    margin-left: 0;
    margin-right: 10px;
    margin-top: 20px;
}

.footerText {
    display: flex;
    flex-direction: column;
    color: white;
    padding: 0 15px;
    /*position: absolute;*/
    width: 100%;
    /*bottom: 0;*/
    /*align-items: flex-end;*/
    /*height: 100%;*/
}

.regNapovedaShow {
    cursor: pointer;
    margin-top: 8px;
    color: white;
}

.logoImgObal {
    width: 30%;
}

.logoImgObalRice {
    text-align: left;
}
.logoImgObalGoodPro {
    text-align: center;
}
.logoImgObalArdat {
    text-align: right;
}


.logoImg {
    max-height: 50px;
}

.logoWhite {
/*    background: white;
    border: 5px solid white;*/
}

.logoGoodPro {
    max-height: unset;
    height: 100px;
}

.logoImgObalRice .logoImg {
    max-height: 36px;
}

.footerLogo {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    /*height: 100%;*/
}

.zaznamDetailTypObal {
    display: flex;
    justify-content: space-between;
}

.skupinaStromNazevVybrana .skupinaStromNazevNazev {
    text-decoration: underline;
}

.skupinyCara {
    border-bottom: 1px solid gray;
    margin-bottom: 15px;
    margin-top: 6px;
}

.ssnPodrazena .material-icons {
    cursor: pointer;
}

.skupinyNastaveniNadrazena {
    margin-bottom: 10px;
}

.confirmBox {
    border-radius: 0;
}

.alertText {
    font-family: "Calibri", Arial;
    font-style: normal;
    font-size: 18px;
}

.commanderFullScreen, .commanderDataToggle{
    position: absolute;
    top: 5px;
    left: 5px;
    display: block;
    cursor: pointer;
}

.commanderFullScreen, .commanderDataToggle, .ol-zoom-in, .ol-zoom-out {
    color:white;
    background-color: #595959;
    border: none;
    font-weight: bold;
}

.ol-zoom-in, .ol-zoom-out {
    margin-right: 3px;
    font-size: 18px;
    height: 22px;
    height: 24px;
    line-height: 24px;
}

.commanderDataToggle {
    right: 305px;
    left: unset;
}

.commanderMap {    
    width: 100%;
    height:100%;
    flex: 1;
}

.mapaObal {
    width: 100%;
    height:520px;
    position:relative;
    display: flex;
    background-color: rgba(0,0,0,0.8);
}

.commanderData {
    width: 300px;
    height: 100%;
    background-color: #4a4a4a;
    overflow: auto;
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.commanderDataHidden {
    /*margin-right: -300px;*/
    display:none
}

.commanderDataToggleHidden {
    right: 5px !important;
}

.cdtLeft {
    display: none;
}

.commanderDataToggleHidden .cdtLeft {
    display: block;
}

.commanderDataToggleHidden .cdtRight {
    display: none;
}

.commUser {
    cursor: pointer;
    padding: 5px;
    border: 1px solid transparent;
    border-bottom-color: #acacac;
    order: 3;
    color: white;
}

.commRadek {
    display: flex;
    justify-content: space-between;
    min-height: 24px;
}

.comm_t {
    text-align: center;
    display: flex;
    align-items: center;
}

.comm_t_text {
    color:#3d3d3d;
    font-size: 13px;
    margin-right: 3px;
}

.commUserStripActive .comm_t_text {
    color: #bbb7b7;
    font-weight: bold;
}

.comm_jmeno {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comm_gps_data {
    text-decoration: underline;
    text-align: right;
}

.comm_gps .material-icons{
    font-size: 20px;
}

.comm_no_data .material-icons{
    font-size: 20px;
}

.comm_strip, .comm_gps, .comm_temp, .comm_temp_alert, .comm_no_data {
    display: none;
}

.last_data_time_obal {
    display: none;
}


.comm_temp {
    margin-right: 3px;
}

.commUserInvalidGPS .comm_gps{
    display: block;
}

.commUserTemp_Alert .comm_temp_alert {
    display: block;
}

.commUserTemp_In .comm_temp_alert, .commUserTemp_Out .comm_temp_alert {
    display: none;
}

.commUserTemp_In .comm_temp, .commUserTemp_Out .comm_temp {
    display: block;
}

.commUserStripActive .comm_strip{
    display: block;
}

.commUserNoData .comm_no_data{
    display: block;
}

.commUserNoData .last_data_time_obal{
    display: flex;
}

.commUserNormal {
    background-color: #52d952;
    color: black;
    order:7;
}

.commUserInvalidGPS {
    background-color: #f2f2f2;
    color: black;
    order:6;
}

.commUserNoData {
    background-color: #b5b5b5;
    color: black;
    order:5;
}

.commUserTemp_Alert {
    background-color: #ff9d2c;
    color: black;
    order:4;
}

.commUserTemp_Out {
    background-color: #df3333;
    color: white;
    order:3;
}

.commUserTemp_In {
    background-color: #df3333;
    color: white;
    -webkit-animation: animateT_In 1s ease infinite;
    animation: animateT_In 1s ease infinite;
    order:2;
}

@keyframes animateT_In {
    0% {background-color:#df3333;}
    50% {background-color:#ff8c8c;}
    100% {background-color:#df3333;;}
}

.commUserStripActive {
    background-color: #0000b0;
    color: white;
    animation: none;
    order:1;
}

.commUserSelected, .commUserSelectedClick {
    color: black;
    background-color: #c9fcff !important;
}





/*
.commUserNormal {
    background-color: #00ff00;
    color: black;
}

.commUserInvalidGPS {
    background-color: white;
    color: black;
}

.commUserNoData {
    background-color: #888888;
    color: white;
}

.commUserTemp_Alert {
    background-color: #ff8800;
    color: black;
}

.commUserTemp_Out {
    background-color: #ff0000;
    color: white;
}

.commUserTemp_In {
    background-color: #ff0000;
    color: white;
    -webkit-animation: animateT_In 2s ease infinite;
    animation: animateT_In 2s ease infinite;
}

.commUserStripActive {
    background-color: #0000ff;
    color: white;    
}

.commUserSelected, .commUserSelectedClick {
    opacity: 0.8;
    color: black;
    background-color: #ffff00 !important;
}

@keyframes animateT_In {
    0% {background-color:#ff0000;}
    50% {background-color:#ffffff;color:black}
    100% {background-color:#ff0000;}
}*/


.comm_t_in, .comm_t_out {
    font-weight: bold;
    font-size: 19px;
}

.comm_icons > div {
    margin-left: 7px;
}

.comm_icons {
    display: flex;
    align-items: center;
}

.commanderInfo {
    position: absolute;
    display: none;
    cursor: default;
    padding: 3px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
}

.novaCastSmazatOut {
    width: 100%;
    text-align: center;
}

.novaCastSmazat {
    display: inline-flex;
    margin-left: 0;
}

.modalNoveCasti .spravaOblekuObsahOblekLine {
    margin-bottom: 17px;
}

.commUserDalsi {
    display: none;
}

.commUserSelectedClick .commUserDalsi {
    display: block;
}

.commUserDalsi .commRadek {
    min-height: unset;
    margin-top: 5px;
}

.commanderDole {
    width: 100%;
    color: white;
    margin-top: 20px;
    font-size: 13px;    
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: black;
}

.commanderLegendaObal {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 5px;
    border: 1px solid rgb(74,74,74);
    padding: 6px;
    background-color: #ddd;
}

.commanderLegendaObal:last-child {
    margin-bottom: 0;
}

.commanderLegenda {
    display: flex;
    align-items: center;
    padding: 0 6px;
    white-space: nowrap;
    margin-bottom: 5px;
}

.commanderLegendaObalNastaveni .commanderLegenda {
    margin-bottom: 2px;
}

.commanderLegendaObalLegenda .commanderLegenda {
    flex-direction: column;
    text-align: center;
    flex:1;
    white-space: normal;
}

.commanderLegendaBarva {
    width: 50px;
    height: 25px;
    margin-right: 5px;
    border: 1px solid rgb(74,74,74);
    display: flex;
    justify-content: center;
    align-items: center;
    order: unset;
}

.commanderLegendaBarva .material-icons {
    font-size: 17px;
}

.commanderLegendaBarva .fa, .commanderLegendaBarva .fas {
    font-size: 15px;
}

.commanderDoleNadpis {
    margin-bottom: 4px;
}

.commanderLegenda .loginInput {
    margin-bottom: 0;
    margin-left: 3px;
    width: 34px;
    border: 1px solid gray;
    height: 22px;
    padding:0;
    padding: 0 5px;
    margin-right: 3px;
}

.commanderLegenda .loginInput:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.commanderLegenda .loginInput[type="checkbox"]{
    width: unset;
}

.ol-scale-line {
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: black;
    background-color: white;
    border: 1px solid black;
    text-align: center;
}

.ol-zoom {
    bottom: 5px;
    left: 5px;
    position: absolute;
}


.commanderLegendaObalNastaveni {
    width: 295px;
    min-width: 295px;
    margin-left: 5px;
    padding: 3px 6px;
    justify-content: center;
}

.commanderLegendaObalLegenda {
    flex-grow: 1;
    margin-right: 5px;
    text-transform: lowercase;
}

.commanderLegendaObalNastaveni .commanderLegendaTeplota .loginInput{
    border: 1.0px solid red;
}

.commanderLegendaTeplota {
font-weight: bold;
}

.commanderLegendaTeplota .loginInput{
font-weight: bold;
}

.commanderLegendaTeplotaIn {
    color: red;
}

.commanderLegendaObalNastaveni .commanderLegenda {
    margin-right: 0;
}

.commanderLegendaObalNastaveni .commanderLegendaTeplotaIn {
    margin-right: 36px;
}

.modalNapoveda .modalContent, .modalPodminky .modalContent {
    max-width: 1000px;
}

.modalPodminky ul {
    padding-left: 25px;
}

.commanderContri {
    position: absolute;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #000000b3;
    top: 50%;
    background: #ffffff82;
    left: -86px;
    font-size: 14px;
    padding: 0 5px;
}

.spravaOblekuObsahCastNazev {
    display: flex;
    align-items: center;
    flex: 1;
}

.spravaOblekuObsahCastNazev .gearNastaveni {
    font-size: 19px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}

.oblekCastNazev {
    flex: 1;
}