﻿
/*#region Common*/

html, body, form {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
}

table {
	border-spacing: 0;
	border-collapse: separate;
}

th {
	font-weight: 100 !important;
	padding: 5px;
	cursor: default;
}

#divBlackout {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1002;
	background-repeat: no-repeat;
	background-position: center;
	align-items: center;
	justify-content: center;
	background-color: white;
}

#divTransition {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	background-repeat: no-repeat;
	background-position: center;
	align-items: center;
	justify-content: center;
	background-color: white;
}

.controlsToolbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
	height: 50px;
}

.menuItem {
	border-radius: 3px;
	background-color: white;
	width: 41px;
	border: 1px solid #f5f5f5 !important;
	transition: width .25s;
	overflow: hidden;
}

.linkCell {
	cursor: pointer;
}

.control {
	width: 100% !important;
}

.hideVerticalScroll, .gm-style .gm-style-iw-d {
	scrollbar-width: none;
	scrollbar-height: none;
}

.hideWebkitVerticalScroll::-webkit-scrollbar {
	display: none !important;
}

.gm-style .gm-style-iw-d::-webkit-scrollbar {
	display: none !important;
}

.gm-style-iw-chr {
	display: none;
}

/*::-webkit-scrollbar {
	width: 5px !important;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
	background: #1e1e1e;
}

	::-webkit-scrollbar-thumb:hover {
		background: black;
	}*/

.darkBackgroundGradient {
	background-image: linear-gradient(rgb(0 0 0 / 55%), rgb(0 0 0 / 76%)) !important;
	border-radius: 12px 12px 0 0;
}

.textShadow {
	text-shadow: 1px 1px 2px white;
}

.textAlignLeft {
	text-align: left;
}

.textAlignCenter {
	text-align: center;
}

.textAlignRight {
	text-align: right;
}

