/** This css copies from the inner style from _main.gsp **/
body {
	width: 100%;
	margin: 0px;
	box-sizing: border-box;
	font-family: Arial;
	background-color: #EEEFEF;
}

.header__dimension {
	position: absolute;
	width: 100%;
	height: 65px;
	top: 0px;
	left: 0px;
}

.header__main {
	height: 65px;
	background-color: #22262e;
	z-index: 10100;
	display: flex;
	align-items: center;
}

.header__logo-container {
	display: inline-block;
	width: 210px;
	padding: 8px 10px;
	flex: 0 1 auto;
	justify-content: center;
	align-self: flex-start;
}

.header__logo {
	height: 48px;
}

.header__engage-name {
	position: absolute;
	top: 40px;
	left: 10px;
	font-family: Arial;
	font-size: 15px;
	font-weight: bold;
	color: white;
}

.header__setting {
	margin-right: 10px;
	min-width: 0;
	color: #fff;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: right;
	flex: 1;
}

.header__setting:hover {
	color: #fff;
}

.header__shadow {
	z-index: 9990;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* suggested by king */
}

.module-panel__panel {
	position: absolute;
	width: 200px;
	z-index: 100;
	top: 0px;
	left: 0px;
	padding: 0px 3px;
	border-bottom: 1px solid transparent;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.85);
	box-sizing: border-box;
	vertical-align: middle;
}

.module-panel__module {
	width: 180px;
	height: 42px;
	margin: 3px;
	background-color: #5a6577;
	cursor: pointer;
}

.module-panel__module:hover {
	background-color: #69768C;
}

.module-panel__module:first-child {
	margin-top: 40px;
}

.module-panel__module img {
	padding: 3px;
}

.menu__main {
	position: absolute;
	z-index: 9800;
	top: 65px;
	left: 0px;
	bottom: 40px;
	background-color: #1b1e24;
	overflow-y: auto;
	overflow-x: hidden;
	width: 210px;
}

.menu__main .category>.title {
	font-weight: bold;
}

.menu__main .category.collapsed>.title::after {
	content: "\25BE";
	float: right;
	color: #AAA;
	padding-right: 10px;
}

.menu__main .category.expanded>.title::after {
	content: "\25B4";
	float: right;
	padding-right: 10px;
}

.menu__main>.category.module-panel__current-module-container>.title {
	cursor: default;
}

.module-panel__current-module {
	position: relative;
	font-size: 12px;
	z-index: 200;
}

.model-panel__show-modules-arrow {
	margin-left: 2px;
	font-size: 12px;
}

.footer {
	position: absolute;
	z-index: 9900;
	width: 100%;
	bottom: 0px;
	left: 0px;
	height: 40px;
	line-height: 40px;
	font-size: 13px;
	background-color: #1b1e24;
	text-align: center;
	color: #fff;
}

.mainContainer {
	/*
        box-sizing: border-box;
        background-color: #EEEFEF;
        height: 100%;
        padding: 65px 0px 40px 0px;
        margin-left: 200px;
        */
	box-sizing: border-box;
	position: absolute;
	left: 0px;
	padding-left: 210px;
	right: 0px;
	top: 65px;
	bottom: 40px;
	background-color: #EEEFEF;
	overflow: auto;
	display: flex;
	flex-flow: column;
}

.mainContainer.full-screen {
	margin-left: 0px;
}

.main {
	padding: 0 15px 15px 15px;
	flex: 1 1 auto;
}

.main>div {
	height: 100%;
	display: flex;
	flex-flow: column;
}

.mainContainer .page-header {
	font-size: 14px;
	font-weight: bold;
	margin: 15px;
}

.mainContainer .page-header>a {
	color: inherit;
}

form {
	margin: 0px;
}

button {
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 5px 10px;
	box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .05);
	cursor: pointer;
}

button:disabled {
	color: #999;
	background-color: #f0f0f0;
}

