/*
 *  File:         demo_table.css
 *  CVS:          $Id$
 *  Description:  CSS descriptions for DataTables demo pages
 *  Author:       Allan Jardine
 *  Created:      Tue May 12 06:47:22 BST 2009
 *  Modified:     $Date$ by $Author$
 *  Language:     CSS
 *  Project:      DataTables
 *
 *  Copyright 2009 Allan Jardine. All Rights Reserved.
 *
 * ***************************************************************************
 * DESCRIPTION
 *
 * The styles given here are suitable for the demos that are used with the standard DataTables
 * distribution (see www.datatables.net). You will most likely wish to modify these styles to
 * meet the layout requirements of your site.
 *
 * Common issues:
 *   'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
 *     no conflict between the two pagination types. If you want to use full_numbers pagination
 *     ensure that you either have "example_alt_pagination" as a body class name, or better yet,
 *     modify that selector.
 *   Note that the path used for Images is relative. All images are by default located in
 *     images/ - relative to this CSS file.
 */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables features
 */

.dataTables_wrapper {
	position: relative;
	clear: both;
	zoom: 1; /* Feeling sorry for IE */
}

.dataTables_processing {
  background-color: #8bb63a;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  height: 50px;
  left: 50%;
  margin-left: -125px;
  margin-top: -15px;
  padding: 14px 0 2px;
  position: absolute;
  text-align: center;
  top: 150px;
  width: 250px;
  z-index: 10000;
}

.dataTables_length {
	width: 50%;
	float: left;
         margin: 10px 0;
border-top: 1px solid #8BB63A;
padding-top: 10px;
}

.dataTables_filter {
	width: 50%;
	float: right;
	text-align: right;
        margin: 10px 0;
border-top: 1px solid #8BB63A;
padding-top: 10px;
}

.dataTables_filter input {width: 80%;}


.dataTables_info {
	width: 50%;
	float: left;
	padding: 10px 0;
}

.dataTables_paginate {
	float: right;
	text-align: right;
}

/* Pagination nested */
.paginate_disabled_previous, .paginate_enabled_previous,
.paginate_disabled_next, .paginate_enabled_next {
	height: 19px;
	float: left;
	cursor: pointer;
	*cursor: hand;
	color: #111 !important;
}
.paginate_disabled_previous:hover, .paginate_enabled_previous:hover,
.paginate_disabled_next:hover, .paginate_enabled_next:hover {
	text-decoration: none !important;
}
.paginate_disabled_previous:active, .paginate_enabled_previous:active,
.paginate_disabled_next:active, .paginate_enabled_next:active {
	outline: none;
}

.paginate_disabled_previous,
.paginate_disabled_next {
	color: #666 !important;
}
.paginate_disabled_previous, .paginate_enabled_previous {
	padding-left: 23px;
}
.paginate_disabled_next, .paginate_enabled_next {
	padding-right: 23px;
	margin-left: 10px;
}

.paginate_disabled_previous {
	background: url('images/back_disabled.png') no-repeat top left;
}

.paginate_enabled_previous {
	background: url('images/back_enabled.png') no-repeat top left;
}
.paginate_enabled_previous:hover {
	background: url('images/back_enabled_hover.png') no-repeat top left;
}

.paginate_disabled_next {
	background: url('images/forward_disabled.png') no-repeat top right;
}

