@import url("tree.css");


/*Basic reset*/ 
* {margin: 0; padding: 0;}

html, body {
    background: #f1f4f6;
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    width: 100%;
    height: 100%;
    font-weight: 300;
}

input, select{
    font-family: 'Maven Pro', sans-serif;
}

a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}
a:hover{
    color: #666;
}

input[type=text], input[type=password], input[type=file],textarea, select{
    border: 1px #bbb solid;
    padding: 2px 3px;
}

input[type=button]{
    border: 1px #ddd solid;
    padding: 2px 5px;
    background-color: white;
    font-size: 11px;
}

select[disabled]{
    background-color: #EBEBE4;
}
.container{
    padding: 20px;
    background-color: rgba(255,255,255,0.45);
    margin: 10px;
}

.red{
    color: red !important;
}
.orange{
    color: orange !important;
}

.clear{
    clear: both;
}
.bold{
    font-weight: bold;
}
.italic{
    font-style: italic;
}

.center{
    text-align: center !important;
}

h2{
    margin-bottom: 20px;
}
h5{
    font-size: 18px;
    padding-bottom: 10px;
    margin-top: 15px;
}

.tab_form tr td:first-child{
    padding-right: 20px;
    font-weight: bold;
}

.tab_form tr td{
    padding-top: 1px;
    vertical-align: middle;
}

.tab_form tr{
    vertical-align: top;
}
.tab_form .kategorie{
    font-size: 140%;
}
.tab_form .kategorie > td{
    padding-top: 20px;
}
#accordian {
	background: #004050;
	width: 250px;
	color: white;
        
	/*Some cool shadow and glow effect*/
        
}
/*heading styles*/
#accordian h3 {
	font-size: 12px;
	line-height: 34px;
	padding: 0 10px;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
	background: #003040; 
	background: linear-gradient(#003040, #002535);
}
/*heading hover effect*/
#accordian h3:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
/*iconfont styles*/
#accordian h3 span {
	font-size: 16px;
	margin-right: 10px;
}
/*list items*/
#accordian li {
	list-style-type: none;
}
/*links*/
#accordian ul ul li a {
	color: white;
	text-decoration: none;
	font-size: 11px;
	line-height: 27px;
	display: block;
	padding: 0 15px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}
/*hover effect on links*/
#accordian ul ul li a:hover {
	background: #003545;
	border-left: 5px solid grey;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}
#accordian li.active ul {
	display: block;
}


#main_menu{
    position: fixed;
    z-index: 501;
    width: 200px;
    left: -200px;
    height: 100%;
    top: 0;
    transition-property: left;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.main_menu-open{
    left: 0px !important;
}

#left_menu{
    width:200px;
    bottom:0;
    top:0;
    float: left;
    background-color: white;
    height: 100%;
    transition-property: left;
    transition-duration: 0.5s;
}

#click_left_menu{
 position: fixed;
 top: 50%;
 cursor: pointer;
 left:0;
 z-index: 501;  
 background: url(/data/img/main_menu_right.png) no-repeat center center transparent;
 width: 50px;
 height: 50px;
  transition-property: left, transform;
  transition-duration: 1s;
}

.click_left_menu-open{
    transform: rotate(180deg);
    left: 200px !important;
}

div#user-info span{
    font-size: 18px;
    padding-right: 5px;
}

#right_menu{
    float: right;
    width: 50px;
    height: 100%;
    top: 0;
    bottom: 0;
}

.scroll{
    overflow-y: scroll;
}
#user-info{
    position: absolute;
    bottom: 0;
    width: 190px;
    height: 40px;
    background-color: #ddd;
    color: black;
    padding-left: 10px;
    line-height: 40px;
    font-size: 13px;
}

#user-info div{
    position: absolute;
    right: 10px;
    top:0;
    height: 40px;
    cursor: pointer;
    font-size: 25px;
}

#user-info span{
    font-weight: bold;
}


.pocetstranek{
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #FF8C00;
}



