html, body {
	height: 100%;
}

body {
	background-color: #fbfbfc;
	padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
body.loading {
	pointer-events: none;
	cursor: wait;
}
/*body.progress:before {
	content: '';
	z-index: 999999;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000000;
	opacity: .5;
}*/
body.no-transition,
body.no-transition * {
	transition: none;
}




a,
.btn,
.form-control {
	transition: all 200ms;
}




@media (max-width:767px) {
	.responsive-collapse {
		display: none;
	}
}




#header { z-index: 1013; }
#wrapper { z-index: 1012; }
#sidebar { z-index: 1011; }
#content { z-index: 1010; }




#header {
	position: fixed;
	top: 0;
	width: 100%;
	color: #ffffff;
	background: #333333;
	-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
			box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

#wrapper {
	width: 100%;
	height: 100%;
}

#header + #wrapper {
	padding-top: 60px;
}

#header + #wrapper #sidebar {
	top: 0;
	padding-top: 60px;
}

#sidebar {
	position: absolute;
	width: 100%;
	color: rgba(163,175,183,.75);
	background-color: #1a2429;
}

#content {
	height: 100%;
	padding: 30px;
}
#content .content-full {
    position: relative;
    overflow: hidden;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
	margin-top: -30px; 
	margin-left: -30px;
}

@media (min-width:1200px) {
	#sidebar:not(.sidebar-toggle) {
		/*overflow: scroll;*/
		width: 250px;
		height: 100%;
	}

	#sidebar + #content {
		margin-left: 250px;
	}

	#sidebar.sidebar-toggle {
		width: 75px;
		height: 100%;
	}

	#sidebar.sidebar-toggle + #content {
		margin-left: 75px;
	}
}

@media (max-width:1199px) and (min-width:768px) {
	#sidebar {
		width: 75px;
		height: 100%;
	}

	#sidebar + #content {
		margin-left: 75px;
	}
}

@media (min-width:768px) {
	#sidebar {
		height: 100%;
	}
}

@media (max-width:767px) {
	#content {
		padding: 15px;
	}
	#content .content-full {
	    width: calc(100% + 30px);
	    height: calc(100% + 30px);
		margin-top: -15px; 
		margin-left: -15px;
	}
}




#sidebar .sidebar-wrap {
	width: 100%;
}
#sidebar .sidebar-wrap .footnote {
	width: 100%;
	padding-bottom: 25px;
	background-color: #1a2429;
}
#sidebar .sidebar-wrap .footnote .footnote-content {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 25px;
	filter: grayscale();
	opacity: 0.25;
}
#sidebar .sidebar-wrap .footnote > * + * {
	margin-top: 15px;
}
#sidebar .sidebar-wrap .footnote .footnote-content span,
#sidebar .sidebar-wrap .footnote .footnote-content img {
	display: inline;
}
#sidebar .sidebar-wrap .footnote .footnote-content span {
	font-size: 12px;
	font-weight: bold;
}
#sidebar .sidebar-wrap .footnote .footnote-content img {
	width: auto;
	height: 100%;
	margin-right: 10px;
}

@media (min-width:1200px) {
	#sidebar.sidebar-toggle .sidebar-wrap .footnote .footnote-content img {
		display: none !important;
	}
}

@media (min-width:768px) {
	#sidebar .sidebar-wrap {
		display: flex;
		flex-flow: row wrap;
		align-content: space-between;
		height: 100%;
	}
}




#sidebar .sidenav * {
	position: relative;
}
#sidebar .sidenav,
#sidebar .sidenav ul {
	width: 100%;
	margin: 0;
	padding: 15px;
	list-style: none;
	background-color: #1a2429;
}
#sidebar .sidenav .title {
	display: block;
	padding: 10px 15px;
}
#sidebar .sidenav a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	text-decoration: none;
}
#sidebar .sidenav a:focus,
#sidebar .sidenav a:active,
#sidebar .sidenav a {
	color: rgba(163,175,183,.75);
	background-color: transparent;
}
#sidebar .sidenav a:hover {
	color: #ffffff;
	background-color: rgba(163,175,183,.05);
}
#sidebar .sidenav li.current-item > a,
#sidebar .sidenav li.current-parent > a {
	color: #ffffff;
}
#sidebar .sidenav .fa-fw {
	width: 18px;
}
#sidebar .sidenav .title span + [class*="fa-"],
#sidebar .sidenav .title span + .icon,
#sidebar .sidenav .title [class*="fa-"] + span,
#sidebar .sidenav .title .icon + span,
#sidebar .sidenav a span + [class*="fa-"],
#sidebar .sidenav a span + .icon,
#sidebar .sidenav a [class*="fa-"] + span,
#sidebar .sidenav a .icon + span {
	margin-left: 10px;
	margin-right: auto;
}
#sidebar .sidenav li:not(:last-child):after {
	content: '';
	pointer-events: none;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,0.05);
}
#sidebar .sidenav li > .sidenav > li:after {
	content: none;
}
#sidebar .sidenav li > .sidenav {
	padding: 0;
}
#sidebar .sidenav li > .sidenav > li > a {
	padding-left: calc(15px + 18px + 10px);
	font-size: 13px;
}