.paginate_enabled_next {
	background: url('images/forward_enabled.png') no-repeat top right;
}
.paginate_enabled_next:hover {
	background: url('images/forward_enabled_hover.png') no-repeat top right;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables display
 */
table.dataTable {
	margin: 0 auto;
	clear: both;
	width: 100%;
	
	/* Note Firefox 3.5 and before have a bug with border-collapse
	 * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 ) 
	 * border-spacing: 0; is one possible option. Conditional-css.com is
	 * useful for this kind of thing
	 *
	 * Further note IE 6/7 has problems when calculating widths with border width.
	 * It subtracts one px relative to the other browsers from the first column, and
	 * adds one to the end...
	 *
	 * If you want that effect I'd suggest setting a border-top/left on th/td's and 
	 * then filling in the gaps with other borders.
	 */
}

table.dataTable thead th, aside thead th {
	padding: 3px 18px 3px 10px;
	border-bottom: 2px solid #8bb63a;
	font-weight: bold;
	cursor: pointer;
	* cursor: hand;
}

aside thead th {
	padding: 3px 18px 3px 10px;
	border-bottom: 0 none;
	font-weight: bold;
	cursor: pointer;
	* cursor: hand;
}

table.dataTable tfoot th {
	padding: 3px 18px 3px 10px;
	border-top: 1px solid black;
	font-weight: bold;
}

table.dataTable tr.heading2 td {
	border-bottom: 1px solid #aaa;
}

table.dataTable td {
	padding: 3px 10px;
}

#termin td {
   padding: 3px 0px; 
}