button:hover {
	background-color: #eee;
}

button.big-button {
	height: 2.5em;
	padding: 0px 1em;
	font-size: 16px;
}

input[type="password"], input[type="text"], input[type="number"], select
	{
	width: 100%;
	height: 2em;
	font-size: 16px;
	border: 1px solid #A9A9A9;
	color: #333;
	background-color: #fff;
	padding: 0 5px;
}

select {
	padding-right: 0;
	//
	force
	the
	drop-down
	arrow
	touching
	the
	right
	edge
}

input[type="password"]:disabled, input[type="text"]:disabled, input[type="number"]:disabled,
	select:disabled {
	background-color: inherit;
	border: 2px solid transparent;
}

input[type="text"].alert-danger, input[type="number"].alert-danger,
	input[type="password"].alert-danger, input[type="email"].alert-danger {
	border-color: #ebccd1 !important;
	background-color: #f2dede !important;
	color: #a94442 !important;
}
/* Firefox: remove and re-applies spinner for number input like Chrome*/
input[type=number] {
	-moz-appearance: textfield;
}

input[type="number"]:hover, input[type="number"]:focus {
	-moz-appearance: number-input;
}

.header__operators-list-container {
	margin-right: 10px;
	color: white;
	font-size: 20px;
	font-weight: bold;
	white-space: nowrap;
}

.header__operators-list-container div {
	display: inline-block;
}

.header__operators-list-container .trial-remaining-days {
	font-size: 14px;
	font-weight: normal;
	display: none;
}

.header__operators-list-container .trial-expired {
	font-size: 14px;
	font-weight: normal;
	display: none;
	color: red;
}

.header__current-operator {
	width: auto;
	max-width: 700px;
	flex: 0 1 auto;
}

.header__btn-logout {
	width: 70px;
	margin-right: 10px;
	line-height: 1em;
	flex: 0 1 auto;
}

.toolbar {
	margin-bottom: 10px;
}

.grid-list-container-header {
	/* where columns display controller widget is placed */
	margin-bottom: 10px;
	text-align: left;
}

.grid-list-container-header>.col-display-control-wrapper button {
	padding: 5px 5px;
	font-size: 12px;
}

.grid-list-container-header>.col-display-control-wrapper>.col-display-control-item
	{
	display: inline-block;
	margin: 0 5px;
}

.grid-list-container>.grid-list-container-footer {
	/* where loading node and paging widget is placed */
	overflow: auto; /* clearfix */
	margin-top: 10px;
	text-align: right;
}

.grid-list-container>.grid-list-container-footer .amino-loading {
	float: left;
}

.panel .message {
	margin: 15px 0px;
}

.details div.field {
	margin: 10px 0px;
}

.details div.field span.field-value {
	font-size: 14px;
}

.details .field-caption {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 8px;
}

.details .field-caption.optional::after {
	content: "(Optional)";
	color: #999;
	font-style: italic;
	padding-left: 10px;
}

.details div.checkbox {
	font-size: 14px;
}

.details div.checkbox input[type=checkbox] {
	margin-right: 8px;
}

.details div.row-field {
	margin: 10px 0px;
}

.details div.row-field .field-caption {
	display: inline-block;
	width: 200px;
	padding-bottom: 0px;
	font-size: 14px;
	font-weight: bold;
	vertical-align: top;
}

.details div.row-field span {
	font-size: 14px;
	white-space: nowrap;
}

.details.grid {
	padding-top: 6px !important;
	/* 11px from the top = 6px (this) + 5px (from row margin) */
	padding-bottom: 10px !important;
	/* 15px from the bottom = 10px (this) + 5px (from row margin) */
}

.details.grid div.field {
	margin: 5px 0px;
}

#overlay {
	z-index: 20000;
	background-color: #000;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.3;
	display: none;
}

#overlay>.cssload-container {
	top: 50%;
	width: 100%;
}