/*
 * Base structure
 */

/* Move down content because we have a fixed navbar that is 50px tall */
html, body {
	height: 100%;
}
body {
	padding-top: 50px;
}



/*
 * Loader
 */

.loading {
	overflow: hidden;
}
.loading .loader {
	display: block;
}
.loader {
	z-index: 10000;
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: #000;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: 0.9;
}
.loader img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -7.5px -30px 0 0;
}


/*
 * Signin
 */

body#login {
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #eee;
}

.form-signin {
	max-width: 330px;
	padding: 15px;
	margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
	margin-bottom: 10px;
}
.form-signin .checkbox {
	font-weight: normal;
}
.form-signin .form-control {
	position: relative;
	height: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
	font-size: 16px;
}
.form-signin .form-control:focus {
	z-index: 2;
}
.form-signin input[type="email"] {
	margin-bottom: -1px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

/*
 * Global add-ons
 */

.sub-header {
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}
.scrollListGroup {
	max-height: 300px;
	overflow-y: auto;
}
.hr-sm {
	margin-top: 5px;
	margin-bottom: 5px;
}
.panel hr {
	margin-left: -15px;
	margin-right: -15px;
}
.panel-body:not(.two-col) {
	padding:0px
}
.panel-body > .table {
	margin-bottom: 0
}
.panel-body > .table tr > th, .panel-body > .table tr > td {
	padding-left: 15px;
}
.panel-body .radio,.panel-body .checkbox {
	margin-top: 0px;
	margin-bottom: 0px;
}
.panel-body .list-group {
	margin-bottom: 0;
}
.margin-bottom-none {
	margin-bottom: 0;
}
.panel-body .radio label,.panel-body .checkbox label {
	display:block;
}
.addMenu .panel-body {
	max-height: 287px;
	overflow-y: auto;
}
.addMenuItem {
	cursor: pointer;
}
.addMenuItem:hover {
	background: #F5F5F5;
}
.removeMenuItem {
	padding-right: 10px;
	line-height: 29px;
	cursor: pointer;
}

.gallery .gallery-item {
	display: inline-block;
	zoom: 1;
	width: 12.5%;
	padding: 5px;
	position: relative;
}
@media only screen and (min-width: 320px) {
	.superbox-list {
		width: 50%;
	}
}
@media only screen and (min-width: 486px) {
	.superbox-list {
		width: 25%;
	}
}
@media only screen and (min-width: 768px) {
	.superbox-list {
		width: 16.66666667%;
	}
}
@media only screen and (min-width: 1025px) {
	.superbox-list {
		width: 12.5%;
	}
}

/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar-inverse .navbar-brand {
	color: white;
}
.navbar-fixed-top {
	border: 0;
}

.tab-content-bordered {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 10px;
}
.xdebug-var-dump {
	position: relative;
	z-index: 10000;
}

/*
 * Off Canvas
 * --------------------------------------------------
 */
@media screen and (max-width: 767px) {
	div.container-fluid.active {
		overflow: hidden;
	}
	.container-fluid, .main {
		height: 100%;
	}
	.main {
		background: #fff;
	}



	.row-offcanvas {
		height: 100%;
		position: relative;
		-webkit-transition: all 0.25s ease-out;
		-moz-transition: all 0.25s ease-out;
		transition: all 0.25s ease-out;
	}
	.row-offcanvas .sidebar-offcanvas {
		position: absolute;
		z-index: 1;
		left: -250px;
		top: 0;
		width: 250px;
		-webkit-transition: all 0.25s ease-out;
		-moz-transition: all 0.25s ease-out;
		transition: all 0.25s ease-out;
	}
	.row-offcanvas-left {
		-webkit-transform: translateX(0px);
		-moz-transform: translateX(0px);
		transform: translateX(0px);
	}
	.row-offcanvas-left.active {
		-webkit-transform: translateX(250px);
		-moz-transform: translateX(250px);
		transform: translateX(250px);
	}
	.row-offcanvas-left .sidebar-offcanvas {
	}
	.row-offcanvas-left.active .sidebar-offcanvas {
	}



	.navbar-nav {
		margin: 5px !important;
	}
	.navbar-nav > li {
		float: left;
	}
	.navbar-right {
		float: right !important;
	}
	.navbar-toggle {
		position: absolute;
		left: -23px;
		-webkit-transition: left .25s ease-out;
		-moz-transition: left .25s ease-out;
		transition: left .25s ease-out;
	}
	.navbar-toggle.active {
		position: absolute;
		left: -27px;
	}
	.navbar-inverse .navbar-toggle {
		border: none;
	}
	.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
		background: none;
	}
}