#sidebar .sidenav hr {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: calc(15px + 18px + 10px);
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media (min-width:1200px) {

	#sidebar.sidebar-toggle .sidenav.sidenav-root {
		padding-left: 0;
		padding-right: 0;
	}
	#sidebar.sidebar-toggle .sidenav.sidenav-root > li > a {
		justify-content: center;
		padding-left: 0;
		padding-right: 0;
	}
	#sidebar.sidebar-toggle .sidenav.sidenav-root > li > a > span {
		display: none;
	}
	#sidebar.sidebar-toggle .sidenav.sidenav-root > li > a > .fa-fw {
		width: initial;
		font-size: 25px;
	}
	#sidebar.sidebar-toggle .sidenav.sidenav-root > li > .sidenav {
		pointer-events: none;
		display: block !important;
		position: absolute;
		top: 0;
		left: 100%;
		min-width: 200px;
		padding-top: 15px;
		padding-bottom: 15px;
		background-color: #1a2429;
		opacity: 0;
		transition: all 200ms;
	}
	#sidebar.sidebar-toggle .sidenav.sidenav-root > li:hover > .sidenav {
		pointer-events: all;
		opacity: 1;
	}
	#sidebar.sidebar-toggle .sidenav.sidenav-root li > .sidenav > li > a {
		padding-left: 15px;
		font-size: 13px;
	}

}

@media (max-width:1199px) and (min-width:768px) {

	#sidebar .sidenav.sidenav-root {
		padding-left: 0;
		padding-right: 0;
	}
	#sidebar .sidenav.sidenav-root > li > a {
		justify-content: center;
		padding-left: 0;
		padding-right: 0;
	}
	#sidebar .sidenav.sidenav-root > li > a > span {
		display: none;
	}
	#sidebar .sidenav.sidenav-root > li > a > .fa-fw {
		width: initial;
		font-size: 25px;
	}
	#sidebar .sidenav.sidenav-root > li > .sidenav {
		pointer-events: none;
		display: block !important;
		position: absolute;
		top: 0;
		left: 100%;
		min-width: 200px;
		padding-top: 15px;
		padding-bottom: 15px;
		background-color: #1a2429;
		opacity: 0;
		transition: all 200ms;
	}
	#sidebar .sidenav.sidenav-root > li:hover > .sidenav {
		pointer-events: all;
		opacity: 1;
	}
	#sidebar .sidenav.sidenav-root li > .sidenav > li > a {
		padding-left: 15px;
		font-size: 13px;
	}

}




.mainnav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	padding-left: 15px;
	padding-right: 15px;
}
.mainnav a {
	display: block;
	color: #ffffff;
	line-height: 60px;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
}
.mainnav a.mainnav-link[aria-expanded="true"],
.mainnav a.mainnav-link:hover {
	background-color: rgba(255, 255, 255, 0.15);
}
.mainnav img {
	height: 30px;
	width: auto;
}
.mainnav .mainnav-block-content,
.mainnav .mainnav-block {
	display: flex;
	align-items: center;
	height: 100%;
}
.mainnav .mainnav-item  {
	line-height: 60px;
	padding-left: 0;
	padding-right: 0;
}
.mainnav .mainnav-item + .mainnav-item,
.mainnav .mainnav-item + .mainnav-link,
.mainnav .mainnav-link + .mainnav-item {
	margin-left: 15px;
}
.mainnav .mainnav-icon {
	font-size: 24px;
}
.mainnav .dropdown-menu {
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}








.panel.panel-with-btns {
	margin-bottom: 100px;
}

