/*
 * Style for small devices like iPhone.
 * This manages the width of the elements by percentage to allow a variety of wide formats.
 */

/* really small screens */
.devWidthXS .group,
.devWidthXS .input,
.devWidthXS .groupTitle,
.devWidthXS button {
	font-size: 12px !important;
}
.devWidthXS .wind input.S5 {
	min-width: 40px;
	max-width: 50px;
}

/*
 * Style the header bar.
 */

.smallUI .viewHeaderBar {
	font-weight: bold;
	font-size: 14pt;
}

/*
 * Style the regular pages
 */

.smallUI .page,
.smallUI .popupPage {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgb(220,220,225);
}

.smallUI .popupPage {
	z-index: 10;
}

.smallUI .pageMain {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.smallUI .pageContent,
.smallUI .pageSelector .viewListWrapper,
.smallUI .homeSelector .viewListWrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.smallUI .pageContent,
.smallUI .pageSelector .viewListWrapper,
.smallUI .homeSelector .viewListWrapper {
	top: 50px;
}

.smallUI .homeSelector {
	position: absolute;
	top: 0;
	left: -240px;
	bottom: 0;
	width: 240px;
	background-color: rgb(220,220,225);
	z-index: 20;
	border-right: 2px solid black;
	transition: transform 200ms ease-out;
	-webkit-transition: -webkit-transform 200ms ease-out;
}

.smallUI .homeShowMenu .homeSelector {
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
}

.smallUI .hamburger {
	background-color: rgba(0,0,0,0);
	font-size: 32px !important;
	line-height: 32px;
	color: white;
	padding-top: 0;
}

/*
 * Toggle home page content and menu depending on home page class.
 */
.smallUI .pageShowMain .pageSelector,
.smallUI .pageShowSelector .pageMain {
	display:none;
}

/*
 * Style the basic layout (groups and content) of the pages.
 * For SmallUI style, the input area is followed by the output area.
 */
.smallUI .iGroup .oGroup {
	width: 100%;
}