.backGlow {
	-webkit-filter: drop-shadow(0 0 7px #fff);
	filter: drop-shadow(0 0 7px #fff);
	opacity: .6;
}

#inpFake {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

a:link {
	text-decoration: none;
	color: white;
}

a:visited {
	text-decoration: none;
	color: white;
}

a:hover {
	text-decoration: underline;
	font-weight: 600;
	color: white;
}

a:active {
	text-decoration: none;
	color: white;
	font-weight: 600;
}

.lblBold {
	font-weight: 500;
}

.inline {
	display: inline-block;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.disabled {
	opacity: .2;
	pointer-events: none;
}

.spnMiddle {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.semiRadius {
	border-radius: 4px;
}

.radius {
	border: 1px solid #f5f5f5 !important;
	border-radius: 12px;
}

.btn {
	box-sizing: border-box;
	transition: all .3s;
	border-radius: 15px;
	text-align: center;
	width: auto;
	padding-left: 7%;
	padding-right: 7%;
	padding-bottom: 3px;
	line-height: 27px;
	border: 1px solid #ffffff38;
}

	.btn:hover {
		cursor: pointer;
		background-image: linear-gradient(rgba(255,255,255,.2),rgba(255,255,255,0),rgba(255,255,255,0),rgba(255,255,255,0));
	}

	.btn:active {
		background-image: linear-gradient(rgb(39, 39, 39),rgb(61, 61, 61));
	}

.width100 {
	width: 100% !important;
}

.fitTitle {
	font-size: 11px;
}

.fitSubtitle {
	font-size: 9px;
}

.noFocusRect span {
	outline: none !important;
}

.marginTop {
	margin-top: 2px;
}

.centered {
	text-align: center;
}

.padding {
	padding: 5px;
}

.noMargin {
	margin: 0 !important;
}

.noPadding {
	padding: 0 !important;
}

.paddingLeftMedium {
	padding-left: 10px;
}

.bold {
	font-weight: 600;
}

.block {
	display: block;
}

.italic {
	font-style: italic;
}

.semibold {
	font-weight: 600;
}

.invisible {
	visibility: hidden;
}

.noDisplay {
	display: none !important;
}

.static {
	visibility: hidden;
	opacity: 0;
	transition: all .8s;
}

.animate {
	visibility: visible;
	transform: scale(1.0);
	opacity: 1;
}

.bgGreen {
	background-color: #24b319 !important;
	color: white !important;
}

.bgRed {
	background-color: #e00808 !important;
	color: white !important;
}

.bgOrange {
	background-color: #ff8800 !important;
	color: white !important;
}

.bgPurple {
	background-color: #8110c9 !important;
	color: white !important;
}

.bgBlue {
	background-color: #3e81ab !important;
	color: white !important;
}

.bgPink {
	background-color: #e096e3 !important;
	color: white !important;
}

.bgYellow {
	background-color: #ffc30a !important;
	color: white !important;
}

.bgGray {
	background-color: #6e6e6e !important;
	color: white !important;
}

.bgDark {
	background-color: #343434 !important;
	color: white !important;
}

.bgWhite {
	background-color: white !important;
}

.labelGreen {
	color: #24b319 !important;
}

.labelRed {
	color: #e00808 !important;
}

.labelOrange {
	color: #ff8800 !important;
}

.labelPurple {
	color: #8110c9 !important;
}

.labelBlue {
	color: #3e81ab !important;
}

.labelPink {
	color: #e096e3 !important;
}

.labelYellow {
	color: #ffc30a !important;
}

.labelGray {
	color: #3c3c3c !important;
}

::-ms-clear {
	display: none;
}

.pac-container:after {
	display: none !important;
}

.slider {
	-webkit-appearance: none;
	width: calc(100% - 160px);
	height: 8px;
	border-radius: 5px;
	background: whitesmoke;
	outline: none;
}

	.slider::-webkit-slider-thumb {
		-webkit-appearance: none;
		appearance: none;
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background: #272727;
		cursor: pointer;
	}

	.slider::-moz-range-thumb {
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background: #272727;
		cursor: pointer;
	}

.tooltip {
	position: relative;
	display: inline-block;
}

	.tooltip .tooltiptext {
		visibility: hidden;
		width: 120px;
		color: #fff;
		text-align: center;
		padding: 5px 0;
		border-radius: 6px;
		position: absolute;
		left: -65%;
		top: -35px;
		background-color: #111111;
		z-index: 1;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	}

	.tooltip:hover .tooltiptext {
		visibility: visible;
	}

/*#endregion*/

/*#region Login*/

.popStartUp {
	background-image: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,0),rgba(0,0,0,.6)) !important;
	overflow: hidden;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	min-height: 500px;
	padding-bottom: 15px;
}

#divInitialLogo {
}

.imgInitialCompanyLogo {
	width: auto;
	height: auto;
	max-height: 1%;
	max-width: 1%;
	vertical-align: middle;
	padding: 2px;
	margin-bottom: 45px;
	margin-top: 10px;
}

#divLoginForm {
	max-width: 300px;
	margin: auto;
	display: none;
}

/*#endregion*/

/*#region Reload*/

#popReloadContainer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 1000;
	display: none;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5));
	box-sizing: border-box;
}

#popReload {
	width: 250px;
	height: 130px;
	padding: 15px;
	box-sizing: border-box;
	background-color: white;
	border-radius: 18px;
	position: absolute;
	text-align: center;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2), 5px 5px 20px rgba(0, 0, 0, 0.2) !important;
}

#lblReloadMessage {
	color: white;
	position: absolute;
	top: 25px;
	left: 10px;
	right: 10px;
}

#btnReload {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 0;
	height: 32px;
	font-size: 16px;
	width: 100px;
	margin: auto;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}


/*#endregion*/

/*#region Notifier*/

#divNotifier {
	position: absolute;
	z-index: 100000;
	color: white;
	bottom: 30px;
	left: 50%;
	top: unset;
	transform: translate(-50%, -50%);
	padding-bottom: 3px;
	padding-top: 4px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	line-height: 30px;
	border-radius: 18px 10px 10px 0px;
	min-height: 30px;
	min-width: 100px;
	display: none;
	box-shadow: 2px 1px 4px rgb(0 0 0 / 60%), 0 0 0 rgb(0 0 0 / 1%);
}

/*#endregion*/

/*#region DevExpress*/

.dxgvFooter_Moderno td.dxgv {
	text-align: center !important;
	border: 1px solid white;
}

/*.dxm-item {
	min-width: 41px !important;
}*/

.dxpbVC {
	margin-bottom: 15px;
	color: #555555 !important;
	font-weight: 700;
	background-color: transparent !important;
}

