/*******/
/**/
/* defaults */
/**/
.xform {
	margin-left: auto;
	margin-right: auto;
}
.xform fieldset {
	padding: 5px;
}
.xform fieldset + fieldset {
	border-top: 1px solid #ccc;
}
.xform fieldset h5 {
	background-color: #eaf7f9 !important;
}
.xform fieldset h5.modal-title {
	background-color:inherit !important;
}
.xform section {
	margin: 0px 0px;
	padding-left:5px;
}
.modal-header {
	cursor: move;
	padding: 0.6rem;
	background-color: #eaf7f9;
}
.modal-footer {
	padding: 0.6rem;
}
.xform a {
	color: #2da5da;
}
.xform .label, .xform section.view {
	padding: 3px 4px;
	white-space: normal;
	margin:4px 0px !important;
}

.xform .input input,
.xform .select select,
.xform .select button,
.xform .textarea textarea,
.xform .input .upl-info {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	padding: 2px 6px;
	outline: none;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	appearance: normal;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.xform .input .upl-info {
	color:#757575;
}
.xform .input .upl-info.highlight {
	border: none;
    background: 
        linear-gradient(90deg, #17a2b8 50%, transparent 0) repeat-x,
        linear-gradient(90deg, #17a2b8 50%, transparent 0) repeat-x,
        linear-gradient(0deg, #17a2b8 50%, transparent 0) repeat-y,
        linear-gradient(0deg, #17a2b8 50%, transparent 0) repeat-y;
    background-size: 8px 2px, 8px 2px, 2px 8px, 2px 8px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    animation: linearGradientMove .3s infinite linear;
}
@keyframes linearGradientMove {
    100% {
        background-position: 8px 0, -8px 100%, 0 -8px, 100% 8px;
    }
}
.xform section.view, .xform .onlyView {
	display: none;
}
.xform.view section.view, .xform.view .onlyView {
	display: block !important;
}
.xform.insert .hide-insert, .xform.update .hide-update {
	display: none !important;
}
.xform section.view ul {
	box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.xform section.view li {
	background-color: rgba(240,240,240,.3);
    border: 1px solid rgba(235,235,235,.9);
    margin-right: 5px;
    padding: 5px 5px;
    float: left;
}
.xform.view .label {
	color:#888;	
}
.xform.view .nonView,
.xform.view .input,
.xform.view .select,
.xform.view .textarea,
.xform.view .radio,
.xform.view .checkbox,
.xform.view .toggle {
	display: none !important;
}
.xform .input,
.xform .select,
.xform .textarea,
.xform .radio,
.xform .checkbox,
.xform .toggle {
	position: relative;
	display: block;
	margin-top:4px;
}

.xform .select .btn-group,
.xform .select ul {
	width:100%;
}
/**/
/* selects */
/**/
.xform .select > i {
	position: absolute;
	border-left:1px solid #c8c8c8;
	top: 2px;
	right: 4px;
	width: 23px;
	height: 24px;
	background: #fff;
	pointer-events: none;
	}
.xform .select > i:after,
.xform .select > i:before {
	content: '';
	position: absolute;
	right: 6px;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.xform .select > i:after {
	bottom: 7px;
	border-top: 4px solid #888;
}
.xform .select > i:before {
	top: 7px;
	border-bottom: 4px solid #888;
}
.xform .select select
{
	padding-right: 28px;
}
.xform .select button
{
	text-align:left;
	padding-right: 28px;
}
.xform .select ul.multiselect-container
{
	border: 1px solid #2da5da;
	border-radius:0px;
	max-height:200px;
	overflow-y:auto;
}

/**/
/* textareas */
/**/
.xform .textarea textarea {
	height: auto;
	resize: none;
}

/**/
/* radios and checkboxes */
/**/
.xform .radio,
.xform .checkbox {
	margin-bottom: 7px;
	margin-right: 10px;
	margin-top: 1px;
	padding-left: 27px;
	line-height: 27px;
	color: #404040;
	cursor: pointer;
}
.xform .radio:last-child,
.xform .checkbox:last-child {
	margin-bottom: 0;
}
.xform .radio input,
.xform .checkbox input {
	position: absolute;
	left: -9999px;
}
.xform .radio i,
.xform .checkbox i {
	position: absolute;
	top: 5px;
	left: 5px;
	display: block;
	width: 13px;
	height: 13px;
	outline: none;
	border-width: 2px;
	border-style: solid;
	background: #fff;
	box-sizing: content-box;
}
.xform .radio i {
	border-radius: 50%;
}
.xform .radio input + i:after,
.xform .checkbox input + i:after {
	position: absolute;
	opacity: 0;
	-ms-transition: opacity 0.1s;
	-moz-transition: opacity 0.1s;
	-webkit-transition: opacity 0.1s;
}
.xform .radio input + i:after {
	content: '';
	top: 4px;
	left: 4px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
}
.xform .checkbox input + i:after {
	content: '\f00c';
	top: -1px;
	left: -1px;
	width: 14px;
	height: 14px;
	font: normal 12px/16px FontAwesome;
	text-align: center;
}
.xform .radio input:checked + i:after,
.xform .checkbox input:checked + i:after {
	opacity: 1;
}
.xform .inline-group {
	margin: 0 -30px -4px 0;
}
.xform .inline-group:after {
	content: '';
	display: table;
	clear: both;
}
.xform .inline-group .radio,
.xform .inline-group .checkbox {
	float: left;
	margin-right: 10px;
}
.xform .inline-group .radio:last-child,
.xform .inline-group .checkbox:last-child {
	margin-bottom: 4px;
}

/**/
/* toggles */
/**/
.xform .toggle {
	margin-bottom: 4px;
	padding-right: 61px;
	line-height: 27px;
	color: #404040;
	cursor: pointer;
	font-weight:normal;
}
.xform .toggle:last-child {
	margin-bottom: 0;
}
.xform .toggle input {
	position: absolute;
	left: -9999px;
}
.xform .toggle i {
	content: '';
	position: absolute;
	top: 4px;
	right: 0;
	display: block;
	width: 49px;
	height: 17px;
	border-width: 2px;
	border-style: solid;
	border-radius: 12px;
	background: #fff;
	box-sizing: content-box;
}
.xform .toggle i:after {
	content: 'No';
	position: absolute;
	top: 2px;
	right: 8px;
	left: 8px;
	font-style: normal;
	font-size: 12px;
	line-height: 13px;
	font-weight: 700;
	text-align: left;
	color: #5f5f5f;
}
.xform .toggle i:before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 4px;
	right: 4px;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	opacity: 1;
	background-color: #bbdded;	
	-ms-transition: right 0.2s;
	-moz-transition: right 0.2s;
	-webkit-transition: right 0.2s;
}
.xform .toggle input:checked + i:after {
	content: 'Yes';
	text-align: right;
}
.xform .toggle input:checked + i:before {
	background-color: #2da5da;	
	right: 36px;
}


/**/
/* icons */
/**/
.xform .icon-append,
.xform .icon-prepend {
	position: absolute;
	top: 2px;
	width: 22px;
	height: 24px;
	line-height: 24px;
	text-align: center;
}
.xform .icon-append {
	right: 5px;
	padding-left: 3px;
	border-left-width: 1px;
	border-left-style: solid;
}
.xform .icon-prepend {
	left: 10px;
	padding-right: 3px;
	border-right-width: 1px;
	border-right-style: solid;
}
.xform .input .icon-prepend + input,
.xform .textarea .icon-prepend + textarea {
	padding-left: 38px;
}
.xform .input .icon-append + input,
.xform .textarea .icon-append + textarea {
	padding-right: 38px;
}
.xform .input .icon-prepend + .icon-append + input,
.xform .textarea .icon-prepend + .icon-append + textarea {
	padding-left: 38px;
}



/**/
/* tooltips */
/**/
.xform .tooltip {
	position: absolute;
	z-index: 0;
	left: -9999px;
	padding: 0px;
	font-size: 0px;
	line-height: 0px;
	font-weight: 400;
	background: rgb(255 244 206);
	display:none;
	opacity: 0;
	-ms-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
}
.xform .tooltip:after {
	content: '';
	position: absolute;
	border: 4px solid #888;
}

.xform .label-tooltip {
	position:relative;
	cursor:pointer;
	border-bottom: 1px dashed rgb(172 222 229);;
}
.xform .label-tooltip .tooltip {
    background: rgba(244, 233, 179, 0.85);
    color: rgb(51,51,51);
    border: 1px dashed rgb(172 222 229);	
}
.xform .label-tooltip:hover .tooltip {
	font-size:12px;
}

.xform .tooltip-top-right {
	bottom: 100%;
	right: 0;
	left: auto;
	margin-bottom: 5px;
}
.xform .tooltip-top-right:after {
	top: 100%;
	right: 16px;
	border-bottom:0px !important;
	border-right-color: transparent !important;
	border-left-color: transparent !important;
}

.xform .tooltip-top-left {
	bottom: 100%;
	right: auto;
	left: 0;
	margin-bottom: 5px;
}
.xform .tooltip-top-left:after {
	top: 100%;
	left: 16px;
	border-bottom:0px !important;
	border-right-color: transparent !important;
	border-left-color: transparent !important;
}

.xform .tooltip-right {
	top: 9px;
	white-space: nowrap;
	left: 100%;
	margin-left: 5px;
}
.xform .tooltip-right:after {
	top: 6px;
	right: 100%;
	border-top-color: transparent !important;
	border-left: 0px !important;
	border-bottom-color: transparent !important;
}

.xform .tooltip-left {
	top: 9px;
	white-space: nowrap;
	right: 100%;
	left: auto;
	margin-right: 5px;
}
.xform .tooltip-left:after {
	top: 6px;
	left: 100%;
	border-top-color: transparent !important;
	border-bottom-color: transparent !important;
	border-right: 0px !important;
}

.xform .tooltip-bottom-right {
	top: 100%;
	right: 0;
	left: auto;
	margin-top: 5px;
}
.xform .tooltip-bottom-right:after {
	bottom: 100%;
	right: 16px;	
	border-right-color: transparent !important;
	border-top: 0px !important;
	border-left-color: transparent !important;
}

.xform .tooltip-bottom-left {
	top: 100%;
	right: auto;
	left: 0;
	margin-top: 5px;
}
.xform .tooltip-bottom-left:after {
	bottom: 100%;
	left: 16px;
	border-right-color: transparent !important;
	border-top: 0px !important;
	border-left-color: transparent !important;
}
.xform .label-tooltip:hover .tooltip,
.xform section.state-error:hover > .tooltip,
.xform .input input:hover ~ .tooltip,
.xform .radio input:hover ~ .tooltip,
.xform .checkbox input:hover ~ .tooltip,
.xform .textarea textarea:hover ~ .tooltip,
.xform .select select:hover ~ .tooltip,
.xform .select .open ~ .tooltip,
.xform .tooltip.in {
	opacity: 1;
	z-index: 2000;
	padding: 2px 8px 3px;
	font-size: 11px;
	display:block;
	line-height: 16px;
	border: 1px dashed #888;
	box-shadow: 2px 2px 3px 0px #ccc;
}

@media (max-width: 768px) {
    .xform .input input:focus ~ .tooltip,
    .xform .radio input:focus ~ .tooltip,
    .xform .checkbox input:focus ~ .tooltip,
    .xform .textarea textarea:focus ~ .tooltip,
    .xform .select select:focus ~ .tooltip {
        /*display:none;*/
        opacity: 1;
        z-index: 2000;
        padding: 2px 8px 3px;
        font-size: 11px;
        display:block;
        line-height: 16px;
        border: 1px dashed #888;
        box-shadow: 2px 2px 3px 0px #ccc;
    }
}

@media (min-width: 769px){
    .xform .input input:focus ~ .tooltip,
    .xform .radio input:focus ~ .tooltip,
    .xform .checkbox input:focus ~ .tooltip,
    .xform .textarea textarea:focus ~ .tooltip,
    .xform .select select:focus ~ .tooltip {
        display:none;
    }
}

.xform .toggle i:before {
}
.xform .icon-append,
.xform .icon-prepend {
	color: #888;
}


.xform .input input,
.xform .select select,
.xform .select button,
.xform .textarea textarea,
.xform .input .upl-info,
.xform .radio i,
.xform .checkbox i,
.xform .toggle i,
.xform .icon-append,
.xform .icon-prepend {
	border-color: #c8c8c8;
	-ms-transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;
}

body.dark-mode .xform .input input,
body.dark-mode .xform .select select,
body.dark-mode .xform .select button,
body.dark-mode .xform .textarea textarea,
body.dark-mode .xform .input .upl-info,
body.dark-mode .xform .radio i,
body.dark-mode .xform .checkbox i,
body.dark-mode .xform .toggle i,
body.dark-mode .xform .icon-append,
body.dark-mode .xform .icon-prepend {
	border-color: #777;
	-ms-transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;
}

.xform .input:hover input,
.xform .select:hover select,
.xform .select:hover button,
.xform .textarea:hover textarea,
.xform .input:hover .upl-info,
.xform .radio:hover i,
.xform .checkbox:hover i,
.xform .toggle:hover i,
.xform .ui-slider-handle:hover {
	border-color: #17a2b8 !important;
}

.xform .input input:focus,
.xform .select select:focus,
.xform .select button:focus,
.xform .textarea textarea:focus,
.xform .input .upl-info:focus,
.xform .radio input:focus + i,
.xform .checkbox input:focus + i,
.xform .toggle input:focus + i {
	border-color: #17a2b8 !important;
}

.xform .select button:focus
{
	border:2px solid #8dc9e5 !important;
	background-color:white !important;
}


/**/
/* checked state */
/**/
.xform .radio input + i:after {
	background-color: #2da5da;	
}
.xform .checkbox input + i:after {
	color: #2da5da;
}
.xform .radio input:checked + i,
.xform .checkbox input:checked + i,
.xform .toggle input:checked + i {
	border-color: #2da5da;	
}

/**/
/* error state */
/**/
.xform .state-error:before {
	font: normal normal normal 8px/1 FontAwesome;
	color: rgba(209,62,81,1);
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f071";
	position: absolute;
	left: -5px;
	top:10px;
}
.xform .state-error .icon-append,
.xform .state-error .icon-prepend {
	color: rgba(209,62,81,.5);
}

.xform .select.state-error > i:after {
	border-top-color: rgba(209,62,81,.5);
}
.xform .select.state-error > i:before {
	border-bottom-color: rgba(209,62,81,.5);
}
/* tooltip */
.xform .state-error .tooltip {
	background: rgba(209,62,81,0.4);
}
.xform .state-error .tooltip:after {
	content: '';
	position: absolute;
	border: 4px solid rgba(209,62,81,0.4);
}
.xform .state-error ul {
	margin:0px;
	padding:0px;
}
.xform .state-error ul li {
	margin-left:14px;
}
.xform .tab-pane > .state-error:before {
	display:none;
} 
/**/
/* disabled state */
/**/
.xform .input.state-disabled input,
.xform .input.state-disabled i.icon-append,
.xform .select.state-disabled select,
.xform .select.state-disabled i,
.xform .select.state-disabled button.btn,
.xform .textarea.state-disabled textarea,
.xform .state-disabled .radio,
.xform .state-disabled .checkbox,
.xform .state-disabled .toggle {
	cursor: not-allowed;
	border-color: #eee;
}

.xform .input.state-disabled:hover input,
.xform .select.state-disabled:hover select,
.xform .select.state-disabled:hover button.btn,
.xform .textarea.state-disabled:hover textarea,
.xform .state-disabled .radio:hover i,
.xform .state-disabled .checkbox:hover i,
.xform .state-disabled .toggle:hover i {
	border-color: #e5e5e5;
}

.xform section.state-mandatory:after {
	font: normal normal normal 8px/1 FontAwesome;
	color: #17a2b8;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f069";
	position: absolute;
	left: -5px;
	top:0px;
}
.xform section.state-disabled:after {
	content: "" !important;
}
/**/
/* slider */
/**/
.xform .ui-slider {
	position: relative;
	height: 3px;
	border: 2px solid #e5e5e5;
	background: #fff;
	margin: 12px 6px 26px;
}
.xform .ui-slider-handle {
	position: absolute;
	width: 14px;
	height: 14px;
	margin: -8px 0 0 -8px;
	border: 2px solid #e5e5e5;
	outline: none;
	background: #fff;
	-ms-transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;
}
/**/
/* miscellaneous */
/**/
.xform .text-info {
	color: #2a95be !important;
	font-weight: normal !important;
}
@media screen and (max-width: 767px) {
	.xform .label {
		text-align: left;
		font-weight: bold;
	}
}
.xform .radio,
.xform .checkbox {
	font-weight: 400;
}
.xform .input .input-group {
	flex-wrap: nowrap;
}
.xform .input .input-group .input-group-btn .btn {
	height: 26px;
	border-radius: 0px;
	padding: 2px 10px;
	font-size:12px;
}
.xform .input .input-group .input-group-addon {
	padding-right:4px;
	padding-left:4px;
	margin-top:2px;
	border: 1px solid #c8c8c8;
	background-color: #e8e8e8;
}
.xform .input .value-list {
	max-height:90px;
	overflow-y:auto;
	overflow-x: hidden;
	display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.xform .input .value-list div {
	background-color:#ddd;
	margin:5px;
}
.xform .input .value-list div a {
	padding:0 4px;
}
.xform .text-view-prov, .xform tr.text-view-prov td {
	color:#dc3545 !important;
}
.xform .text-view-final {
	color:#28a745 !important;
}
.xform .text-strikethrough {
	text-decoration: line-through;
}
/**/
/* Datatable */
/**/
:root {
  --dt-row-selected: 57, 210, 231;
  --dt-row-selected-text: inherit;
}

table.dataTable td.select-checkbox::before, table.dataTable td.select-checkbox::after {
	left:10px !important;
	top:14px !important;
}
table.dataTable tbody td.select-checkbox {
	padding-left:20px !important;
}
table.dataTable td.select-checkbox::before {
	margin-top: -10px !important;
}
table.dataTable tr.selected td.select-checkbox::after {
    margin-top: -15px !important;
    margin-left: -6px !important;
}
table.table-condensed tbody th,
table.table-condensed tbody td {
	padding: 0px 2px !important;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #b7b9bb !important;
}
.table-bordered {
    border: 1px solid #b7b9bb !important;
}
table.dataTable {
	outline:none;
	margin: 0 auto 0 0 !important;
}
div.dt-container .dt-info {
    margin:4px;
}
.dt-container .dt-length select {
	padding: 0px 4px !important;
    margin:4px;
}
div.dt-container .dt-paging {
  float: right;
}
div.dt-container .dt-paging .dt-paging-button {
	min-width: 24px !important;
	padding: 2px !important;
	border-radius: 2px !important;
}
div.dt-container .select-checkbox .dt-column-title input[type="checkbox"] {
	float:left;
	margin-top: 4px;
    margin-right: 4px;
}

/**/
/* XUploadField */
/**/
.upl-img-preview {
	border:1px solid #e6e6e6;width:100%;max-width:300px;max-height:100%;margin:auto;display:block
}
.upl-uploading {
	display:none;
	font-size:18px;
}

/**/
/* Modals */
/**/

.modal-xl {
	--bs-modal-width: 90% !important;
}
.modal-body.modal-no-padding {
	padding: 0px;
}
.modal-xl .container {
	width:100%;
	padding:0px;
}
.modal-xl .container .box, .modal-body.modal-no-padding .box {
	margin:0px;
}
.modal-body {
	overflow-x: hidden; 
	overflow-y: auto; 
    max-height: calc(100vh - 180px) !important;
}
#bootstrap-alert-box-modal .modal-body, #bootstrap-confirm-box-modal .modal-body {
	max-height: 30vh;
	overflow-y: auto;
}
#bootstrap-alert-box-modal .modal-xl .modal-body, #bootstrap-confirm-box-modal .modal-xl .modal-body {
	max-height: 70vh !important;
	overflow-y: auto;
}
/**/
/*  */
/**/
.state-login, .state-logout, .state-1, .state-2, .state-3, .state-4, .state-P, .state-O, .secure {
	display:none;
}
#img-loading {
	position: fixed;
	top: 50%;
	left: 50%;
}

/**/
/* swal */
/**/
.swal2-html-container {
	border: 1px solid #eee;
	max-height: 40vh !important;
	overflow-y: auto;
	font-size:1em !important;
	padding:5px !important;
	margin:8px 12px !important;
}
.swal2-html-container.text-danger {
	text-align:left !important;
}
.swal2-icon {
	transform:scale(0.4);
	margin-top:0 !important;
	margin-bottom:0 !important;
}
.swal2-title {
	font-size:1.25em !important;
	padding-top:0 !important;
}
.swal2-actions {
	margin-top:0 !important;
	margin-bottom:0 !important;
}
/**/
/* adminlte */
/**/
.main-footer {
	padding: 0 10px !important;
	font-size:0.7rem !important;
	background-color:#eee;
}
.card {
	margin-top:0.3rem !important;
	margin-bottom: 0 !important;
}
.card-header {
	border-bottom:0 !important;
}
.nav-tabs .nav-link.active {
    color: #2da5da !important;
    background-color1: #2da5da !important;
    border-color: #2da5da !important;
    border-bottom: 1px solid #fff !important;
}
.navbar-badge {
    font-size: .6rem;
    font-weight: 500;
    right: 8px;
    top: 2px;
}
.badge {
    border-radius: 0.5rem !important;
}
.xform .nav.bg-light .nav-item a.nav-link {
	color: inherit;
}
.xform .nav.bg-light .nav-link {
	padding: 4px 8px 2px 8px !important;
	border-bottom-color:#2da5da;
}
body.dark-mode .nav-tabs .nav-link.active {
	border-bottom-color: #343a40 !important;
}
body.dark-mode input {
	background-color:#343a40;
}
body.dark-mode input:focus {
	background-color:#eee;
}
/**/
/* PAGE STYLES */
/**/
.login-page .main-footer {
	margin-left: 0 !important;
}

.login-page .brand-image {
	max-height:40px;margin-left:0;
}

/** headerstyles **/
#xlx-page-title {
	margin-top:6px;
}
#xlx-page-title h4 small {
	font-size:0.9rem;
	color:yellow;
	font-weight:bold;
	padding-left:10px;
}
body.text-sm #xlx-page-title {
	margin-top:3px;
}
body.text-sm #xlx-page-title h4 {
	font-size:1.2rem;
}
body.text-sm .btn {
	padding: .25rem .5rem !important;
    font-size: .875rem !important;
    line-height: 1.5 !important;
}
body.text-sm .btn-xs {
    padding: 0.01rem 0.25rem !important;
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
    border-radius: 0.15rem !important;
}
body.text-sm .btn-sm {
    padding: 0.0rem 0.18rem !important;
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    border-radius: 0.15rem !important;
    min-width:20px;
}
body.text-sm .btn-lg {
	padding: .5rem !important;
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
}
.text-strikethrough {
  text-decoration: line-through;
}
.wizard-step {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbbbbb;
	border: none;  
	border-radius: 50%;
	display: inline-block;
	opacity: 0.5;
}
.wizard-step.active {
	opacity: 1;
}
.wizard-step.finish {
	background-color: #007bff;
}
p {
	text-align: justify !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

#bootstrap-remote-page-modal .modal-body {
	max-height: calc(100vh - 140px);
    overflow-y: scroll;
}
.scroll-special {
	white-space: nowrap;
    overflow: hidden;
    border-bottom:1px dashed #bbb;
}