table.dataTable td.center {
	text-align: center;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables sorting
 */

.sorting_asc {
	background: url('images/sort_asc.png') no-repeat center right;
}

.sorting_desc {
	background: url('images/sort_desc.png') no-repeat center right;
}

.sorting {
	background: url('images/sort_both.png') no-repeat center right;
}

.sorting_asc_disabled {
	background: url('images/sort_asc_disabled.png') no-repeat center right;
}

.sorting_desc_disabled {
	background: url('images/sort_desc_disabled.png') no-repeat center right;
}
 
table.dataTable thead th:active,
table.dataTable thead td:active {
	outline: none;
}




/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables row classes
 */
table.dataTable tr.odd.gradeA {
	background-color: #ddffdd;
}

table.dataTable tr.even.gradeA {
	background-color: #eeffee;
}

table.dataTable tr.odd.gradeC {
	background-color: #ddddff;
}

table.dataTable tr.even.gradeC {
	background-color: #eeeeff;
}

table.dataTable tr.odd.gradeX {
	background-color: #ffdddd;
}

table.dataTable tr.even.gradeX {
	background-color: #ffeeee;
}

table.dataTable tr.odd.gradeU {
	background-color: #ddd;
}

table.dataTable tr.even.gradeU {
	background-color: #eee;
}


tr.odd {
	background-color: #F5F7F4;
        border-top: 1px solid #d2d2d2;
}

tr.even {
	background-color: white;
          border-top: 1px solid #d2d2d2;
}

table tr i {color: #777;position: relative;bottom: 10px;font-size: 1.3rem !important;}
table tr i:hover {color:#8bb63a;}
table tr i.file-icon {
float: left;
bottom: 2px;
margin-right: 8px;
}




/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Misc
 */
.dataTables_scroll {
	clear: both;
}

.dataTables_scrollBody {
	*margin-top: -1px;
	-webkit-overflow-scrolling: touch;
}

.top, .bottom {
	padding: 15px;
	background-color: #F5F5F5;
	border: 1px solid #CCCCCC;
}

.top .dataTables_info {
	float: none;
}

.clear {
	clear: both;
}

.dataTables_empty {
	text-align: center;
}

tfoot input {
	margin: 0.5em 0;
	width: 100%;
	color: #444;
}

tfoot input.search_init {
	color: #999;
}

td.group {
	background-color: #d1cfd0;
	border-bottom: 2px solid #A19B9E;
	border-top: 2px solid #A19B9E;
}

td.details {
	background-color: #d1cfd0;
	border: 2px solid #A19B9E;
}


.example_alt_pagination div.dataTables_info {
	width: 40%;
}

.paging_full_numbers {
	width: 50%;
	height: 22px;
	line-height: 22px;
	padding: 10px 0;
}

.paging_full_numbers a:active {
	outline: none
}

.paging_full_numbers a:hover {
	text-decoration: none;
}

.paging_full_numbers a.paginate_button,
 	.paging_full_numbers a.paginate_active {
	border: 1px solid #d3d3d3;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 4px 8px;
	margin: 0 3px;
	cursor: pointer;
	*cursor: hand;
	color: #333 !important;
}

.paging_full_numbers a.paginate_button {
	background-color: #fff;
}

.paging_full_numbers a.paginate_button:hover {
	background-color: #ddd;
	text-decoration: none !important;
}

.paging_full_numbers a.paginate_active {
	background-color: #8bb63a;
  color: #fff !important;
}

table.dataTable tr.even.row_selected td {
	background-color: #B0BED9;
}

table.dataTable tr.odd.row_selected td {
	background-color: #9FAFD1;
}


/*
 * Sorting classes for columns
 */
/* For the standard odd/even */
tr.odd td.sorting_1 {
        border-right: 1px solid #dddddd;
}

tr.odd td.sorting_2 {
	background-color: #DADCFF;
}

tr.odd td.sorting_3 {
	background-color: #E0E2FF;
}

tr.even td.sorting_1 {

}

tr.even td.sorting_2 {
	background-color: #F2F3FF;
}

tr.even td.sorting_3 {
	background-color: #F9F9FF;
}


/* For the Conditional-CSS grading rows */
/*
 	Colour calculations (based off the main row colours)
  Level 1:
		dd > c4
		ee > d5
	Level 2:
	  dd > d1
	  ee > e2
 */
tr.odd.gradeA td.sorting_1 {
	background-color: #c4ffc4;
}

tr.odd.gradeA td.sorting_2 {
	background-color: #d1ffd1;
}

tr.odd.gradeA td.sorting_3 {
	background-color: #d1ffd1;
}

tr.even.gradeA td.sorting_1 {
	background-color: #d5ffd5;
}

tr.even.gradeA td.sorting_2 {
	background-color: #e2ffe2;
}

tr.even.gradeA td.sorting_3 {
	background-color: #e2ffe2;
}

tr.odd.gradeC td.sorting_1 {
	background-color: #c4c4ff;
}

tr.odd.gradeC td.sorting_2 {
	background-color: #d1d1ff;
}

tr.odd.gradeC td.sorting_3 {
	background-color: #d1d1ff;
}

tr.even.gradeC td.sorting_1 {
	background-color: #F5F7F4;
}

tr.even.gradeC td.sorting_2 {
	background-color: #e2e2ff;
}

tr.even.gradeC td.sorting_3 {
	background-color: #e2e2ff;
}

tr.odd.gradeX td.sorting_1 {
	background-color: #8bb63a;
}

tr.odd.gradeX td.sorting_2 {
	background-color: #ffd1d1;
}

tr.odd.gradeX td.sorting_3 {
	background-color: #ffd1d1;
}

tr.even.gradeX td.sorting_1 {
	background-color: #ffd5d5;
}

tr.even.gradeX td.sorting_2 {
	background-color: #ffe2e2;
}

tr.even.gradeX td.sorting_3 {
	background-color: #ffe2e2;
}

tr.odd.gradeU td.sorting_1 {
	background-color: #c4c4c4;
}

tr.odd.gradeU td.sorting_2 {
	background-color: #d1d1d1;
}

tr.odd.gradeU td.sorting_3 {
	background-color: #d1d1d1;
}

tr.even.gradeU td.sorting_1 {
	background-color: #d5d5d5;
}

tr.even.gradeU td.sorting_2 {
	background-color: #e2e2e2;
}

tr.even.gradeU td.sorting_3 {
	background-color: #e2e2e2;
}


/*
 * Row highlighting example
 */
.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
	background-color: #ECFFB3;
}

.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
	background-color: #E6FF99;
}

.ex_highlight_row #example tr.even:hover {
	background-color: #ECFFB3;
}

