.monaco-editor .lines-content.monaco-editor-background {
	margin: .4375rem .875rem;
}

.monaco-show-line .monaco-editor .lines-content.monaco-editor-background {
	margin: 0 .875rem !important;
}

.monaco-editor-height {
	height: 100%;
}

.e-spin-overlay {
	z-index: 1000 !important;
}

.color-url {
	cursor: pointer !important;
	color: blue !important;
}

.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
	color: #929292 !important;
}

.table-tree-node {
	font-size: 18px !important;
}

.validation-message {
	margin-top: .2rem;
	margin-bottom: .2rem;
	display: block;
	color: #f44336;
	position: relative;
}

.e-switch-wrapper .e-switch-inner {
	background-color: #e3165b !important;
	border-color: #e3165b !important;
	color: #fff;
	opacity: .54;
}

.e-switch-wrapper .e-switch-handle {
	background-color: #e3165b !important;
}

.e-switch-wrapper .e-switch-inner.e-switch-active {
	background-color: #0078d6 !important;
	border-color: #0078d6 !important;
	opacity: 1 !important;
}

.e-switch-wrapper .e-switch-handle.e-switch-active {
	background-color: #fff !important;
}

.mw-400 {
	min-width: 400px !important;
}

.nav-item {
	word-break: break-all;
}

.margin-botom-10 {
	margin-bottom: 10px;
}

.e-row {
	cursor: pointer !important;
}



/*Sidebar */

ul.nav.nav-group-sub.firstNav {
	margin-top: 8px;
}


/*end of sidebar*/

.cursor-pointer {
	cursor: pointer !important;
}

.sidebar-user img {
	height: 10px;
	margin-top: 0.1875rem;
	margin-bottom: 0.1875rem;
}

.service-status-waiting {
	position: absolute;
	top: 21px;
	right: 34px;
}

/* Service status icon */

.service-status-icon-holder {
	width: 3rem !important;
	align-items: start !important;
	height: 3rem !important;
}

.service-status-icon-stack {
	position: absolute;
	display: inline-block;
	vertical-align: middle;
}

.service-status-icon {
	position: absolute;
	width: 100%;
}

.service-status-icon-top {
	margin-top: 1.25rem;
	width: 3rem !important;
}

/* end icon */

.e-input-focus {
	box-shadow: 0 0 1px #2195f2 !important;
}


/* Cancel Button */
.btn-cancel {
	background-color: #eeeeee !important;
	color: black !important;
	border: 1px solid #eeeeee !important;
}

	.btn-cancel:hover {
		background-color: #363535 !important;
		color: white !important;
	}

/* Custom Css */
.custom-line-mt {
	margin-top: -5px;
}



.dni-copyfield {
	position: relative;
	display: inline-block;
}

	.dni-copyfield .tooltiptext {
		color: #343030d9;
		font-family: sans-serif, Verdana, Geneva, Tahoma;
		visibility: hidden;
		width: 130px;
		background-color: white;
		border: 1px solid rgba(0,0,0,.30);
		border-bottom-color: rgba(0,0,0,.30);
		box-shadow: 0 1px 1px rgba(0,0,0,.10);
		border-radius: 3px;
		padding: 5px;
		position: absolute;
		z-index: 1;
		bottom: 150%;
		left: 100%;
		margin-left: -75px;
		opacity: 0;
		transition: opacity 0.5s;
	}

		.dni-copyfield .tooltiptext::after {
			content: "";
			position: absolute;
			width: 15px;
			height: 15px;
			box-shadow: 0 1px 1px rgba(0,0,0,.10);
			border-top: 0px solid white;
			border-right: 2px solid rgba(0,0,0,.30);
			border-bottom: 2px solid rgba(0,0,0,.30);
			border-left: 0px solid white;
			margin-left: -7px;
			transform: rotate(45deg);
			margin-top: -7px;
			background: white;
			top: 100%;
			left: 50%;
		}

.tooltip-btn:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.cstm-help-text-icon-pos {
	position: relative;
	top: -2px;
}

.secret-toggle-btn {
	cursor: pointer !important;
	background: #fff !important;
	color: #212529 !important;
}

	.secret-toggle-btn:hover {
		background: #6c757d !important;
	}

/*
 * JSON Tree Viewer
 * http://github.com/summerstyle/jsonTreeViewer
 *
 * Copyright 2017 Vera Lobacheva (http://iamvera.com)
 * Released under the MIT license (LICENSE.txt)
 */

/* Background for the tree. May use for <body> element */
.jsontree_bg {
    background: #FFF;
}

/* Styles for the container of the tree (e.g. fonts, margins etc.) */
.jsontree_tree {
	margin-left: 30px;
	font-family: 'Roboto';
	font-size: 14px;
}

/* Styles for a list of child nodes */
.jsontree_child-nodes {
    display: none;
    margin-left: 35px; 
    margin-bottom: 5px;
    line-height: 2;
}
.jsontree_node_expanded > .jsontree_value-wrapper > .jsontree_value > .jsontree_child-nodes {
    display: block;
}

/* Styles for labels */
.jsontree_label-wrapper {
    float: left;
    margin-right: 8px;
}
.jsontree_label {
    font-weight: normal;
    vertical-align: top;
    color: #000;
    position: relative;
    padding: 1px;
    border-radius: 4px;
    cursor: default;
}
.jsontree_node_marked > .jsontree_label-wrapper > .jsontree_label {
    background: #fff2aa;
}

/* Styles for values */
.jsontree_value-wrapper {
    display: block;
    overflow: hidden;
}
.jsontree_node_complex > .jsontree_value-wrapper {
    overflow: inherit;
}
.jsontree_value { 
    vertical-align: top;
    display: inline;
}
.jsontree_value_null {
    color: #777;
    font-weight: bold;
}
.jsontree_value_string {
    color: #025900;
    font-weight: bold;
}
.jsontree_value_number {
    color: #000E59;
    font-weight: bold;
}
.jsontree_value_boolean {
    color: #600100;
    font-weight: bold;
}

/* Styles for active elements */
.jsontree_expand-button {
    position: absolute;
    top: 3px;
    left: -15px;
    display: block;
    width: 11px;
    height: 11px;
    background-image: url('../jsonTree/icons.svg');
}
.jsontree_node_expanded > .jsontree_label-wrapper > .jsontree_label > .jsontree_expand-button {
    background-position: 0 -11px;
}
.jsontree_show-more {
    cursor: pointer;
}
.jsontree_node_expanded > .jsontree_value-wrapper > .jsontree_value > .jsontree_show-more {
    display: none;
}
.jsontree_node_empty > .jsontree_label-wrapper > .jsontree_label > .jsontree_expand-button,
.jsontree_node_empty > .jsontree_value-wrapper > .jsontree_value > .jsontree_show-more {
    display: none !important;
}
.jsontree_node_complex > .jsontree_label-wrapper > .jsontree_label {
    cursor: pointer;
}
.jsontree_node_empty > .jsontree_label-wrapper > .jsontree_label {
    cursor: default !important;
}

.json-tree-root img {
	border: 0;
}

.json-tree-root ul, .json-tree-root ol {
	list-style: none;
	padding: 0;
	border: 0;
	outline: 0;
}

.json-tree-root span, .json-tree-root li {
	padding: 0;
	border: 0;
	outline: 0;
}

.json-tree-root p, .json-tree-root a, .json-tree-root label {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}