.text-comp-Pending {
	color:#6c757d;
}
.text-comp-Complete {
	color:#007bff;
}
.text-comp-Entered {
	color:#ffc107;
}
.text-comp-Partially {
	color:#28a745;
}
.text-B, .text-Buy {
	color:#007bff;
}
.text-S, .text-Sell {
	color:#dc3545;
}

.text-sm .dropdown-menu {
    font-size: 1rem !important;
}


/******** new tooltip-icon  ******/
/* Wrap your input with this container */
/* Container only for positioning (does NOT change layout) */

/* Info icon in right corner */
.xform .tooltip-icon {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  line-height: 16px;
  cursor: pointer;
  z-index: 1000;
}

.xform .tooltip-icon:hover {
    background-color: blue;
}

.xform .tooltip-icon:hover ~ .tooltip, /* sibling tooltip */
.xform .tooltip-icon:hover > .tooltip,
.xform .tooltip-icon:focus ~ .tooltip,
.xform .tooltip-icon:focus > .tooltip {
	opacity: 1;
	z-index: 2000;
	padding: 2px 8px 3px;
	font-size: 11px;
	display:block;
	line-height: 16px;
	border: 1px dashed #888;
	box-shadow: 2px 2px 3px 0px #ccc;
}

.dataTable tbody td {
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: break-all;
}


