.page {
	width: 100%;
	height: auto;
	overflow-y: auto;
}

.pageCol {
	width: 100%;
}
.viewSizeGE-XL .page {
	display: flex;
	flex-direction: row;
}

.viewSizeGE-XL .pageCol {
	float: left;
	max-width: calc(50% - 4px);
}

.fullPage {
	position:fixed; top:0; bottom:0;
	width: 100%;
	z-index: 2;
}

.card {
	padding: 2px;
	font-weight: bold;
	width: 100%;
}

.card_title {
	margin-top: 10px;
	margin-bottom: 4px;
	width: 100%;
	display: flex; align-items: center; justify-content: space-between;
}

.card_panel {
	font-weight: bold;
	width: 100%;
	box-sizing: border-box;
	border-collapse: collapse;
	border-radius: 8px;
	background-color: var(--main-text-bg-color);
	color: var(--main-text-color)
	overflow: hidden;
}

.card_panel p {
	margin: .5ch;
}

.card_row {
	border-bottom: 1px solid var(--main-fill-color);
}
.card_row:last-child {
	border-bottom: none;
}

.card_row-main, .card_row-msg {
	display: flex; align-items: center; justify-content: stretch; flex-wrap: nowrap;
	width: 100%;
	padding: 1px 2px;
}
.card_row-main {
	min-height: 1.8em;
	height: 100%;
}
.card_row-rowStyle-input .card_row-main, .card_row-rowStyle-input.card_row-main {
	min-height: max(40px, 1.8em);
}
.card_row-rowStyle-output .card_row-main, .card_row-rowStyle-output.card_row-main {
	min-height: max(30px, 1.8em);
}
.card_rowMsg-error {
	color: var(--main-text-warning-color);
}

.card_value, .card_message {
	flex: 1 1 50%;
}
.card_value, .card_message {
	display: flex; align-items: center;
}
.card_value {
	padding-right: 1ch;
}
.card_label {
	flex: 1 1 50%;
	padding-right: 1ch;
}
.card_row-colStyle-LV2 .card_label,
.card_row-colStyle-LV2 .card_value {
	flex: 1 1 25%;
}
.card_row-colStyle-LV2 .card_row-msg .card_message {
	flex: 1 1 75%;
}
.card_rowNote {
	display: flex; justify-content: center; flex-wrap: nowrap;
	background-color: grey;
	color: white;
	padding-top: 0.1em;
	padding-bottom: 0.1em;
}
.card_rowNote:first-child {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
/*
 * ListPage
 */

.listPage {
	height: 100%;
	width: 100%
}
.listPage .listSelector {
	height: 100%;
	overflow-y: auto;
}
.listPage .navHeaderBar {
	border-top: 1px solid black;
}
.tab .listPage {
	display: flex;
	flex-direction: row;
	justify-content: stretch;
}
.tab .listPage .editList_container {
	flex-shrink: 0;
	flex-basis: content;
	min-width: 20ch;
	width: auto;
}
.tab .listPage .listPage_contents {
	flex-basis: auto;
	flex-shrink: 3;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.slide .listPage {
	display: flex;
	flex-direction: column;
}
.slide .listPage .listPage_contents {
	width: 100%;
}

/*
 * EditListSelector
 */
.editList_container {
	height: 100%;
	background-color: var(--main-fill-color);
	border-right: 1px solid black;
	border-top: 1px solid black;
	display: flex; flex-direction: column;
}
.slide .editList_container {
	width: 100%;
}
.editList_list {
	padding: 0;
	margin: 0;
	background-color: var(--main-text-bg-color);
	flex-grow: 1;
	overflow-y: auto;
}
.editList_list-show {
}
.editList_list-hide {
	transform: translateX(-100%);
}
.editList_header {
	color: var(--nav-header-color);
	background-color: var(--nav-header-bg-color);
	font-weight: bold;
	width: 100%;
	height: 2em;
	min-height: var(--nav-header-min-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.editList_hdrButton {
	font-weight: bold;
	font-size: 140%;
	min-height: 38px;
	min-width: 40px;
	display:flex; justify-content: center; align-items: center;
}

.editList_editBtn {
	box-sizing: border-box;
	min-height: 36px;
	min-width: 40px;
	margin: 2px;
}

.editList_items {
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: var(--main-text-bg-color);
}
.editList_item {
	font-weight: bold;
	height: 2.9em;
	min-height: 40px;
	margin: 0;
	padding: 2px 4px;
	border-top: 1px solid var(--main-fill-color);
	border-bottom: 1px solid var(--main-fill-color);
	display: flex; justify-content: space-between; align-items: center;
	flex-wrap: wrap;
	background-color: var(--main-text-bg-color);
}
.editList_item:first-child {
	border-top: none;
}
.editList_item > div:first-child {
	display: flex; align-items: center;
}
.editList_item-selected {
	color: var(--main-text-color-sel);
	background-color: var(--main-text-bg-color-sel);
}
.editList_item-unselected {
	color: var(--main-text-color);
	background-color: var(--main-text-bg-color);
}
.editList_item-reorder {
	transition: transform 250ms linear;
}

.editList_itemDelete {
	margin: 0 .5em;
}
.editList_itemMove {
	color: darkgrey;
	margin-right: .5em;
}
.editList_itemEdit{
	color: darkgrey;
	margin-right: .25em;
}

/*
 * Buttons in the card title row
 */
.titleButton {
	margin-left: 4px;
}

