:root {
	--sidebar-width: 60px;
	--topheader-height: 48px;
	--subheader-height: 54px;
	--footer-height: 44px;
}
.jmcontainer {
	max-width: 480px!important;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-items: stretch;
}


.sidebar_menu {
	width: var(--sidebar-width);
	overflow: hidden;
	height: calc(100vh - var(--topheader-height));
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	/*position: fixed;
	height: 100%;*/
}
/*
.sidebar_menu::-webkit-scrollbar {
	width: 6px;
	background-color: var(--dark);
}

.sidebar_menu::-webkit-scrollbar-thumb {
	background-color: var(--gray);
}*/

.sidebar-links .list-group-item {
	padding: .25rem 1.25rem;
	margin-bottom: -1px;
	background-color: transparent;
	border: 0;
}
.sidebar-links .list-group-item-dark {
	color: white;
}


.main_div {
	display: flex;
	flex-direction: column; /* row;*/
	flex-wrap: nowrap;
	justify-content: stretch;
	height: 100vh;
	flex: 1;
	/*margin-left: var(--sidebar-width);
	min-width: calc(1200px - var(--sidebar-width));*/
}
.contentDiv {
	display: flex;
	flex-direction: row; /* row;*/
	height: calc(100vh - var(--topheader-height));

}
.innerContentDiv {
	display: flex;
	flex-direction: column; /* row;*/
	overflow-y:scroll;
}

.innerContentDiv::-webkit-scrollbar {
	width: 4px;
	background-color: var(--gray);
}

.innerContentDiv::-webkit-scrollbar-thumb {
	background-color: var(--light);
}
.top_header {
	display:flex;
	justify-content: flex-end;
	align-items: center;
	width:100%;
	/*position: fixed;
	margin-left: var(--sidebar-width);
	left:0;
	top:0;*/
	height:var(--topheader-height);
	z-index: 97;
	background-color: white;
	/*padding-right:var(--sidebar-width);*/
}

.top_header img {
	max-width:32px;
}
.top-header-icon a {
	margin:0 6px;
}

.top-icons {
	display:flex;
	justify-content: center;
	align-items: center;
	background-color: #f2f2f2;
}
.top-icons-divided {
	justify-content: space-between;
}
.top-icons img {
	max-width:32px;
	margin: 0.375rem 0;
}

.sub_header {
	display:flex;
	justify-content: flex-start;
	align-items: center;
	width:100%;
	/*position: fixed;
	margin-left: var(--sidebar-width);
	left:0;
	top:var(--topheader-height);*/
	height:var(--topheader-height);
	z-index: 96;
	background-color: #f0f0f0;
	box-shadow: 0 0 6px rgba(0,0,0,0.3);
	padding:15px 0;
}
.content {
	/*margin-top:calc(var(--topheader-height) + var(--subheader-height));
	margin-bottom:var(--footer-height);*/
	display: flex;
	flex-direction: column;
	overflow-y: scroll;
	width: 100%;
	z-index: 95;
	flex:1;
	background-color: white;
}
.content::-webkit-scrollbar {
	opacity: 0;
	width: 8px;
	background-color: lightgray;
}
.content:hover::-webkit-scrollbar {
	opacity: 1;
}

.content::-webkit-scrollbar-thumb {
	background-color: var(--dark);
}
.content-inner {
	padding:20px;
}

.footer {
	display: flex;
	flex: none;
	width:100%;
	/*position: fixed;*/
	justify-content: space-between;
	/*padding: 10px calc(25px + var(--sidebar-width)) 10px 25px;*/
	padding: 10px 25px;
	background: #f0f0f0;
	z-index: 95;
	bottom:0;
	box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
}

.card {
	-webkit-box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.2);
	box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.2);
}
.card-header-withmenu {
	display: flex; justify-content: space-between; align-items: center;
}
.card-header-withmenu ul {
	border:0; margin-top:-0.75rem; margin-bottom:-0.75rem;
}
.menuswitch {
	position: absolute;
	left: 10px;
	display:none;
	cursor: pointer;
}
div.homeicon,div.invicon {
	text-align: center;
	margin: 0 15px 20px 0;
	line-height: 1.1;
	padding: 2px;
	display: block;
}
div.homeicon > a {
	display: block;
}

div.homeicon > a > img {
	margin-bottom: 5px;
}

div.backicon {
	width: 86px;
	height: 86px;
	margin-bottom: 5px;
	border-radius: 6px;
	border: 1px solid rgba(82, 63, 105, 0.2);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: none;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

div.backicon > i {
	width: 60px;
	height: 60px;
	position: absolute;
	left: calc(50% - 30px);
	top: calc(50% - 30px);
}

div.multiicon {
	text-align: center;
	margin: 0 15px 20px 0;
	line-height: 1.1;
	padding: 2px;
	display: block;
	position: relative;
}

div.multiicon > a > img.image {
	margin-bottom: 5px;
	border-radius: 6px;
	border: 1px solid rgba(82, 63, 105, 0.2);
}
img.multicheck {
	position:absolute;
	top:0;
	right:0;
}
.multihidden {
	display:none;
}
b, strong {
	font-weight: 600;
}

.kt-portlet {
}

.upload-btn-wrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
	cursor: pointer;
}

.ubtn {
	border: 1px solid gray;
	color: gray;
	background-color: white;
	padding: 4px 40px;
	border-radius: 4px;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
}

