html, body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;;
    font-size: 14px;
	height: 100%;
}


.webui-running {
	z-index: 10000;
	background: #fff url('running.gif') no-repeat center;
	border: 1px solid #aaa;
	margin: 0;
	padding: 0;
	color: #000;
	cursor: wait;
	width: 80px;
	height: 80px;
}


.webui-running-progress {
	background: #fff;
	border: 1px solid #aaa;
	color: #000;
	cursor: wait;
	width: 300px;
	height: 50px;
	text-align: center
}


.webui-running-progress progress {
	width: 280px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}


.webui-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	outline: 0;
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
	overflow: auto;
}


.webui-overlay-anim {
	background-color: rgba(0,0,0,0.1);
	transition: background-color ease-out 2s; 
}


.vflex {
	display: flex;
	flex-direction: column;
}


.vfill {
	height: 100%;
   	overflow-y: auto;
}


.vflex > .vfill {
	height: auto;
	flex: 1;
}


.hflex {
	display: flex;
	flex-direction: row;
}


.hfill {
	width: 100%;
	overflow-x: auto;
}


.hflex > .hfill {
	width: auto;
	flex: 1;
}


.nowrap {
	white-space: nowrap;
}

a {
	cursor:pointer;
	text-decoration: none;
}

a.info-field:hover {
	text-decoration: underline;
}

/* bootstrap */

.sd-void {
	/* workaround to display bootstrap reboot */
}

/* bootstrap4 removed btn-xs */ 
.btn-group-xs > .btn, .btn-xs {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}


.row {
	display: block; /* override display flex */ 
}

.nav.nav-pills a.nav-link:hover{
	background-color: var(--bs-light);
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus, .nav.nav-pills > li.active > a.nav-link:hover {
	color: var(--bs-nav-pills-link-active-color);
	background-color: var(--bs-nav-pills-link-active-bg);
}

.navbar-text a, .navbar-text a:not([href]):not([class]){
  text-decoration: none;
  color: var(--bs-primary);
}

.navbar-text a:hover, .navbar-text a:not([href]):not([class]):hover{
	text-decoration: underline;
	color: var(--bs-link-hover-color);
}

.navbar, .navbar:hover {
	--bs-navbar-brand-color: #777;
	--bs-navbar-brand-hover-color: #777;
	--bs-navbar-padding-y: 0;
	--bs-navbar-nav-link-padding-x: 1.3em;
    border: 1px solid transparent;
    border-radius: 4px;
    border-color: #e7e7e7;
}


.nav-link {
    text-decoration-style: solid;
}


.navbar-text {
    padding-top: 1rem;
    padding-bottom: 0;
}


.btn-success, .btn-warning, .btn-info {
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-color: #fff;
    --bs-btn-disabled-color: #fff;
}

.btn-light[disabled], .btn-secondary[disabled] {
	color: #444;
}

.ig-container .btn-light {
	background-color: #fff;
}

.ig-container .btn-light[disabled] {
	border-color: #bbb;
}


.table {
  --bs-table-striped-bg: rgba( 0, 0, 0 , 0.04);
}

td, th {
	padding: 0;
}

.text-info {
	--bs-info-rgb: 49, 112, 143; /* #31708f */
}