.pocetstranek a{
    color: white;
    border: 2px white solid;
    text-decoration: none;
    margin-left: 2px;
    padding: 2px 6px;
    background-color: black;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.filtr_table{
    margin: 10px auto;
    
}

.filtr_table td{
    padding: 0px 10px;
}

.filtr_table input[type=submit]:hover{

    color: white !important;
    background: rgb(157,175,198); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(157,175,198,1) 0%, rgba(130,140,149,1) 36%, rgba(40,52,59,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(157,175,198,1)), color-stop(36%,rgba(130,140,149,1)), color-stop(100%,rgba(40,52,59,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(157,175,198,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(157,175,198,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(157,175,198,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(157,175,198,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9dafc6', endColorstr='#28343b',GradientType=0 ); /* IE6-9 */
}

.legenda{
    text-align: center;
}
.legenda table{
    margin: 0 auto;
}

#mapa{
    width: 600px;height: 350px;margin-top: 30px;overflow: hidden;position: relative;border: 1px #BBBBBB solid;margin-left: 500px;z-index:1
}

.isa_info, .isa_success, .isa_warning, .isa_error {
    border: 1px solid;
    margin: 10px 0px;
    padding:15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    -moz-border-radius:.5em;
    -webkit-border-radius:.5em;
    border-radius:.5em;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -450px;;
    width: 900px;
    z-index: 1000;
    text-shadow: 1px 1px 2px rgba(150, 150, 150, 1);
    font-weight: bold;
    display:none;
    opacity: 0;
    font-size: 13px;
 
}
.isa_info {
    color: #00529B;
    background-color: #BDE5F8;
    background-image: url('../img/isa/info.png');
}
.isa_success {
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image:url('../img/isa/success.png');
}
.isa_warning {
    color: #9F6000;
    background-color: #FEEFB3;
    background-image: url('../img/isa/warning.png');
}
.isa_error {
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('../img/isa/error.png');
    
}
.isa_show{
    display: block;
}

.preloader{ position: fixed;top:0;bottom: 0;left: 0;right: 0;background-color: rgba(255,255,255,0.6);z-index: 9999;display:none;opacity:0; }
.preloader div{ margin-left: -80px;margin-top: -12px;background-image: url(../img/preloaders.gif);width: 160px;height: 24px;top: 50%;left: 50%;background-repeat: no-repeat;position: absolute;}

#content2{
    display:flex;
        align-items: stretch;
}

#tab-container{min-width: 190px!important;}
#tab-container ul{ list-style: none;display:block; padding: 0;margin:0}
#tab-container ul li{ border-right: 1px solid #CCCED7; border-bottom: 1px solid #CCCED7; border-left: 1px solid #CCCED7; background-color: #fff; display: flex; line-height: 3; padding-left: 10px; align-items: center;}
#tab-container ul li i{ font-size: 18px;}
#tab-container ul li:first-child{ border-top: 1px solid #CCCED7;}
#tab-container ul li a,#tab-container ul li a:visited{ text-decoration: none; color: #666; margin-left: 10px; }
#tab-container ul li:hover{ border-left: 1px solid #CCCED7; }
#tab-container ul li a:hover{ color: #000; }
#tab-container ul li.selected, #tab-container ul li:hover{ border-right: none; background-color: #EBEDF4; border-left: 1px solid #CCCED7; }
#tab-container ul li.selected{ font-weight: bold; }

#content2{  overflow: auto; width: 100%; margin: 15px auto;}
#content2 .main-container{ flex-grow: 8;min-height: 500px; margin: 0 0 0 -1px; padding-left: 20px; padding-right: 20px; background-color: #EBEDF4; border: 1px solid #CCCED7;}
#content2 .main-container h4{ font-size: 18px; padding: 0; margin: 0; margin-top: 10px; margin-bottom: 10px; font-weight: normal; }
#content2 .main-container hr{ display: block; height: 2px; border: 0; border-top: 1px solid #bbb; margin: 2px 0; padding: 0; }
/*#content2 .main-container table tr td:first-child{ font-weight: bold; color: #393939; text-align: right; padding-right: 10px; }*/
#content2 .main-container table tr td:last-child{ text-align: left; }


.rozpis_mesicu{
    margin: 30px auto;
    vertical-align: middle;
}
.rozpis_mesicu td {
    padding: 5px 5px;
    vertical-align: middle;
}


.tab_plan{
    border:1px solid black;
    height:150px;
    width:95%;
    border-collapse:collapse;
    font-size:12px;
    margin: 0px auto;
}
.tab_plan td{
    padding: 5px;
}

.tab_plan_head{
    margin: 0px auto;
    border:1px solid black;
    height:25px;
    width:95%;
    border-collapse:collapse;
    font-size:12px;
    background-color: rgba(0, 53, 255, 0.2);
    margin-bottom:10px;
    text-align:center;
    font-weight:bold
}
.tab_plan_head td{
    padding: 5px;
}

.tab_plan .name{
    font-weight: bold;
    margin-bottom: 5px;
}

.tab_plan .description{
    font-weight: bold;
    margin-bottom: 5px;
}

.hint {
    display: none;
    position: relative;
    margin-top: 4px;
    margin-bottom: 2px;
    border: 1px solid #00529B;
    padding: 15px 5px 15px 50px;
    color: #00529B;
    background: #BDE5F8 url(../themes/default/img/icon-info.png) no-repeat 6px center;
    border-radius: 3px;
    min-height: 15px;
    z-index: 10;
}

#kalendar_denni_plan{
    text-align: center;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;  
    background-color: white;
    padding: 10px; 
    color: black;
    width: 200px;
    border: black solid 1.5px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
#kalendar_denni_plan thead tr{
    background-color: #c9bf84;
    font-weight: bold;
}

#kalendar_denni_plan td{
    width: 25px;
}
#kalendar_denni_plan tfoot a{
    color:black;
    text-decoration: none;
}
#kalendar_denni_plan tfoot a:hover{
    text-decoration: underline;
}
#kalendar_denni_plan_odkaz_classic a{
    color:black;
    text-decoration: none;
}