/* Hide for mobile, show later */
.sidebar {
	position: fixed;
	top: 51px;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: block;
	padding: 20px;
	overflow-x: hidden;
	overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
	background-color: #f5f5f5;
	border-right: 1px solid #eee;
}
@media (min-width: 768px) {
	.navbar-nav {
		margin: 0;
	}
	.navbar-header {
		float: none;
	}
	.sidebar {
		padding: 0 15px 15px;
	}
}

/* Sidebar navigation */
.nav-sidebar {
	margin-right: -21px; /* 20px padding + 1px border */
	margin-bottom: 20px;
	margin-left: -20px;
}
.nav-sidebar > li > a {
	padding-right: 20px;
	padding-left: 20px;
}
.nav-sidebar .active > a,
.nav-sidebar .active > a:hover,
.nav-sidebar .active > a:focus,
.nav-sidebar > * .active > a,
.nav-sidebar > * .active > a:hover,
.nav-sidebar > * .active > a:focus {
	color: #fff;
	background-color: #428bca;
}
.nav-sidebar li a > .caret {
	margin-top: 8px;
}
.nav-list > li > a {
	padding-left: 40px;
}
.nav-sidebar .uncollapsed:after {
	font-family: 'Glyphicons Halflings';
	content: "\e114";
	float: right;
}
.nav-sidebar .collapsed:after {
	font-family: 'Glyphicons Halflings';
	content: "\e080";
	float: right;
}
.nav-sidebar .glyphicon {
	margin-right: 8px;
}


/*
 * Main content
 */

.main {
	padding: 20px;
}
@media (min-width: 768px) {
	.main {
		padding-right: 40px;
		padding-left: 40px;
	}
}
.main .page-header {
	margin-top: 0;
}


/*
 * Component: Small Box
 * --------------------
 */
