/* apply a natural box layout model to all elements, but allowing components to change */
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body{

	/*
	font-family: 'Roboto', monospace;
	font-family: 'Roboto Condensed', monospace;
	font-family: 'Open Sans Condensed', monospace;
	font-family: 'Nunito Sans', monospace;
	font-family: 'Lato', monospace;
	font-family: 'Raleway', monospace;
	*/
	font-family: Helvetica, Arial, monospace;
	font-size:14px;
	font-weight: 300;
	background-color:#f9f9f9;
	color:#333;
}

table{
	border-collapse: collapse;
	width:100%;
}
table.striped tbody tr:nth-child(even){
	background-color: #f2f2f2;
}
table.bordered tbody tr:not(:last-child){
	border-bottom: 1px solid #000;
}

.main_wrapper{
	padding: 1em 1em 5em 1em;
	margin:0 auto;

	/*width:1230px;*/
	/*min-width:960px;*/
	/*min-width: 1230px;*/

	/* TODO remove for production */

	/*
	padding:1em 0 3em 0;
	margin:0 auto;
	width:960px;
	*/

	margin-top:80px;
	background-color:#f9f9f9;
}
#icon_busy{
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 5003;
	display: none;
}
header{
	position: fixed;
	top: 0;
	z-index: 91;
	width: 100%;
	height: 77px;
	/*
	background-color: #fff;
	color: #248edc;
	*/
	color: #fff;
	background-color: #248edc;
	background-color: #0078e7;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}
header a{
	color:#fff;
	text-decoration: none;
}
.main_menu{
	width:100%;
	margin:0;
	padding:0;
	list-style: none;
	display:flex;
	justify-content: flex-start;
	align-items: stretch;
}
.main_menu>li{
	/*display:table-cell;*/
	vertical-align: middle;
	text-align:center;
	padding:2px 5px;
	font-size:12px;
	position:relative;
	cursor:pointer;
	display: flex;
	align-items: center;
}
.main_menu>li:hover{
	background-color: #205fac;
}
.main_menu>li:first-child:hover,
.main_menu>li:last-child:hover{
	background-color: #0078e7;
}
.main_menu>li>ul:not(.header_actions) {
	position: absolute;
	top: 100%;
	left:0;
	z-index: 40;
	background-color: #fff;
	padding: 0;
	margin: 0;
	text-align: left;
	list-style: none;
	display:none;
}
.main_menu>li:nth-last-child(2)>ul{
	left:auto;
	right:0;
}
.main_menu>li:hover>ul:not(.header_actions){
	display: block;
}
.main_menu>li>ul:not(.header_actions) li{
	white-space: nowrap;
	background-color:#205fac;
	color:#fff;
}
.main_menu>li>ul:not(.header_actions) li:hover{
	background-color:#1c5191;
}
.main_menu>li>ul:not(.header_actions) li.submenu_title{
	font-weight:bold;
	font-size:larger;
	padding:0.5em;
	cursor: default;
}
.main_menu>li>ul:not(.header_actions) li.submenu_title:hover{
	background-color:#205fac;
}
.main_menu>li>ul:not(.header_actions) li.blank_separator{
	padding:0.5em;
	pointer-events: none;
}
.main_menu>li>ul:not(.header_actions) li.submenu_title.submenu_right{
	position:relative;
	padding:0 0.5em;
}
.main_menu>li>ul:not(.header_actions) li.submenu_title ul{
	position:absolute;
	left: 100%;
	top: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
	display: none;
}
.main_menu>li>ul:not(.header_actions) li.submenu_title ul li{
	font-weight: normal;
	font-size:12px;
}
.main_menu>li>ul:not(.header_actions) li.submenu_title:hover ul{
	display:block;
}
.main_menu>li>ul:not(.header_actions) li a{
	display:block;
	padding: 0.5em 1em 0.5em 1.5em;
}

.main_menu .header_actions{
	position:relative;
	list-style: none;
	margin:0;
	padding:0;
	white-space: nowrap;
}
.main_menu .header_actions>li{
	display:inline-block;
	margin:0 0.5em;
	cursor:pointer;
	position:relative;
	font-size: initial;
}
.main_menu .header_actions>li>ul{
	position:absolute;
	top:calc(100% + 1em);
	right:0;
	padding:0;
	margin:0;
	list-style: none;
	background-color: #fff;
	color: #333;
	width: 200px;
	z-index:90;
	box-shadow:0 3px 8px rgba(0, 0, 0, .3);
	display:none;
}
.main_menu .header_actions>li ul:before {
	position: absolute;
	content: '\025B2';
	color: #fff;
	right: 0;
	bottom: calc(100% - 0.5em);
	font-size: 1.5em;
}
.main_menu .header_actions>li ul li{
	text-align: left;
	color:#248edc;
}
.main_menu .header_actions>li ul li a{
	color:#248edc;
	display: block;
	padding: 0.5em;
}
.main_menu .header_actions>li ul.notifications{
	max-height:400px;
	overflow-y:auto;
}
.main_menu .header_actions>li ul.notifications a{
	white-space: normal;
	font-size: 0.8em;
}
.main_menu .header_actions>li ul.notifications small{
	color:silver;
	display: block;
	text-align:right;
}
.main_menu .header_actions>li ul li:hover{
	background-color:#eee;
}
.main_menu .header_actions li .notification_count{
	position: absolute;
	top: -3px;
	right: -3px;
	z-index: 5;
	color: #fff;
	border-radius: 4px;
	background-color: red;
	width: 13px;
	height: 13px;
	line-height: 13px;
	font-size: 10px;
	text-align: center;
}
.header_actions .msgs_parent:hover,
.header_actions .msgs:hover{
	background-color:#fff !important;
}
.header_actions .msgs{
	list-style:none;
	padding:0;
	width:100%;
	max-height:200px;
	overflow:auto;
}
.header_actions .msgs a{
	padding:0.25em 0.5em !important;
}
.header_actions .msgs .sender{
	margin: 0;
	padding: 0;
	font-size: 13px;
	color:#444;
	font-weight:bold;
	overflow:hidden;
	text-overflow:ellipsis;
}
.header_actions .msgs .sender small{
	float:right;
}
.header_actions .msgs .subject{
	margin: 0;
	padding: 0;
	font-size: 12px;
	color:#888;
	overflow:hidden;
	text-overflow:ellipsis;
}
.header_actions .settings li.separator{
	height:1px;
	background-color: #ccc;
}
.header_actions .form_global_filters{
	padding:0.5em;
}
.header_actions .form_global_filters *{

}
.main_menu>li.menu_item_mobile_hover{
	display: none;
}
header .secondary_menu{
	list-style: none;
	margin: 0;
	padding: 0;
	background-color: #fff;
	color:#248edc;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
header .secondary_menu>li{
	display: inline-block;
	padding:3px 5px;
	position:relative;
}
header .secondary_menu li:hover:not(.logged_user){
	background-color: #eee;
	cursor:pointer;
}
header .secondary_menu li.logged_user{
	/*float:right;*/
	margin-left:auto;
}
header .secondary_menu li:hover ul{
	display:block;
}
header .secondary_menu li ul{
	list-style:none;
	padding:0;
	margin:0;
	display:none;
	position:absolute;
	top:100%;
	left:0;
	background-color:#fff;
	box-shadow:0 3px 8px rgba(0, 0, 0, .3);
	min-width: 100px;
}
header .secondary_menu li ul li{
	padding:5px 10px;
	white-space: nowrap;
}
header .secondary_menu a{
	color:#248edc;
}

p.session_message{
	margin:0;
	padding:0 2em;
	text-align: center;
	color:#6c6;
}
p.session_error_message{
	margin:0;
	padding:2em 2em 0 2em;
	text-align: center;
	color:#c00;
}

#toast-container .toast:empty{
	width:auto;
}

/*
nav.top_menu>ul>li{
	display:inline-block;
	margin:0 0.5em;
	cursor:pointer;
	position:relative;
}
nav.top_menu>ul>li:last-child{
	margin-right: 1em;
}
.top_menu .header_actions{
	float:right;
}
nav.top_menu a{
	color:inherit;
	text-decoration: none;
}
/*
.top_menu li ul{
	position:absolute;
	top:calc(100% + 0.5em);
	right:0;
	padding:0;
	margin:0;
	list-style: none;
	background-color: #fff;
	color: #333;
	width: 200px;
	z-index:90;
	box-shadow:0 3px 8px rgba(0, 0, 0, .3);
	display:none;
}
*/

/*
.top_menu li .notification_count{
	position: absolute;
	top: -3px;
	right: -3px;
	z-index: 5;
	color: #fff;
	border-radius: 4px;
	background-color: red;
	width: 13px;
	height: 13px;
	line-height: 13px;
	font-size: 10px;
	text-align: center;
}

.top_menu li ul li{
	text-align: left;
	padding:0.5em;
	white-space: nowrap;
}
.top_menu li ul li:hover{
	background-color:#eee;
}
*/

.pullout{
	position:fixed;
	z-index:99;
	top:0;
	width:300px;
	height: 100%;
	overflow-y:auto;
	padding:0;
	padding-top:30px;
	background-color:#fff;
	transition-duration: 0.3s;
}
.pullout.pullout-left{
	left:-320px;
	box-shadow: 2px 0 5px 0px rgba(0,0,0,0.3);
}
.pullout.pullout-left.visible{
	left:0;
}
.pullout.pullout-right{
	right:-320px;
	box-shadow: -2px 0 5px 0px rgba(0,0,0,0.3);
}
.pullout.pullout-right.visible{
	right:0;
}
.pullout_title{
	position:absolute;
	top:0;
	width:100%;
	height:40px;
	line-height: 40px;
	padding:0 0.5em;
	background-color:#0a6aa1;
	color:#fff;
}
.pullout_content{
	position:absolute;
	top:40px;
	bottom:0;
	width:100%;
	overflow:auto;
}
.pullout .btnHide{
	position: absolute;
	top: 12px;
	right: 10px;
	cursor:pointer;
}

.pullout_compose_mail{
	position:fixed;
	z-index:99;
	bottom:-300px;
	right:10px;
	width:500px;
	background-color:#fff;
	height: 300px;
	transition-duration: 0.3s;
}
.pullout_compose_mail.visible{
	bottom:0;
}
.pullout_compose_mail .btnHide{
	position: absolute;
	top: 12px;
	right: 10px;
	cursor:pointer;
}

.pullout_compose_mail input[type="text"], .pullout_compose_mail select{
	width:100%;
	height:2em;
	padding:0.5em;
}

.pullout_compose_mail form{
	display:flex;
	flex-direction: column;
	border:1px solid #000;
	border-bottom: none;
	height:100%;
}
.pullout_compose_mail form>*{
	display:flex;
}
.pullout_compose_mail form textarea{
	flex-grow: 1;
	resize: none;
	padding:0.5em;
}
.pullout_compose_mail form .select2>.selection{
	width:100%;
}

.top_bar{
	background-color:#248edc;
	background-color: #0078e7;
	color:#fff;
	box-shadow:0 3px 8px rgba(0, 0, 0, .3);
	margin-bottom:2em;
}
.top_bar a{
	color:#fff;
	text-decoration: none;
}
.top_bar .breadcrumbs{
	background-color: #0a6aa1;
	color:#fff;
	padding: 5px;
	margin:0;
}
.top_bar ul{
	margin:0;
	padding:0;
	list-style: none;
	font-size:small;
}
.top_bar li{
	float:left;
	/*
	padding:10px;
	max-width: 100px;
	*/
	padding:10px 5px;
	max-width: 80px;

	text-align:center;
	cursor:pointer;
	/* TODO check text-overflow */
	max-height: 75px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.upgraded_table{
	width:100%;
	/*table-layout: fixed;*/
}
.modal .upgraded_table{
	table-layout: auto;
}
.upgraded_table{
	display: none;
	/*visibility: hidden;*/
}
/*.sifrarnik_lista .upgraded_table{*/
	/*display: table !important;*/
/*}*/
.upgraded_table.footable,
.upgraded_table.footable-details{
	display:table;
	visibility: visible;
}
.upgraded_table.dataTable{
	/* table is shown throu javascript, in initComplete callback because of FOUC */
	/*
	display:table;
	visibility: visible;
	*/
}
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
	padding: 2px 2px;
}
.dataTables_wrapper .paging_info_row{
	display: flex;
	justify-content: space-between;
}
.dataTables_wrapper .paging_info_row .dataTables_length{
	padding-top:0.5em;
}
.upgraded_table th{
	/* text-align: left; */
}
/*.footable th,*/
.footable td{
	padding:3px;
	border-right:1px solid #e0e0e0;
}
.upgraded_table td.numeric{
	text-align: right;
}
.footable td.actions {
	white-space: nowrap;
	word-spacing: .5em;
	text-align: right;
	width:0;
	min-width: 100px;
}
.footable td.actions .btn{
	padding: 2px 6px;
	font-size: 14px;
}
.footable tr.footable-header{
	background-color: #e1f5fe;
	font-size:smaller;
}
.footable>tbody>tr:nth-child(even) {
	background-color: #f2f2f2;
}

th.actions,
td.actions{
	min-width:100px;
}

table.dataTable.compact thead th,
table.dataTable.compact thead td {
	padding: 4px 12px;
	font-size: smaller;
}
table.dataTable>tbody>tr.child ul.dtr-details{
	width: 100%;
}
table.dataTable.compact thead th,
table.dataTable.compact thead td {
	padding: 4px 12px;
	font-size:smaller;
}
ul.dtr-details{
	width:100%;
}

.upgraded_table .table_form_wrapper{
	display: none;
}
.upgraded_table .dtr-details .table_form_wrapper {
	display: table;
}

	/*
    .select2-container--default .select2-selection--multiple .select2-selection__choice{
        float:none;
    }

    .select2-selection--multiple{
        height:100px;
        overflow-y:auto;
    }
    */
.select2-container--default .select2-selection--multiple{
	border-radius:unset;
}
.select2-dropdown{
	z-index:2901;
}
.select2-hidden-accessible{
	width:1px !important;
}

.datepicker{
	max-width:80px;
}
input[type="color"]{
	max-width: 50px;
	height: 30px;
	padding: 0 !important;
	border: none;
	background-color: transparent;
}
input[type="number"]{
	max-width:100px;
}
select.chkbx{
	max-width: 80px;
	width:0 !important;
	height:0;
	opacity: 0;
	visibility: hidden;
	border-width: 0;
	padding:0 !important;
}


.clr_flt{
	float: none !important;
	display:block;
	height:0 !important;
	clear:both;
	margin: 0;
	padding: 0;
}

.blocker{
	z-index:2898;
	background-color:#fff;
	background-color: rgba(255,255,255,0.75);
}
.modal{
	z-index:2899;
	display:none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width:auto;
	max-width:90%;
	min-width: 900px;

	max-height:90%;
	overflow-y:auto;
}
.modal a.close-modal{
	top:0;
	right:0;
}







.sifrarnik_lista{
	/*font-size:12px;*/
}
.sifrarnik_lista .sifrarnik_title{
	font-weight:bold;
	font-size:larger;
}
.sifrarnik_lista button{
	/*
	background-color: transparent;
	border:none;
	margin-right:10px;
	padding:0;
	*/
}
.sifrarnik_lista table{
	width:100%;
}
.sifrarnik_lista table th{
	font-weight:bold;
	/*text-align:center;*/
}
.sifrarnik_lista .table_wrapper{
	max-height:500px;
	overflow:auto;
}
.sifrarnik_lista table th, .sifrarnik_lista table td{
	padding:5px;
}
.sifrarnik_lista table td{
	border-top:1px solid #ccc;
}
.sifrarnik_lista .actions, .sifrarnik_lista .naziv{
	white-space:nowrap;
}

.modal .form-control-input input[type="text"]{
	border: 1px solid silver;
}
.modal .form-control-container.form-actions{
	text-align:right;
}



.tabs{
	/*margin-top:2em;*/
}
.tab_links{
	list-style:none;
	padding:0;
	margin:0;
	margin-top:10px;
}
.tab_links:after{
	height: 0;
	padding: 0;
	margin:0;
	border:1px solid silver;
	width:100%;
	position:relative;
	top:-3px;
}
.tab_links li{
	float:left;
	list-style:none;
	background-color:#ddd;

	border:1px solid #ccc;
	border-right-width:2px;

	padding:5px 10px;
	cursor:pointer;
}
.tab_links li.active,
.tab_links li:hover{
	background-color:#fff;

	border-right-width:2px;
	border-bottom-width:4px;
	border-color: #ddd;
	border-bottom-color: #fff;

	position: relative;
	top: -3px;
}
.tab_links li:hover{
	background-color:#eee;
	border-bottom-color:#eee;
}
.tab_links li.active:hover{
	background-color:#fff;
	border-bottom-color:#fff;
}
.tab_links li a{
	text-decoration: none;
	color:inherit;
}
.tabs>div{
	display:none;
}
.tabs>div.active{
	display:block;
}

/* code is duplicated because of inner tabs */
.subtabs{
	/*margin-top:2em;*/
}
.subtab_links{
	list-style:none;
	padding:0;
	margin:0;
	margin-top:10px;
}
.subtab_links:after{
	height: 0;
	padding: 0;
	margin:0;
	border:1px solid silver;
	width:100%;
	position:relative;
	top:-3px;
}
.subtab_links li{
	float:left;
	list-style:none;
	background-color:#ddd;

	border:1px solid #ccc;
	border-right-width:2px;

	padding:3px 10px;
	cursor:pointer;

	font-size:small;
}
.subtab_links li.active,
.subtab_links li:hover{
	background-color:#fff;

	border-right-width:2px;
	border-bottom-width:4px;
	border-color: #ddd;
	border-bottom-color: #fff;

	position: relative;
	top: -3px;
}
.subtab_links li:hover{
	background-color:#eee;
	border-bottom-color:#eee;
}
.subtab_links li.active:hover{
	background-color:#fff;
	border-bottom-color:#fff;
}
.subtab_links li a{
	text-decoration: none;
	color:inherit;
}
.subtabs>div{
	display:none;
}
.subtabs>div.active{
	display:block;
}
/* code duplication end */



.table_form_wrapper{
	display:table;
	width:100%;
}
form.tbl_row{
	display:table-row;
	width:100%;
}
form.tbl_row .cell{
	display:table-cell;
	vertical-align:top;
	padding:5px 1px;
}
form.tbl_row .cell input[type="text"],
form.tbl_row .cell input[type="number"],
form.tbl_row .cell select,
form.tbl_row .cell textarea{
	width:100%;
	padding: 3px;
}
.table_form_wrapper .header{
	display:table-row;
	width:100%;
	font-weight:bold;
	font-size:smaller;
	background-color:#e1f5fe !important;
}
.table_form_wrapper tr:nth-child(odd){
	background-color: #f0f0f0;
}
.table_form_wrapper .header>div,
.table_form_wrapper .header li{
	display:table-cell;
	padding:5px 1px;
}
.table_form_wrapper td{
	padding:3px;
}
/*
.table_form_wrapper th{
	border-bottom: 1px solid silver;
}
*/
/* .table_form_wrapper th, */
.table_form_wrapper td {
	border-right: 1px solid #e0e0e0;
}
.table_form_wrapper td:last-child, .table_form_wrapper th:last-child {
	border-right: none;
}
.table_form_wrapper td:first-child{
	padding-left:0;
}
.table_form_wrapper td:last-child{
	padding-right:0;
}
.table_form_wrapper td.actions{
	text-align: right;
	white-space:nowrap;
	width:1%;
	min-width: 1%;
	padding-left:0;
	padding-right:0;
}
.table_form_wrapper td.actions button{
	float:none;
}
.table_form_wrapper .controls button{
	/*
	background-color: transparent;
	border:none;
	margin: 0 5px;
	padding: 0;
	*/
	float:none;
}
.table_form_wrapper td.datetime,
.table_form_wrapper td.checkmark,
.table_form_wrapper td.color{
	text-align: center;
}
.table_form_wrapper th.numeric,
.table_form_wrapper td.numeric{
	text-align: right;
}

.table_form_controls{
	margin-top:20px;
}


.cell{
	/* position:relative; */
}
.cell textarea{
	/*transition: all 0.5s;*/
	height:25px;
	min-width: 150px;
}
.cell textarea:focus{
	/*
	position:relative;
	top:-150px;
	z-index:88;
	height:200px;
	*/
	/* transform:translateY(-200px); */
	/*
	position: absolute;
	z-index: 9999;
	bottom: 8px;
	height: 100px;
	width: calc(100% - 5px);
	*/
	/* min-width: 150px; */
}





.tasks.pullout .pullout_content>ul{
	margin:0;
	padding:0;
	list-style:none;
}
.tasks.pullout .pullout_content>ul>li{
	padding:0;
	cursor:pointer;
	border-top: 1px solid #fff;
}
.tasks.pullout .pullout_content>ul>li:first-child{
	border:none;
}
.tasks.pullout .pullout_content>ul>li>span{
	padding: 0.5em 1em;
	background-color: #248edc;
	color: #fff;
	font-weight: bold;
	display: block;
}
.tasks.pullout li{
	padding: 3px;
}


.fa-stack.fa-combined .fa-stack-1x{
	margin: 30% 0px 0px 40%;
	text-shadow:
			-1px -1px 0 #000,
			 1px -1px 0 #000,
			-1px 1px 0 #000,
			 1px 1px 0 #000;
}
.fa-stack.fa-combined .fa-stack-2x{
	text-shadow:
			-1px -1px 0 #000,
			1px -1px 0 #000,
			-1px 1px 0 #000,
			1px 1px 0 #000;
}



/* buttons */
.button_group,
.btn-group{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
}

.btn-group button,
.button_group button,
.button_group input[type="button"],
.button_group .btn,
td.actions a.btn{
	display: inline-block;
	padding: 2px 6px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-appearance: button;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid #ccc;
	overflow: visible;
	text-transform: none;
	background-color: #fff;
	text-decoration: none;
	position: relative;
	float: left;
}

.button_group button:hover,
.button_group input[type="button"]:hover,
.button_group .btn:hover {
	background-color: #e6e6e6;
	border-color: #adadad;
}

.button_group a.btn,
td.actions a.btn{
	color:inherit;
}

.button_group .btn-primary {
	color: #fff;
	background-color: #337ab7;
	border-color: #2e6da4;
}
.button_group .btn-primary:hover,
.button_group .btn-primary:focus,
.button_group .btn-primary.focus,
.button_group .btn-primary:active,
.button_group .btn-primary.active,
.button_group .open > .dropdown-toggle.btn-primary {
	color: #fff;
	background-color: #286090;
	border-color: #204d74;
}

.button_group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.button_group > .btn:first-child {
	margin-left: 0;
}

.btn-disabled{
	color:#ccc;
}

td.actions{
	/*text-align: center;*/
	text-align: right;
}
/* //TODO check why is it commented */
/*
thead tr:first-child{
	background-color: #e1f5fe;
}
*/

.btnAttachFile{
	cursor:pointer;
}

input[type="number"]{
	text-align:right;
}

.attachments_list table{
	width:100%;
}
.attachments_list thead{
	font-weight: bold;
	font-size: smaller;
	background-color: #e1f5fe;
}
.attachments_list th{
	font-weight:bold;
	text-align: center;
}
.attachments_list th, .attachments_list td{
	padding:5px;
}
.attachments_list td.datum{
	text-align: center;
}
/*
.attachments_list th:first-child, .attachments_list td:first-child{
	text-align:left;
}
*/
.attachments_list th:last-child, .attachments_list td:last-child{
	text-align:right;
}

.datepicker{
	max-width:90px;
}

.documents_list thead{
	font-weight: bold;
	font-size: smaller;
	background-color: #e1f5fe;
}

.documents_list_small{
	list-style:none;
	margin:0;
	padding:0;
	text-align:left;
	font-size:small;
}
.documents_list_small + .btnOpenDocMan{
	width: 24px;
}

.attachments_list_small{
	list-style:none;
	margin:0;
	padding:0;
	text-align:left;
	font-size:small;
	white-space: nowrap;
}
.attachments_list_small + .btnOpenDocMan{
	width: 24px;
}

.btnRemoveAttachment:hover{
	cursor:pointer;
	color:red;
}

.eksterna_komunikacija_mails .mail{

}
.eksterna_komunikacija_mails .header{
	padding:0.5em 0;
	cursor:pointer;
}
.eksterna_komunikacija_mails .header span{
	display: inline-block;
	width:60%;
}
.eksterna_komunikacija_mails .header span:first-child{
	width:25%;
}
.eksterna_komunikacija_mails .header span:last-child{
	width:15%;
	text-align: right;
}
.eksterna_komunikacija_mails iframe{
	display: none;
	margin-bottom:1em;
	height: 300px;
	width: 100%;
	border: 1px solid black;
}

.tab_links>li span {
	background-color: #248edc;
	padding: 1px 4px;
	border-radius: 50%;
	font-size: smaller;
	color: #fff;
	margin-left: 3px;
}

table.styled th{
	font-size: smaller;
}
/*table.styled th,*/
table.styled td{
	padding: 5px;
	border-right: 1px solid #e0e0e0;
}
table.styled .numeric{
	text-align: right;
}

.system_message{
	padding:0.5em;
	text-align: center;
	font-weight: bold;
}
.system_message_info{
	color: #004085;
	background-color: #cce5ff;
	border-color: #b8daff;
}
.system_message_success{
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}
.system_message_warning{
	color: #856404;
	background-color: #fff3cd;
	border-color: #ffeeba;
}
.system_message_error{
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.fa-clipboard{
	cursor:pointer;
	font-size:1.2em;
	vertical-align: middle;
	margin-left: 0.5em;
}

.visible_columns {
	position: absolute;
	background-color: #fff;
	z-index: 9;
	padding: 0.5em;
	white-space: nowrap;
	right: 0;
	display: none;
	font-size:1em;
}
.visible_columns label {
	display: block;
	text-align: left;
	padding: 2px 0;
}
.visible_columns input {
	margin-right: 0.5em;
}

.centered{
	text-align:center;
}

/*TODO remove this */
.main_menu ul a[href="#"], .main_menu ul a[href^="default.php"]{
	color: #777;
	pointer-events: none;
	cursor: default;
}
header .secondary_menu a[href="#"]{
	color: #dddddd;
}

.wrap_export_to_pdf{
	text-align:right;
	margin-top:2em;
}


@media print {
	header{
		display:none;
	}
	.main_wrapper{
		width: 100%;
		margin:0;
	}
	.pullout_compose_mail{
		display: none;
	}
	.top_bar .breadcrumbs{
		font-size:1.2em;
		font-weight:bold;
	}
	.top_bar ul{
		display:none;
	}
	th.actions,
	td.actions{
		display:none;
	}
	.wrap_export_to_pdf{
		display:none;
	}
	a[href]:after { content: none !important; }
	img[src]:after { content: none !important; }

	input,textarea {
		border: none;
	}
	.form-control-container{
		width: 100%;
		position:relative;
	}
}