#kalendar_denni_plan_odkaz_classic a:hover{
    text-decoration: underline;
}

#kalendar_denni_plan_odkaz a{
    color: white;
    text-decoration: none;
}

#kalendar_denni_plan_odkaz a:hover{
    text-decoration: underline;
}



#day_plan{
    border: 2px solid black;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: white;
    color: black;
}
#day_plan thead th{
    background-color:#a0cfec;
    height: 50px;
    width: 200px;
    border: 1px black solid;
    vertical-align: top;
}
#day_plan td{
    border: 1px #CCC solid;
}

.katalog li:hover{
    background-color: #FEEFB3;
}
#seznam_klientu{
    font-size: 12px;
    z-index: 50;
    display: none;
    position: absolute;
    max-width: 400px;
    height: 300px;
    margin-top: 0px;
    margin-left: 0px;
    background-color: rgba(85,102,119,0.8);
    padding: 5px;
    overflow-y: scroll;
    overflow-x: hidden;
    border: 1px solid #ccc;
}
#seznam_klientu a {
    color: white;
    cursor: pointer;
}


.router{
width: 1100px;
margin: 20px auto;
    
}
.router .head{
       
    
    padding: 4px;
background: rgb(212,228,239); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(212,228,239,1) 0%, rgba(134,174,204,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(212,228,239,1)), color-stop(100%,rgba(134,174,204,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(212,228,239,1) 0%,rgba(134,174,204,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(212,228,239,1) 0%,rgba(134,174,204,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(212,228,239,1) 0%,rgba(134,174,204,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(212,228,239,1) 0%,rgba(134,174,204,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4e4ef', endColorstr='#86aecc',GradientType=0 ); /* IE6-9 */ 
}

.router .stav_online{
    width: 10px;height: 50px;
    background-color: green;
    float: left;
    margin-left: 3px;
    margin-right: 5px;
}

.router .info{
    background-color: white;
    padding: 10px;
    display: none;
}

input:-webkit-autofill {
    background-color: #fff !important;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1.5;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu {
  width: 200px;
  color: black;
  float: right;
}
#cssmenu ul ul {
  display: none;
}
.align-right {
  float: right;
}
#cssmenu > ul > li > a {
  padding: 8px 15px;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  margin: 10px 3px;
  border-radius: 5px;
  
}

#cssmenu > ul > li > a:first-child {
    margin-top: 2px;
}
#cssmenu > ul > li > a > i {
    font-size: 18px;
}
#cssmenu > ul > li > a:hover {
    background-color: #e0f3ff;
    color: black;
    
}
#cssmenu > ul > li.open a{
    background-color: #abc;
}

#cssmenu ul.otevrena li a{
    background-color: white;
}