form .panel + .panel,
.form-group + .form-group,
.form-group + .tab-wrapper,
.tab-wrapper + .form-group,
.form-horizontal .form-group:not(:first-child) {
	margin-top: 15px;
}
.form-horizontal .tab-content {
	margin-top: 15px;
	/*padding-top: 15px;
	padding-bottom: 15px;*/
}

@media only screen and (max-width: 768px) {
	form .row > [class*="col-"] + [class*="col-"] {
		margin-top: 15px;
	}
}


.row + .row, {
	margin-top: 15px;
}
.row.row-compact {
	margin-left: -5px;
	margin-right: -5px;
}
.row.row-compact .col-xs-1,
.row.row-compact .col-sm-1,
.row.row-compact .col-md-1,
.row.row-compact .col-lg-1,
.row.row-compact .col-xs-2,
.row.row-compact .col-sm-2,
.row.row-compact .col-md-2,
.row.row-compact .col-lg-2,
.row.row-compact .col-xs-3,
.row.row-compact .col-sm-3,
.row.row-compact .col-md-3,
.row.row-compact .col-lg-3,
.row.row-compact .col-xs-4,
.row.row-compact .col-sm-4,
.row.row-compact .col-md-4,
.row.row-compact .col-lg-4,
.row.row-compact .col-xs-5,
.row.row-compact .col-sm-5,
.row.row-compact .col-md-5,
.row.row-compact .col-lg-5,
.row.row-compact .col-xs-6,
.row.row-compact .col-sm-6,
.row.row-compact .col-md-6,
.row.row-compact .col-lg-6,
.row.row-compact .col-xs-7,
.row.row-compact .col-sm-7,
.row.row-compact .col-md-7,
.row.row-compact .col-lg-7,
.row.row-compact .col-xs-8,
.row.row-compact .col-sm-8,
.row.row-compact .col-md-8,
.row.row-compact .col-lg-8,
.row.row-compact .col-xs-9,
.row.row-compact .col-sm-9,
.row.row-compact .col-md-9,
.row.row-compact .col-lg-9,
.row.row-compact .col-xs-10,
.row.row-compact .col-sm-10,
.row.row-compact .col-md-10,
.row.row-compact .col-lg-10,
.row.row-compact .col-xs-11,
.row.row-compact .col-sm-11,
.row.row-compact .col-md-11,
.row.row-compact .col-lg-11,
.row.row-compact .col-xs-12,
.row.row-compact .col-sm-12,
.row.row-compact .col-md-12,
.row.row-compact .col-lg-12 {
	padding-left: 5px;
	padding-right: 5px;
}


form .alert,
form .table,
form .panel,
.form-group,
.help-block {
	margin-bottom: 0;
}

.panel-body + .panel-body {
	border-top: solid 1px rgba(0,0,0,.05);
}








.content-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 30px;
	margin-bottom: 30px;
	padding-bottom: 0;
	border-bottom: none;
}
.content-header h1 {
	margin: 0;
	font-size: 24px;
}
@media (max-width:767px) {
	.content-header {
		height: 30px;
		margin-bottom: 15px;
	}
	.content-header h1 {
		font-size: 20px;
	}
}






