/* Styles for export table icons */
.supsystic-tables-export i {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height: 1.4em;
    width: 1.2em;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 0.3em;
}

i.export-pdf-icon {
    background-image: url('../images/icons/pdf.svg');
}

i.export-csv-icon {
    background-image: url('../images/icons/csv.svg');
}

i.export-xls-icon {
    background-image: url('../images/icons/xls.svg');
}

i.export-xlsx-icon {
    background-image: url('../images/icons/xls.svg');
}

i.export-print-icon {
    background-image: url('../images/icons/print.svg');
}

i.export-email-icon {
    background-image: url('../images/icons/email.svg');
}

/* Styles for collapsible cells */
.supsystic-tables-wrap tr.collapsibleRowMain > th:first-child,
.supsystic-tables-wrap tr.collapsibleRowMain > td:first-child {
	position: relative;
	padding-left: 30px !important;
}
.supsystic-tables-wrap tr.collapsibleRowMain > th:first-child:after,
.supsystic-tables-wrap tr.collapsibleRowMain > td:first-child:after {
	position: absolute;
	top: 50%;
	left: 7px;
	content: "\f055";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	color: #000;
	font-size: 18px;
	text-decoration: none;
	transform: translateY(-50%);
}
.supsystic-tables-wrap .supsystic-table.collapsed tr.collapsibleRowMain > th:first-child:after,
.supsystic-tables-wrap .supsystic-table.collapsed tr.collapsibleRowMain > td:first-child:after {
	top: 19px;
	left: 30px;
}
.supsystic-tables-wrap .collapsibleRowMain.collapsibleRowOpen th:first-child:after,
.supsystic-tables-wrap .collapsibleRowMain.collapsibleRowOpen td:first-child:after {
	content: "\f056";
}
.supsystic-tables-wrap .collapsibleRowHide:not(.collapsibleSearchMode) {
	display: none;
}
/* Hide icons for tables inside .dataTables_scrollBody class because their native header is hidden */
.supsystic-tables-wrap .dataTables_scrollBody tr.collapsibleRowMain > th:first-child:after {
	content: "";
}
/* Styles for tables with collapsible cells and response mode: Automatic Column Hiding  */
.supsystic-tables-wrap .supsystic-table.collapsed tr.collapsibleRowMain > th:first-child,
.supsystic-tables-wrap .supsystic-table.collapsed tr.collapsibleRowMain > td:first-child {
	padding-left: 50px !important;
}
/* Styles for tables with collapsible cells and response mode: Standart Responsive Mode */
.supsystic-tables-wrap .oneColumnWithLabels .collapsibleRowMain td:before {
	padding-left: 25px;
}

/* Mark for last edited cell */
.justEdited {
	position: relative;
}
.justEdited:after {
	position: absolute;
	padding-left: 3px;
	content: '✓';
}

/* jQuery UI datepicker */
.ui-datepicker.stbDatePicker {
	z-index: 105 !important;
}

.supsystic-tables-wrap .supsystic-table .editfile{
	cursor: pointer;
	position: relative;
}
.supsystic-tables-wrap .supsystic-table .editfile .delete-upload-file{
	position: absolute;
	top: 0;
	right: 0;
	color: #000000;
	font-size: 1.4rem;
	width: 30px;
	/*height: 40px;*/
	line-height: 30px;
	font-weight: bold;
	z-index: 99;
	background-color: rgba(255,255,255,0.8);
	border-radius: 3px;
	text-align: center;
	text-decoration: none;
	display: none;
}
.supsystic-tables-wrap .supsystic-table .editfile .delete-upload-file:hover,
.supsystic-tables-wrap .supsystic-table .editfile .delete-upload-file:focus{
	color: #000000;
	background-color: rgba(255,255,255,1);
}