.small-box {
	border-radius: 2px;
	position: relative;
	display: block;
	margin-bottom: 20px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.small-box > .inner {
	padding: 10px;
}
.small-box > .small-box-footer {
	position: relative;
	text-align: center;
	padding: 3px 0;
	color: #fff;
	color: rgba(255, 255, 255, 0.8);
	display: block;
	z-index: 10;
	background: rgba(0, 0, 0, 0.1);
	text-decoration: none;
}
.small-box h3 {
	font-size: 38px;
	font-weight: bold;
	margin: 0 0 10px 0;
	white-space: nowrap;
	padding: 0;
}
.small-box p {
	font-size: 15px;
}
.small-box p > small {
	display: block;
	color: #f9f9f9;
	font-size: 13px;
	margin-top: 5px;
}
.small-box h3,
.small-box p {
	z-index: 5;
}
.small-box .icon {
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: absolute;
	top: -10px;
	right: 10px;
	z-index: 0;
	font-size: 85px;
	color: rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
	.small-box {
		text-align: center;
	}
	.small-box .icon {
		display: none;
	}
	.small-box p {
		font-size: 12px;
	}
}


/*
 * Placeholder dashboard ideas
 */

.placeholders {
	margin-bottom: 30px;
	text-align: center;
}
.placeholders h4 {
	margin-bottom: 0;
}
.placeholder {
	margin-bottom: 20px;
}
.placeholder img {
	display: inline-block;
	border-radius: 50%;
}

.btn-link.active.focus, .btn-link.active:focus, .btn-link.focus, .btn-link:active.focus, .btn-link:active:focus, .btn-link:focus {
	outline: none;
}

.font-weight-normal {
	font-weight: normal !important;
}

.m-0 {
	margin: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-1 {
	margin-bottom: .5rem !important;
}
.mt-1 {
	margin-top: .5rem !important;
}
.mr-1 {
	margin-right: .5rem !important;
}
.ml-1 {
	margin-left: .5rem !important;
}
.mr-3 {
	margin-right: 1.5rem !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.pb-0 {
	padding-bottom: 0.5rem !important;
}
.pt-0 {
	padding-top: 0 !important;
}
.pt-1 {
	padding-top: .5rem !important;
}
.pl-0 {
	padding-left: 0 !important;
}
.pr-0 {
	padding-right: 0 !important;
}
.pl-3 {
	padding-left: 1.5rem !important;
}
.pr-3 {
	padding-right: 1.5rem !important;
}
.ml-auto {
	margin-left: auto !important;
}
.mr-auto {
	margin-right: auto !important;
}
table {
	width: 100%;
	max-width: 100%;
}
table tr td {
	vertical-align: top;
}
.table-bordered {
	margin-bottom: 3.6rem;
	border: 2px solid #333!important;
}
.table-bordered tr th,
.table-bordered tr td {
	border: 2px solid #333!important;
}

.d-flex {
	display: -ms-flexbox!important;
	display: flex!important;
}
.justify-content-start {
	-ms-flex-pack: start!important;
	justify-content: flex-start!important;
}
.justify-content-end {
	-ms-flex-pack: end!important;
	justify-content: flex-end!important;
}
.justify-content-center {
	-ms-flex-pack: center!important;
	justify-content: center!important;
}
.justify-content-between {
	-ms-flex-pack: justify!important;
	justify-content: space-between!important;
}
.justify-content-around {
	-ms-flex-pack: distribute!important;
	justify-content: space-around!important;
}
.align-items-start {
	-ms-flex-align: start!important;
	align-items: flex-start!important;
}
.align-items-end {
	-ms-flex-align: end!important;
	align-items: flex-end!important;
}
.align-items-center {
	-ms-flex-align: center!important;
	align-items: center!important;
}
.align-items-baseline {
	-ms-flex-align: baseline!important;
	align-items: baseline!important;
}
.align-items-stretch {
	-ms-flex-align: stretch!important;
	align-items: stretch!important;
}
.flex-fill {
	-ms-flex: 1 1 auto!important;
	flex: 1 1 auto!important;
}
.flex-grow-1 {
	-ms-flex-positive: 1!important;
	flex-grow: 1!important;
}
.flex-shrink-1 {
	-ms-flex-negative: 1!important;
	flex-shrink: 1!important;
}
.w-100 {
	width: 100%!important;
}
.text-nowrap {
	white-space: nowrap!important;
}

.col-sm-4 .form-inline .form-control {
	width: 125px;
}

.clickable-row td:not(.exclude-clickable-row),
.clickable-modal td {
	cursor: pointer
}

.swal2-popup {
	font-size: 1em !important;
}

.btn-file .btn-file-label {
	position: absolute;
	width: 100%;
}
.tooltip-inner {
	max-width: none;
}

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

.color-input-group-addon {
    padding: 2px;
}

.table-bordered-custom>caption+thead>tr:first-child>td, .table-bordered-custom>caption+thead>tr:first-child>th, .table-bordered-custom>colgroup+thead>tr:first-child>td, .table-bordered-custom>colgroup+thead>tr:first-child>th, .table-bordered-custom>thead:first-child>tr:first-child>td, .table-bordered-custom>thead:first-child>tr:first-child>th,
.table-bordered-custom td, .table-bordered-custom th,
.table-bordered-custom>thead>tr>th {
	border: 2px solid #333;
}
.table-bordered-custom>tbody>tr>td, .table-bordered-custom>tbody>tr>th, .table-bordered-custom>tfoot>tr>td, .table-bordered-custom>tfoot>tr>th, .table-bordered-custom>thead>tr>td, .table-bordered-custom>thead>tr>th {
	vertical-align: middle;
}

.border-top-transparent {
	border-top-color: transparent !important;
}
.border-right-transparent {
	border-right-color: transparent !important;
}
.border-bottom-transparent {
	border-bottom-color: transparent !important;
}
.border-left-transparent {
	border-left-color: transparent !important;
}
.modal-lg {
	width: 90%;
}
div.dt-button-collection {
	z-index: 2002;
}
.border-left {
	border-left: 1px solid #ddd;
}
.border-right {
	border-right: 1px solid #ddd;
}
.table > tbody > tr.table-border-bottom-2 > td {
	border-bottom: 2px solid black;
	border-bottom-width: 2px;
}

.pb-5 {
	padding-bottom: 5px;
}
.mb-5 {
	margin-bottom: 5px;
}

del {
    text-decoration: none;
    position: relative;
}
del:after {
    content: ' ';
    font-size: inherit;
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    top: 40%;
    bottom: 40%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.dtsp-nameColumn {
	cursor: pointer;
}
.dtsp-name::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
	display: inline-block;
	content: '\f0c8';
	margin-right: 5px;
}
.selected .dtsp-name::before {
	content: '\f14a';
}
.data-table-group-pane .dtrg-group {
	cursor: pointer;
}

.ltb-border-red {
	border-left: 1px solid #D9534F;
	border-top: 1px solid #D9534F;
	border-bottom: 1px solid #D9534F;
}
.rtb-border-red {
	border-right: 1px solid #D9534F;
	border-top: 1px solid #D9534F;
	border-bottom: 1px solid #D9534F;
}

.ltb-border2-red {
	border-left: 2px solid #D9534F;
	border-top: 2px solid #D9534F;
	border-bottom: 2px solid #D9534F;
}
.rtb-border2-red {
	border-right: 2px solid #D9534F;
	border-top: 2px solid #D9534F;
	border-bottom: 2px solid #D9534F;
}

/*
.hiddenValue {
	border-style: dashed;
}
*/

.hideTbody {
	cursor: pointer;
}