.float-btns {
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 35px;
	right: 35px;
}
.float-btns .btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5em;
	height: 2.5em;
	font-size: 2.0em;
	border-radius: 100%;
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,.25);
}
.float-btns .btn:not(.btn-lg) {
	font-size: 1.5em;
}
.float-btns .btn + .btn {
	margin-left: 10px;
}
.float-btns .btn.btn-success { box-shadow: 0px 5px 15px 0px #28a74599; }
.float-btns .btn.btn-info { box-shadow: 0px 5px 15px 0px #17a2b899; }
.float-btns .btn.btn-warning { box-shadow: 0px 5px 15px 0px #ffc10799; }
.float-btns .btn.btn-danger { box-shadow: 0px 5px 15px 0px #dc354599; }
.float-btns .btn .badge {
	position: absolute;
	top: -5px;
	right: -5px;
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,.45);
}
@media (max-width:767px) {
	.float-btns {
		bottom: 15px;
		right: 10px;
	}
}

.float-btns + .dataTables_wrapper {
	margin-bottom: 125px;
}




.btn-circle {
	width: 30px;
	height: 30px;
	padding: 6px 0;
	border-radius: 15px;
	text-align: center;
	font-size: 12px;
	line-height: 1.428571429;
}
.btn-circle.btn-lg {
	width: 50px;
	height: 50px;
	padding: 10px 16px;
	border-radius: 25px;
	font-size: 18px;
	line-height: 1.33;
}
.btn-circle.btn-xl {
	width: 70px;
	height: 70px;
	padding: 10px 16px;
	border-radius: 35px;
	font-size: 24px;
	line-height: 1.33;
}




.full {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 100%;
}
.full .full-box {
	width: 100%;
	max-width: 300px;
	margin: 15px;
}
.full .full-box .alert + .full-box-header {
	margin-top: 40px;
}
.full .full-box .full-box-header + .full-box-body {
	margin-top: 40px;
}
.full .full-box .full-box-header > * + * {
	margin-top: 20px;
	text-align: center;
}

.fullbox-box-footer {
	margin-top: 20px;
	text-align: center;
}

@media only screen and (max-width: 767px) { 
	.full .full-box {
		max-width: 100%;
	}
}




.table:not(.table-bordered)>tbody>tr>td:first-child,
.table:not(.table-bordered)>tbody>tr>th:first-child,
.table:not(.table-bordered)>tfoot>tr>td:first-child,
.table:not(.table-bordered)>tfoot>tr>th:first-child,
.table:not(.table-bordered)>thead>tr>td:first-child,
.table:not(.table-bordered)>thead>tr>th:first-child {
	padding-left: 0;
}
.table:not(.table-bordered)>tbody>tr>td:last-child,
.table:not(.table-bordered)>tbody>tr>th:last-child,
.table:not(.table-bordered)>tfoot>tr>td:last-child,
.table:not(.table-bordered)>tfoot>tr>th:last-child,
.table:not(.table-bordered)>thead>tr>td:last-child,
.table:not(.table-bordered)>thead>tr>th:last-child {
	padding-right: 0;
}

@media (max-width:767px) {
	.table-responsive-stack,
	.table-responsive-stack thead,
	.table-responsive-stack tbody,
	.table-responsive-stack tfoot,
	.table-responsive-stack th,
	.table-responsive-stack td,
	.table-responsive-stack tr { 
		display: block;
	}

	.table-responsive-stack thead,
	.table-responsive-stack tfoot {
		display: none;
	}

	.table-responsive-stack th,
	.table-responsive-stack td { 
		width: 100% !important;
	}

	.table-responsive-stack tr:not(:last-child) {
		border-bottom: 1px solid #ddd !important;
	}
	.table-responsive-stack td {
		border: none  !important;
		display: block  !important;
	}
	.table-responsive-stack td:not(:last-child) {
		padding-bottom: 0 !important;
	}
	.table-responsive-stack td:before {
		content: attr(data-label);
		display: block;
		margin-bottom: 4px;
		font-weight: bold;
	}
}




.text-white,
.text-white:hover,
.text-white:active,
.text-white:focus { color: #ffffff; }

.bg-white { background-color: #ffffff; }

.border-white { border-color: #ffffff; }
.border-success { border-color: #c3e6cb; }
.border-info { border-color: #bee5eb; }
.border-warning { border-color: #ffeeba; }
.border-danger { border-color: #f5c6cb; }




.truncate {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}




.bg-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}




.show-grid [class^=col-] {
	padding-top: 10px;
	padding-bottom: 10px;
	border: 1px solid #ddd;
	background-color: #eee!important;
}
.show-grid {
	margin: 15px 0;
}








/*
************************************************************
Widget
************************************************************
*/

.widget {
	display: block;
	margin-bottom: 20px;
	padding: 15px;
	text-decoration: none !important;
	border-radius: 4px;
}

.widget .left { width: 30%; }
.widget .right { width: 70%; }

.widget .number {
	font-size: 24px;
	line-height: 1;
}
.widget .title {
	font-size: 14px;
}
.widget .number + .title {
	margin-top: 5px;
}
.widget [class*="fa-"] {
	font-size: 4em;
}

@media only screen and (max-width: 768px) {
	.widget .number {
		font-size: 18px;
	}
	.widget .title {
		font-size: 12px;
	}
	.widget [class*="fa-"] {
		font-size: 3em;
	}
}

.widget-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.widget-default:focus,
.widget-default.focus,
.widget-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.widget-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.widget-primary:focus,
.widget-primary.focus,
.widget-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0069d9;
}
.widget-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.widget-secondary:focus,
.widget-secondary.focus,
.widget-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #5a6268;
}
.widget-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.widget-success:focus,
.widget-success.focus,
.widget-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #218838;
}
.widget-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.widget-info:focus,
.widget-info.focus,
.widget-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #138496;
}
.widget-warning {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}
.widget-warning:focus,
.widget-warning.focus,
.widget-warning:hover {
  color: #fff;
  background-color: #e0a800;
  border-color: #e0a800;
}
.widget-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.widget-danger:focus,
.widget-danger.focus,
.widget-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #c82333;
}
.widget-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.widget-dark:focus,
.widget-dark.focus,
.widget-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #23272b;
}








/*
************************************************************
Timeline
************************************************************
*/

.timeline {
	position: relative;
	padding: 20px 0 20px;
	list-style: none;
}
.timeline:before {
	content: " ";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	margin-left: -1.5px;
	background-color: #eeeeee;
}
.timeline > li {
	position: relative;
	margin-bottom: 20px;
}
.timeline > li:before,
.timeline > li:after {
	content: " ";
	display: table;
}
.timeline > li:after {
	clear: both;
}
.timeline > li:before,
.timeline > li:after {
	content: " ";
	display: table;
}
.timeline > li:after {
	clear: both;
}
.timeline > li > .timeline-panel {
	float: left;
	position: relative;
	width: 46%;
	padding: 20px;
	border: 1px solid #d4d4d4;
	border-radius: 2px;
	-webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.175);
	box-shadow: 0 1px 6px rgba(0,0,0,0.175);
}
.timeline > li > .timeline-panel:before {
	content: " ";
	display: inline-block;
	position: absolute;
	top: 26px;
	right: -15px;
	border-top: 15px solid transparent;
	border-right: 0 solid #ccc;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #ccc;
}
.timeline > li > .timeline-panel:after {
	content: " ";
	display: inline-block;
	position: absolute;
	top: 27px;
	right: -14px;
	border-top: 14px solid transparent;
	border-right: 0 solid #ffffff;
	border-bottom: 14px solid transparent;
	border-left: 14px solid #ffffff;
}
.timeline > li > .timeline-badge {
	z-index: 100;
	position: absolute;
	top: 16px;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	border-radius: 50% 50% 50% 50%;
	text-align: center;
	font-size: 1.4em;
	line-height: 50px;
	color: #ffffff;
	background-color: #999999;
}
.timeline > li.timeline-inverted > .timeline-panel {
	float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
	right: auto;
	left: -15px;
	border-right-width: 15px;
	border-left-width: 0;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
	right: auto;
	left: -14px;
	border-right-width: 14px;
	border-left-width: 0;
}
.timeline-badge.primary {
	background-color: #2e6da4 !important;
}
.timeline-badge.success {
	background-color: #3f903f !important;
}
.timeline-badge.warning {
	background-color: #f0ad4e !important;
}
.timeline-badge.danger {
	background-color: #d9534f !important;
}
.timeline-badge.info {
	background-color: #5bc0de !important;
}
.timeline-title {
	margin-top: 0;
	color: inherit;
}
.timeline-body > p,
.timeline-body > ul {
	margin-bottom: 0;
}
.timeline-body > p + p {
	margin-top: 5px;
}
@media(max-width:767px) {
	ul.timeline:before {
		left: 40px;
	}
	ul.timeline > li > .timeline-panel {
		width: calc(100% - 90px);
		width: -moz-calc(100% - 90px);
		width: -webkit-calc(100% - 90px);
	}
	ul.timeline > li > .timeline-badge {
		top: 16px;
		left: 15px;
		margin-left: 0;
	}
	ul.timeline > li > .timeline-panel {
		float: right;
	}
	ul.timeline > li > .timeline-panel:before {
		right: auto;
		left: -15px;
		border-right-width: 15px;
		border-left-width: 0;
	}
	ul.timeline > li > .timeline-panel:after {
		right: auto;
		left: -14px;
		border-right-width: 14px;
		border-left-width: 0;
	}
}








/*
************************************************************
Treeview
************************************************************
*/

.treeview.list-group > .list-group {
	margin-top: 1px;
	margin-bottom: 0;
}
.treeview.list-group > .list-group-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: normal;
}
.treeview.list-group > .list-group-item span + span {
	margin-left: 10px;
}
.treeview.list-group > .list-group-item:not(.disabled) {
	cursor: pointer;
}
.treeview.list-group > .list-group-item:not(.disabled) > * {
	pointer-events: none;
}
.treeview.list-group > .list-group-item:not(.disabled):hover {
	background-color: #f5f5f5;
}
.treeview.list-group > .list-group > .list-group-item { padding-left: 40px; }
.treeview.list-group > .list-group > .list-group > .list-group-item { padding-left: 80px; }
.treeview.list-group > .list-group > .list-group > .list-group > .list-group-item { padding-left: 120px; }
.treeview.list-group > .list-group > .list-group > .list-group > .list-group > .list-group-item { padding-left: 160px; }
.treeview.list-group > .list-group > .list-group > .list-group > .list-group > .list-group > .list-group-item { padding-left: 200px; }








/*
************************************************************
Align
************************************************************
*/

[class*="align-h-"],
[class*="align-v-"] {
	display: flex;
	flex-flow: wrap;
}

[class*="align-column"]:not(.align-column_sm-true) {
	flex-direction: column;
}

.align-h-left_sm-false,
.align-h-left {
	justify-content: flex-start;
	align-items: flex-start;
}

.align-h-right_sm-false,
.align-h-right {
	justify-content: flex-end;
	align-items: flex-end;
}

.align-h-center_sm-false,
.align-h-center {
	justify-content: center;
	align-items: center;
}

.align-h-justify_sm-false,
.align-h-justify {
	justify-content: space-between;
}

.align-v-top_sm-false:not(.align-column_sm-true):not(.align-column),
.align-v-top:not(.align-column_sm-false):not(.align-column) {
	align-content: flex-start;
	align-items: flex-start;
}

.align-v-bottom_sm-false:not(.align-column_sm-true):not(.align-column),
.align-v-bottom:not(.align-column_sm-false):not(.align-column) {
	align-content: flex-end;
	align-items: flex-end;
}

.align-v-center_sm-false:not(.align-column_sm-true):not(.align-column),
.align-v-center:not(.align-column_sm-false):not(.align-column) {
	align-content: center;
	align-items: center;
}

.align-v-justify_sm-false:not(.align-column_sm-true):not(.align-column),
.align-v-justify:not(.align-column_sm-false):not(.align-column) {
	/*align-content: space-between;*/
	justify-content: space-between;
}

.align-v-top_sm-false.align-column_sm-false,
.align-v-top_sm-false.align-column,
.align-v-top.align-column {
	justify-content: flex-start;
}

.align-v-bottom_sm-false.align-column_sm-false,
.align-v-bottom_sm-false.align-column,
.align-v-bottom.align-column {
	justify-content: flex-end;
}

.align-v-center_sm-false.align-column_sm-false,
.align-v-center_sm-false.align-column,
.align-v-center.align-column {
	justify-content: center;
}

.align-v-justify_sm-false.align-column_sm-false,
.align-v-justify_sm-false.align-column,
.align-v-justify.align-column {
	justify-content: space-between;
}


@media only screen and (max-width: 768px) {
	.align-column_sm-false {
		flex-direction: inherit!important;
	}
	.align-column_sm-true {
		flex-direction: column;
	}

	.align-h-left_sm-false,
	.align-h-right_sm-false,
	.align-h-center_sm-false,
	.align-h-justify_sm-false {
		justify-content: inherit;
	}
	.align-h-left_sm-true {
		justify-content: flex-start;
		align-items: flex-start;
	}
	.align-h-right_sm-true {
		justify-content: flex-end;
		align-items: flex-end;
	}
	.align-h-center_sm-true {
		justify-content: center;
		align-items: center;
	}
	.align-h-justify_sm-true {
		justify-content: space-between;
	}

	.align-v-left_sm-false,
	.align-v-right_sm-false,
	.align-v-center_sm-false,
	.align-v-justify_sm-false {
		justify-content: inherit;
		align-content: inherit;
		align-items: inherit;
	}
	.align-v-top_sm-true:not([class*="align-column"]) {
		align-content: flex-start;
		align-items: flex-start;
	}
	.align-v-bottom_sm-true:not([class*="align-column"]) {
		align-content: flex-end;
		align-items: flex-end;
	}
	.align-v-center_sm-true:not([class*="align-column"]) {
		align-content: center;
		align-items: center;
	}
	.align-v-justify_sm-true:not([class*="align-column"]) {
		align-content: space-between;
	}
	.align-v-top_sm-true.align-column_sm-true,
	.align-v-top_sm-true.align-column {
		justify-content: flex-start;
	}
	.align-v-bottom_sm-true.align-column_sm-true,
	.align-v-bottom_sm-true.align-column {
		justify-content: flex-end;
	}
	.align-v-center_sm-true.align-column_sm-true,
	.align-v-center_sm-true.align-column {
		justify-content: center;
	}
	.align-v-justify_sm-true.align-column_sm-true,
	.align-v-justify_sm-true.align-column {
		justify-content: space-between;
	}
}






/* Tooltip */

@media only screen and (min-width: 769px) {

	[data-tooltip] > [data-tooltip-dom] {
		pointer-events: none;
		z-index: 990;
		position: absolute;

		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;

		height: -webkit-max-content;
		height: -moz-max-content;
		height: max-content;

		padding: 0.25em 0.5em;

		color: #ffffff;
		font-size: 12px;
		font-weight: normal;
		text-align: center;
		line-height: 1.25em;

		white-space: nowrap;

		border-radius: 0.25em;
		background-color: rgba(25,25,25,.95);
		border-color: rgba(25,25,25,.95);

		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	[data-tooltip][data-tooltip-placement="bottom"] > [data-tooltip-dom],
	[data-tooltip][data-tooltip-placement="top"] > [data-tooltip-dom],
	[data-tooltip]:not([data-tooltip-placement]) > [data-tooltip-dom] {
		bottom: 100%;
		left: 50%;
		margin-bottom: 7.5px;

		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	[data-tooltip][data-tooltip-placement="bottom"] > [data-tooltip-dom] {
		top: 100%;
		bottom: initial;
		margin-top: 7.5px;
		margin-bottom: initial;
	}
	[data-tooltip][data-tooltip-placement="left"] > [data-tooltip-dom],
	[data-tooltip][data-tooltip-placement="right"] > [data-tooltip-dom] {
		top: 50%;
		right: 100%;
		margin-right: 7.5px;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	[data-tooltip][data-tooltip-placement="right"] > [data-tooltip-dom] {
		left: 100%;
		right: initial;
		margin-left: 7.5px;
		margin-right: initial;
	}


	[data-tooltip][data-tooltip-placement="left"] > [data-tooltip-dom]:before,
	[data-tooltip][data-tooltip-placement="right"] > [data-tooltip-dom]:before,
	[data-tooltip][data-tooltip-placement="bottom"] > [data-tooltip-dom]:before,
	[data-tooltip][data-tooltip-placement="top"] > [data-tooltip-dom]:before,
	[data-tooltip]:not([data-tooltip-placement]) > [data-tooltip-dom]:before {
		content: '';
		position: absolute;
		width: 0; 
		height: 0; 
	}
	[data-tooltip][data-tooltip-placement="bottom"] > [data-tooltip-dom]:before,
	[data-tooltip][data-tooltip-placement="top"] > [data-tooltip-dom]:before,
	[data-tooltip]:not([data-tooltip-placement]) > [data-tooltip-dom]:before {
		top: 100%;
		left: 50%;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 5px solid;
		border-top-color: inherit;

		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	[data-tooltip][data-tooltip-placement="bottom"] > [data-tooltip-dom]:before {
		top: initial;
		bottom: 100%;
		border-top: initial;
		border-bottom: 5px solid;
		border-bottom-color: inherit;
	}
	[data-tooltip][data-tooltip-placement="left"] > [data-tooltip-dom]:before,
	[data-tooltip][data-tooltip-placement="right"] > [data-tooltip-dom]:before {
		left: 100%;
		top: 50%;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-left: 5px solid;
		border-left-color: inherit;

		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	[data-tooltip][data-tooltip-placement="right"] > [data-tooltip-dom]:before {
		left: initial;
		right: 100%;
		border-left: initial;
		border-right: 5px solid;
		border-right-color: inherit;
	}

}

.img-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	
	background: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
	
	color: #FFF;
	font-size: 10px;
	font-weight: bold;
	font-family: 'Varela Round', sans-serif;
  }

  .onerilen_maliyet th {
	padding:10px;
	padding-top: 20px;

	border-bottom: 1px solid black;
  }

  .onerilen_maliyet td {
	padding: 10px;
	border-bottom: 1px solid black;
  }