.upload-btn-wrapper input[type=file] {
	font-size: 100px;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	cursor: pointer;
}
/*
@media (min-width: 1025px) {
	.kt-header--fixed.kt-subheader--fixed .kt-subheader {
		z-index: 9;
	}
}
*/
.select2-container {
	width: 100% !important;
}

.select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple {
	min-height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	min-height: 36px !important;
}

.backInBlack {
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
	position: fixed;
	background-color: rgba(255, 255, 255, 0.75);
	z-index: 20000;
	display: flex;
	align-items: center;
}

.backInBlack img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 64px;
	height: 64px;
	margin-left: -32px;
	margin-top: -32px;
}


.select2-result-repository {
	display: flex;
	align-items: center;
}

.select2-result-repository__avatar {
	width: 48px;
	height: 48px;
	margin-right: 10px;
}

.select2-result-repository__avatar img {
	width: 48px;
	height: 48px;
}

.hiddenemp {
	display: none;
}


.gmapitem.report {
	width: 48px;
	height: 48px;
	float: right;
	margin: 0 0 0 10px;
	cursor: pointer;
}

.rc {
	padding: 3px 10px;
	border-radius: 3px;
	white-space: nowrap;
}

.rcNotWork {
	background-color: #922686;
	color: white !important;
}

.rcIncome {
	background-color: #009900;
	color: white !important;
}

.rcOutcome {
	background-color: #ee1c24;
	color: white !important;
}

.rcEarnings {
	background-color: #0085d1;
	color: white !important;
}

.rcWH {
	background-color: #6f361c;
	color: white !important;
}

.rcViolet {
	background-color: #105716;
	color: white !important;
}

.rcTitles {
	background-color: #ff7f11;
	color: white !important;
}

.rcText {
	background-color: #000000;
	color: white !important;
}

.kt-widget4 .kt-widget4__item {
	flex-wrap: wrap;
}

td {
	font-weight: 400;
}
.tttable {
	font-size:0.85rem;
}
.tttable-sm {
	font-size:0.75rem;
}
.datepicker, .datetimepicker {
	z-index: 1060 !important;
}


.timeline {
	font-size: 85%;
}
.timeline h4:not(:first-child) {
	margin-top:2rem;
}
.timeline-item {
	display:flex;
	align-items: center;
	justify-content: stretch;
	margin-bottom:2rem;
}
/*.timeline-item:last-child {
	margin-bottom:0;
}*/
.timeline-time {
	flex:0 1 auto;
	min-width: 40px;
	margin:0 20px 0 0;
}
.timeline-image {
	flex:0 1 auto;
	margin:0 20px 0 10px;
}
.timeline-image img {
	width:48px;
}
.timeline-image a {
	display:block;
}
.timeline-content {
	flex:1;
	background-color: #f0f0f0;
	padding:1rem;
	position:relative;
	display: flex;
}
.timeline-content-inner {
	flex:1;
}
.timeline-content-inner p:last-child{
	margin-bottom:0;
}

.timeline-content-gallery {
	flex:0 1 auto;
	display:flex;
	flex-direction: row;
	margin-left: 1rem;
}
.timeline-content-gallery img {
	width: 48px;
}
.timeline-content-actions {
	flex:0 1 auto;
	display:flex;
	flex-direction: column;
	margin-left: 1rem;
}
.timeline-image:after {
	content:"";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 50%;
	border-left: 2px dotted #ff0000;
	transform: translate(-50%);
}
.timeline-content:after {
	content: " ";
	line-height: 0;
	position: absolute;
	left: -8px;
	top: calc(50% - 8px);
	border: 8px solid #f0f0f0;
	transform: rotate(45deg);
	transform-origin: center;
}

.form-control {
	background-color: #f0f0f0;
	border:0;
	border-bottom: 1px solid #ced4da;
	border-radius: .35rem;
	transition: border-color 0.15s ease-in-out;
}
.form-control:focus {
	background-color: #f5f5f5;
	border-bottom-color: #ff2121;
	outline: 0;
	box-shadow: none;
}
.btn:focus, .btn.focus {
	outline: 0;
	box-shadow: none;
}
.datetimepicker td, .datetimepicker th {
	width: 40px;
	height: 30px;
}

.input-group-text {
	background-color: #e9ecef;
	border: 0;
	border-bottom: 1px solid #ced4da;
}
.slider.slider-horizontal {
	width: 100%!important;
}


.flexirow {
	display:flex;
	flex-direction: row;
	align-items: center;
}
.flexirow-left {
	flex: 0 1 auto;
	margin-right: 1rem;
}
.flexirow-right {
	flex: 0 1 auto;
	margin-left: 1rem;
}
.flexirow-center {
	flex: 1;
}

.notifItem {
	font-size:0.875rem;
}





.ivanBack {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 1);
	z-index: 20000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ivanBack-inner {
	display:inline-block;
}

.glow {
	box-shadow: 0 0 5px black;
}
.glow-sm {
	box-shadow: 0 0 3px black;
}
.glow-lg {
	box-shadow: 0 0 10px black;
}
.tajmer {
	font-family: "PT Sans", sans-serif;
	font-weight: 700;
}
.tajmeractive {
	color:var(--purple);
}
#workTotalTime,#currentTime {
	font-size:3rem;
}
#workTime {
	font-size:1.5rem;
}
#lunchTime {
	font-size:1.5rem;
}
#jobsite {
	font-size:1.25rem;
}