/**
 *
 * Apply Here your Custom CSS
 *
*/

body {
	
}

/* Hyphenate: automatischer Wortumbruch (Silbentrennung)
* 		https://css-tricks.com/almanac/properties/h/hyphenate/
 */
.hyphenate {
 -ms-word-break: break-all;
     word-break: break-all;

     // Non standard for webkit
     word-break: break-word;

-webkit-hyphens: auto;
   -moz-hyphens: auto;
        hyphens: auto;
}

/* Text in Zeile von DataTables zentrieren */
th.dt-center, td.dt-center { text-align: center; }

/* Text in Zeile von DataTables links ausrichten */
th.dt-right, td.dt-right { text-align: right; }

/* Datapicker für Modal*/
.datepicker1{z-index:100000 !important;}
.ui-datepicker1{ z-index:100000 !important; }
.datepicker{z-index:1151 !important;}

.table {
	font-size: 12px;
}

.tooltip {
	 position: fixed;
}

/* könnte Problem mit Dropdown in Tabelle lösen 
    .dropdown-menu {
        position: relative !important; 
    }
*/

.truncate {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}