.dxnbLite_Moderno .dxnb-img {
	margin: 0;
}

.dxnbLite_Moderno .dxnb-btnLeft {
	margin: 0 6px;
}

.dxtcLite_Moderno.dxtc-top > .dxtc-stripContainer {
	padding: 0;
}

.dxtcLite_Moderno.dxtc-noTabs > .dxtc-content {
	border: none !important;
}

.dxtcLite_Moderno > .dxtc-stripContainer .dxtc-leftIndent, .dxtcLite_Moderno > .dxtc-stripContainer .dxtc-spacer, .dxtcLite_Moderno > .dxtc-stripContainer .dxtc-rightIndent, .dxtcLite_Moderno > .dxtc-stripContainer .dxtc-sbWrapper, .dxtcLite_Moderno > .dxtc-stripContainer .dxtc-sbIndent, .dxtcLite_Moderno > .dxtc-stripContainer .dxtc-sbSpacer {
	border-bottom: 1px solid rgba(0,0,0,0.02) !important;
}

.dxmLite_Moderno.dxm-ltr .dxmtb.dxm-horizontal .dxm-image-l .dxm-dropDownMode.dxm-noImage, .dxmLite_Moderno.dxm-rtl .dxmtb.dxm-horizontal .dxm-image-r .dxm-dropDownMode.dxm-noImage, .dxmLite_Moderno .dxmtb.dxm-horizontal .dxm-image-t .dxm-dropDownMode.dxm-noImage, .dxmLite_Moderno .dxmtb.dxm-horizontal .dxm-image-b .dxm-dropDownMode.dxm-noImage {
	padding-left: 0;
	border-left: 1px solid #6d6d6d;
	height: 49px;
	display: block;
	box-sizing: border-box;
	padding-right: 2px;
}

.dxtcLite_Moderno > .dxtc-stripContainer .dxtc-tab, .dxtcLite_Moderno > .dxtc-stripContainer .dxtc-activeTab {
	border-bottom: none !important;
}

.dxflListBoxItemSys .dxflVATSys.dxflCaptionCell_Moderno {
	min-width: unset !important;
}

.dxichSys {
	border-radius: 4px;
}

.dxlpLoadingPanel_Moderno {
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

.dxbButton_Moderno {
	border-radius: 3px !important;
}

.dxfm-uploadPanelTableBCell a {
	display: none;
}

.dxflGroupCell_Moderno {
	padding: 0;
}

.dxflGroupBox_Moderno {
	margin: 0;
	padding-left: 6%;
	border-radius: 4px;
	border: 1px solid #f5f5f5;
	padding: 0 0 4px;
	margin: 18px 0;
}

	.dxflGroupBox_Moderno > .dxflGroup_Moderno {
		margin-top: -25px;
	}

.dxeMemo_Moderno {
	border-radius: 6px;
}

.dxeMemoEditAreaSys, input[type="text"].dxeEditAreaSys, input[type="password"].dxeEditAreaSys {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.dxpcModalBackLite_Moderno, .dxdpModalBackLite_Moderno {
	background-color: black;
}

.dxeListBox_Moderno {
	background-color: white;
}

.dxeTextBox_Moderno {
	border-radius: 4px;
}

	.dxeTextBox_Moderno td.dxic {
		padding: 3px 2px 6px 7px !important;
	}

.dxeTextBox_iOS {
	border-radius: 4px;
}

.dxeBase_Moderno .dxichCellSys, .dxeBase_Moderno.dxichCellSys {
	padding: 5px 3px 4px !important;
}

.dxeCalendar_Moderno .dxMonthGrid {
	font-weight: 500 !important;
	width: 280px !important;
}

.dxpc-header {
	background: none !important;
	border: none !important;
	text-align: center;
	font-size: large;
	color: white;
}

.dxpcLite_Moderno .dxpc-header, .dxdpLite_Moderno .dxpc-header {
	background: none !important;
	border: none !important;
}

.dxeTokenText_Moderno, .dxeTokenRemoveButton_Moderno {
	height: 16px;
	padding: 2px !important;
}

.dxEditors_edtTokenBoxTokenRemoveButton_Moderno {
	width: 20px;
	background-position: -312px -7px;
	display: none;
}

.dxeButtonEdit_Moderno {
	box-shadow: none !important;
}

/*#endregion*/