.holder {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.holder::after,
.holder::before {
  display: block;
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  right: 20px;
  z-index: 10;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.holder::after {
  top: 9px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}
#cssmenu > ul > li > a:hover > span::after,
#cssmenu > ul > li.active > a > span::after,
#cssmenu > ul > li.open > a > span::after {
  border-color: #eeeeee;
}
#cssmenu > ul > li > a > span{
    padding-left: 10px;
}
.holder::before {
  top: 10px;
  border-top: 2px solid;
  border-left: 2px solid;
  border-top-color: inherit;
  border-left-color: inherit;
}
#cssmenu ul ul li a {
  cursor: pointer;
  padding: 7px 20px;
  z-index: 1;
  text-decoration: none;
  font-size: 13px;
  background: #fefefe;
  font-weight: 400;
}
#cssmenu ul ul li:first-child > a {
  box-shadow: none;
}
#cssmenu ul ul ul li:first-child > a {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
#cssmenu ul ul ul li a {
  padding-left: 30px;
}
#cssmenu > ul > li > ul > li:last-child > a,
#cssmenu > ul > li > ul > li.last > a {
  border-bottom: 0;
}
#cssmenu > ul > li > ul > li.open:last-child > a,
#cssmenu > ul > li > ul > li.last.open > a {
/*  border-bottom: 1px solid #ccc;*/
}
#cssmenu > ul > li > ul > li.open:last-child > ul > li:last-child > a {
  border-bottom: 0;
}
#cssmenu ul ul li.has-sub > a::after {
  display: block;
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  right: 20px;
  z-index: 10;
  top: 8.5px;
  border-top: 2px solid #eeeeee;
  border-left: 2px solid #eeeeee;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  border-color: gray;
}
#cssmenu ul ul li.active > a::after,
#cssmenu ul ul li.open > a::after,
#cssmenu ul ul li > a:hover::after {
  border-color: black;
}
#cssmenu ul.otevrena{
    display: block ;
}

#cssmenu ul ul li >a::bevore{
    top:1px;
}

.rozhrani table td{
    padding: 5px;
}
.rozhrani table{
    border-collapse: collapse;
    background-color: white;
    width: 100%;
}

.rozhrani table thead tr td{
    font-weight: bold;
    font-size: 11px;
}
.rozhrani table tbody tr{
    border: 1px solid gray;
}

.rozhrani table div.ena, .rozhrani table div.dis, .rozhrani table div.block{background: url(../img/enabled.gif) no-repeat center center; width: 16px; height: 16px;}
.rozhrani table div.dis{background-image: url(../img/disabled.gif);}
.rozhrani table div.block{background-image: url(../img/stop.png);}

table div.ena, table div.dis, table div.block{background: url(../img/enabled.gif) no-repeat center center; width: 16px; height: 16px;}
table div.dis{background-image: url(../img/disabled.gif);}
table div.block{background-image: url(../img/stop.png);}


.m_info, .m_success, .m_warning, .m_error {
    margin: 10px auto;
    padding:12px;
    font-size: 12px;
    font-weight: bold;
}
.m_info {
    color: #00529B;
    background-color: #BDE5F8;
}
.m_success {
    color: #4F8A10;
    background-color: #DFF2BF;
}
.m_warning {
    color: #9F6000;
    background-color: #FEEFB3;
}
.m_error {
    color: #D8000C;
    background-color: #FFBABA;
}

.ui-effects-transfer { border: 2px dotted gray; background-color: rgba(255,255,255,0.2);}

.color_field {margin: 2px;font-size: 11px;padding: 2px 5px;border-radius: 3px;text-transform: uppercase;color: #fff;border-radius: 3px;-moz-border-radius: 3px;-webkit-border-radius: 3px;}


/*********CALENDAR*********/

	#calendar {
		max-width: 1100px;
		margin: 0 auto;
	}
        
        
        #calendar_middle_column{
    margin-top: 30px;
    float: left;
}

#form_customer_a{
    display: none;
}

#form_commission_a{
    display: none;
}

#wrap{
    width: 100%;
    text-align: center;
}

#calendar_wrap{
    
    display: inline-block;
}

#availableUsers, #selectedUsers{
        min-height: 20px;
        list-style-type: none;
        margin: 0;
        margin-right: 10px;
        border: 1px solid #D3D3D3;
        min-width: 150px;
        min-height: 100px;
}