.ex_highlight_row #example tr.even:hover td.sorting_1 {
	background-color: #DDFF75;
}

.ex_highlight_row #example tr.even:hover td.sorting_2 {
	background-color: #E7FF9E;
}

.ex_highlight_row #example tr.even:hover td.sorting_3 {
	background-color: #E2FF89;
}

.ex_highlight_row #example tr.odd:hover {
	background-color: #E6FF99;
}

.ex_highlight_row #example tr.odd:hover td.sorting_1 {
	background-color: #D6FF5C;
}

.ex_highlight_row #example tr.odd:hover td.sorting_2 {
	background-color: #E0FF84;
}

.ex_highlight_row #example tr.odd:hover td.sorting_3 {
	background-color: #DBFF70;
}


/*
 * KeyTable
 */
table.KeyTable td {
	border: 3px solid transparent;
}

table.KeyTable td.focus {
	border: 3px solid #3366FF;
}

table.dataTable tr.gradeA {
	background-color: #eeffee;
}

table.dataTable tr.gradeC {
	background-color: #ddddff;
}

table.dataTable tr.gradeX {
	background-color: #ffdddd;
}

table.dataTable tr.gradeU {
	background-color: #ddd;
}

div.box {
	/* height: 100px; */
	padding: 0px 10px;
	overflow: auto;
	border: 1px solid #d3d3d3;
	background-color: #F5F7F4












}

/*  
 * Extranet Termin List
 * Table 
 */
table.dataTable{
	xborder: 1px solid red;
}

table.dataTable thead tr{
	border-bottom:1px solid #dddddd;
        background-color: #d3d3d3;
}

table.dataTable tr, aside tr {
	border-bottom:1px solid #dddddd;
}

#termin {margin-bottom: 10px;}
#termin td.datum {
    width: 40%;
}

table.dataTable tr.selected {
	background-color: #D4E7A7;
}

table.dataTable tr:hover {
	background-color: #dddddd;
}


table.dataTable tr.termin {
border-bottom: 2px solid #8BB63A;
background-color: #D4E7A7;
font-weight: 600;
}

table.dataTable tr td{
	padding: 5px 10px !important;
        position: relative;
        border-right: 1px solid #dddddd;
	}
table.dataTable tr td:first-child {
font-weight: bold;
}

table.dataTable tr td span {
            position: absolute;
            right: 5px;
            top: 5px;
            font-weight: bold;
        }

table.dataTable tr.termin td{
	font-weight: 600;
	
}


/*  
 * Extranet Termin List
 * Icons 
 */
td.termin_show,
td.termin_edit,
td.termin_delete,
td.termin_online,
td.termin_offline,
td.termin_move,
td.gesendet,
td.termin_pdf,
td.termin_pdf_eco,
td.termin_kursnet_active,
td.termin_ws,
td.termin_add{
  	width: 10px;
  	background-repeat: no-repeat;
  	background-position: center center;
  	-webkit-background-size: 70% auto;
  	background-size: 20px auto;
}

td.termin_show{ padding: 5px 0px !important;}
td.no_delete i {display: none;}
td.termin_add i {color: #8bb63a;}

td.termin_show a,
td.termin_edit a,
td.termin_delete a,
td.termin_online a,
td.termin_offline a,
td.termin_move a,
td.termin_pdf a,
td.termin_pdf_eco a,
td.termin_add a{
	padding: 3px 3px;
	text-decoration: none;
	display: block;
}

/*EQMS ansicht*/
.span_8_omega .formular{
	float:none !important;
	width:inherit !important;
}

/*eqms edit document data table*/
.pg_massnahmeart_wrapper .select2-container, 
.pg_massnahmeart_wrapper .select2-drop, 
.pg_massnahmeart_wrapper .select2-search, 
.pg_massnahmeart_wrapper .select2-search input{
	width: 90% !important;
	background: #f5f7f4 !important;
}