#availableUsers li, #selectedUsers li, .userBox{
    border-radius: 3px;
    margin: 3px 2px;
    cursor: pointer;
    font-size: 11px;
    color: white;
    padding-left: 5px;
    padding-right: 5px;
}

#userDialog, #dialog-presun, #dialog-delka, #dialog-operativa, #dialog-prodlouzeni, #dialog-smazat, #dialog-vyresit, #dialog-open{
    display: none;
}

.legenda_uzivatel div{
    width: 15px;
    height: 15px;
    margin-right: 8px;
    float: left;
}

.legenda_uzivatel{
    margin-right: 20px;
    margin-bottom: 5px;
}

#legenda li{
    list-style-type: none;
    text-align: left;
}

#legenda{
    float: left;
    margin-top: 75px;
    margin-left: 20px;
    width: 200px;
}

#hodiny{
    margin-top: 60px;
    margin-bottom: 80px;
}

#nazev_kalendare{
    text-align: left;
}

.cal_smallicon{
    margin-right: 3px;
}

#filtry_wrap{
    padding-top: 10px;
}

#filtry_wrap h3{
    text-align: left;
    text-decoration: none;
    font-size: 16px;
    margin-right: 10px;
}

#filtry_wrap div:not(.clear){
    float: left;
}

#filtry div{
    margin: 10px;
}

#calendar_left_column{
    float: left;
}
        
        
#minicalendar{
    margin-top: 75px;
    margin-right: 20px;
    margin-left: 20px;
}

#minicalendar table{
    border-collapse: collapse;
}

#minicalendar span{
    display: none;
}

#minicalendar .prev, #minicalendar .next, #minicalendar .day{
    cursor: pointer;
}

#minicalendar .gray{
    color: lightgray;
}

#minicalendar .hasPlan{
    background-color: #11af27;
    color: white;
}

#minicalendar .gray.hasPlan{
    background-color: #bbcebd;
    color: black;
}

#minicalendar td.selected{
    border-top: 1px solid #007fff;
    border-bottom: 1px solid #007fff;
}

#minicalendar td.selected:first-child{
    border-left: 1px solid #007fff;
}

#minicalendar td.selected:last-child{
    border-right: 1px solid #007fff;
}

#minicalendar td.selectedSingle{
    border: 1px solid #007fff;
}

.fc-event{
    background-color: #EEE;
    border: 1px solid #BBB;
    color: black;
}

.pdfHref{
    margin: 10px;
    padding-top: 20px;
    display: none;
}
.pdfHref a{
    background-image: url(../img/pdf.png);
    background-repeat: no-repeat;
    background-size: 24px;
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.fourNet-baliky,
.fourNet-baliky-s-balickem{
    display: flex;
    justify-content:center;
    display: none;
}

.fourNet-nadpis{
    display:none;
}

.fourNet-baliky #available, .fourNet-baliky #selected,
.fourNet-baliky-s-balickem #available_bal, .fourNet-baliky-s-balickem #selected_bal{
    min-height: 20px;
    list-style-type: none;
    margin: 0;
    margin-right: 10px;
    border: 1px solid #D3D3D3;
    height: 150px;
    width: 200px;
    overflow: scroll;
    overflow-x: hidden;
}

.fourNet-baliky #available li, .fourNet-baliky #selected li,
.fourNet-baliky-s-balickem #available_bal li, .fourNet-baliky-s-balickem #selected_bal li{
    border-radius: 3px;
    margin: 3px 2px;
    cursor: pointer;
    font-size: 11px;
    color: white;
    padding-left: 5px;
    padding-right: 5px;
}

#pridavne_balicky{
    display: flex;
    flex-wrap: wrap;
}

#pridavne_balicky .balicek{
    width: 100px;
    height: 60px;
    border: 1px solid #888;
    background-color: #EEE;
    margin: 4px;
    cursor: pointer;
    color: #999;
    border-radius: 4px;
}

#pridavne_balicky .balicek > div:first-child{
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
    font-size: 14px;
}
#pridavne_balicky .balicek > div:last-child{
    text-align: center;
    padding-top: 10px;
    font-size: 12px;
}

#pridavne_balicky .active{
/*    background-color: rgba(51,218,0,0.4);
    border: 1px solid #29AF00;*/

    background-color: #fc004a;
    background-image: linear-gradient(134deg, #fc004a 0%, #9b2683 100%);
    color: white;
    border-color: #CCC;
}

.komunikace-vypis{
    width: 450px;
}

.komunikace-vypis div:first-child{
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
}

.komunikace-vypis ul{
    list-style: none;
}

.komunikace-vypis ul li{
    margin-top: 5px;
    margin-bottom: 5px;
}

.table-icon-large{
    font-size: 22px;
}

span.ping{
    font-weight: bold;
    cursor: pointer;
}

i.check-ok{
    color: green;
}
i.check-ko{
    color: red;
    font-size: 120%;
}

.service-window-user{border: 1px dotted black;margin-bottom: 20px;width: 1000px;}
.service-window-user-disable{background-color: rgba(0,0,0,0.4);}
.service-window-user-block{background-color: rgba(255,0,0,0.4);}
.service-window-user .service_operation {text-align: right;flex: 1 3%; font-size:120%;}
.service-window-user .service-head{ height:25px;background-color: #47b847;line-height: 25px;padding-left: 10px;color: white;font-weight: bold;text-transform: uppercase;}
.service-window-user-disable .service-head{ background-color: gray;}
.service-window-user-block .service-head{ background-color: red;}

.copy{cursor: pointer;}


    #toast-container {
        position: fixed;
        z-index: 999999;
    }
    .toast-top-right {
        top: 12px;
        right: 12px;
    }
    .toast {
        max-width: 350px;
        overflow: hidden;
        font-size: .875rem;
        background-color: rgba(255,255,255,0.85);
        background-clip: padding-box;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: .25rem;
        box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
        backdrop-filter: blur(10px);
        opacity: 0;
    }
    
    #toast-container>div {
        position: relative;
        overflow: hidden;
        margin: 0 0 .6rem;
        padding: .6rem .6rem .6rem 50px;
        width: 300px;
        border-radius: .25rem;
        background-position: 15px center;
        background-repeat: no-repeat;
        box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,0.03), 0 0.9375rem 1.40625rem rgba(4,9,20,0.03), 0 0.25rem 0.53125rem rgba(4,9,20,0.05), 0 0.125rem 0.1875rem rgba(4,9,20,0.03);
        color: #fff;
        opacity: 0.9;
        line-height: 1.5;
        font-size: 14px;
    }
    #toast-container>.toast-success {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
        box-shadow: 0 0.66875rem 2.3875rem rgba(58,196,125,0.03), 0 1.1375rem 1.60625rem rgba(58,196,125,0.03), 0 0.45rem 0.73125rem rgba(58,196,125,0.05), 0 0.325rem 0.3875rem rgba(58,196,125,0.03);
    }
    
    #toast-container>.toast-error {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
        box-shadow: 0 0.66875rem 2.3875rem rgba(217,37,80,0.03), 0 1.1375rem 1.60625rem rgba(217,37,80,0.03), 0 0.45rem 0.73125rem rgba(217,37,80,0.05), 0 0.325rem 0.3875rem rgba(217,37,80,0.03);
    }
    #toast-container>.toast-warning {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
        box-shadow: 0 0.66875rem 2.3875rem rgba(247,185,36,0.03), 0 1.1375rem 1.60625rem rgba(247,185,36,0.03), 0 0.45rem 0.73125rem rgba(247,185,36,0.05), 0 0.325rem 0.3875rem rgba(247,185,36,0.03);
        color: #212529;
    }
    #toast-container>.toast-info {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important;
        box-shadow: 0 0.66875rem 2.3875rem rgba(22,170,255,0.03), 0 1.1375rem 1.60625rem rgba(22,170,255,0.03), 0 0.45rem 0.73125rem rgba(22,170,255,0.05), 0 0.325rem 0.3875rem rgba(22,170,255,0.03);
    }
    .toast-success {
        background-color: #3ac47d;
    }
    .toast-error {
        background-color: #d92550;
    }
    .toast-warning {
        background-color: #f7b924;
    }
    .toast-info {
        background-color: #16aaff;
    }
    
    #toast-container * {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    button.toast-close-button {
        padding: 0;
        cursor: pointer;
        background: transparent;
        border: 0;
        -webkit-appearance: none;
    }
    .toast-close-button {
        position: relative;
        right: -0.3em;
        top: -0.3em;
        float: right;
        font-weight: bold;
        color: #fff;
        opacity: 0.8;
    }
    

    .color_fiber{
        display: flex;
        width: 200px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .color_fiber div{
        width: 20px;
        height: 20px;
        margin: 5px;
        border: 1px black solid;
        cursor: pointer;
    }
    
    .color_fiber_dialog{
        position: absolute;
        background-color: white;
        padding: 10px;
        border: 1px black solid;
        border-radius: 3px;
    }
    
    .color_fiber_hidden{
        display: none;
    }
    
    .color_fiber_selected{
        width: 35px;
    }
    .color_fiber_mini div{
        width: 15px;
        height: 15px;
        border-radius:3px;
    }
    .color_fiber_mini{
        width: 27px;
    }
    
    .color_fiber .none{
         background: 
         linear-gradient(to top left,
             rgba(0,0,0,0) 0%,
             rgba(0,0,0,0) calc(50% - 0.8px),
             rgba(0,0,0,1) 50%,
             rgba(0,0,0,0) calc(50% + 0.8px),
             rgba(0,0,0,0) 100%),
             linear-gradient(to top right,
             rgba(0,0,0,0) 0%,
             rgba(0,0,0,0) calc(50% - 0.8px),
             rgba(0,0,0,1) 50%,
             rgba(0,0,0,0) calc(50% + 0.8px),
             rgba(0,0,0,0) 100%);
    }
    
    /**barvy vlaken**/
    .color_fiber .hnedy{background: #9e4700;}
    .color_fiber .cerveny{background: #da0202;}
    .color_fiber .oranzovy{background: #ff6f00;}
    .color_fiber .zluty{background: #fff800;}
    .color_fiber .zeleny{background: #2bda02;}
    .color_fiber .tyrkysovy{background: #00fefb}
    .color_fiber .modry{background: #0244da;}
    .color_fiber .fialovy{background: #7d02da;}
    .color_fiber .ruzovy{background: #da02d1;}
    .color_fiber .sedy{background: #9a9a9a;}
    .color_fiber .cerny{background: #000000;}
    .color_fiber .bily{background: #ffffff;}
    /**barvy vlaken s pruhem**/
    .color_fiber .hnedy_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(158,71,0,1) 35%);}
    .color_fiber .cerveny_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(218,2,2,1) 35%);}
    .color_fiber .oranzovy_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(255,111,0,1) 35%);}
    .color_fiber .zluty_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(255,248,0,1) 35%);}
    .color_fiber .zeleny_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(43,218,2,1) 35%);}
    .color_fiber .tyrkysovy_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(0,254,251,1) 35%);}
    .color_fiber .modry_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(2,68,218,1) 35%);}
    .color_fiber .fialovy_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(125,2,218,1) 35%);;}
    .color_fiber .ruzovy_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(218,2,209,1) 35%);}
    .color_fiber .sedy_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(154,154,154,1) 35%);}
    .color_fiber .cerny_pruh{background: linear-gradient(90deg, rgba(255,255,255,1) 2%, rgba(0,0,0,1) 35%);}
    .color_fiber .bily_pruh{background: linear-gradient(90deg, rgba(0,0,0,1) 2%, rgba(255,255,255,1) 35%);}
    
    .manual_sortable{
        margin-bottom: 30px;
        display: flex;
    }
    .manual_sortable span{
        font-weight: bold;
        padding-left: 10px;
    }
    .manual_sortable ul {
        /* width: 142px; */
        min-height: 20px;
        list-style-type: none;
        margin: 0;
        margin-right: 10px;
        border: 1px solid #D3D3D3;
        min-width: 150px;
        min-height: 100px;
        height: 150px;
        width: 200px;
        overflow: scroll;
        overflow-x: hidden;
        margin-top: 5px;
    }

    .manual_sortable ul li{
        border-radius: 3px;
        margin: 3px 2px;
        cursor: pointer;
        font-size: 11px;
        color: white;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    #picker {
                margin:0;
                padding:0;
                border:0;
                width:55px;
                height:16px;
                border-right:20px solid #ccc;
                line-height:16px;
                text-transform: uppercase;
                padding-left: 10px;
                border-top: 1px #cccccc solid;
                border-bottom: 1px #cccccc solid;
                border-left: 1px #cccccc solid;
        }