
@media screen and (max-aspect-ratio: 1/1) {
	/*portrait*/
	.popup-outer {
		left:0px;
		top:20px;
		width:100%;
		position: fixed;
		border: 2px solid #a0a0a0;
		background-color: white;
		padding-right:0;
		overflow:hidden;
		display: flex;
		flex-direction: column;
		max-height:80%;
		min-width:25%;
		min-height:20%;
		z-index:500;

	}
}

@media screen and (min-aspect-ratio: 1/1) {
	/*landscape*/
	.popup-outer {
		left:20%;
		position: fixed;
		padding-right:0;
		display:flex;
		flex-direction:column;
		border: 2px solid #a0a0a0;
		background-color: white;
		overflow:hidden;
		max-height:80%;
		min-width:25%;
		min-height:20%;
		z-index:500;
	}
}
.popup-dragbar {
	background-color:#a0a0a0;
	flex-shrink:0;
	color: white;
	font-weight: bold;
	height: 1.4rem;
	line-height: 1.4rem;
	font-size:1rem;
	width:100%;
	cursor: move;
	position:absolute;
	top:0px;
	z-index:100;
}
.popup-inner {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	padding-top:1rem;
	padding-bottom:2.4rem;
	overflow: auto;
	flex-grow:1;
	color: #202020;
	min-height:100px;
	box-sizing:border-box;

}

.popup-bottombar {
	width:100%;
	flex-shrink:0;
	border-top: 1px solid #404040;
	background-color:#e0e0e0;
	height: 1.8rem;
	cursor:move;
	position:absolute;
	bottom:0px;


}



.popup-closebut {
	display:none;
	float:left;
	height: 1rem;
	width: 1rem;
	line-height: 1rem;
	text-align: center;
	color: white;
	border:1px solid #808080;
	cursor: pointer;
	padding:0px;
}

.popup-title {
	display: inline;
	padding-left: 10px;
	color: white;
	height: 1rem;
	line-height: 1rem;
	padding-left:5px;
	background-color:#a0a0a0;
	width:100%;
	font-weight: bold;
}

.popup-closebut:hover {
	background-color: red;
}
.popup-thinbar{
	background-color:black;
	width:100%;
	height:0.7em;
	cursor:move;
	z-index:100;
}


.popup-button {
	margin-top:0.2rem;
	margin-left:0.2rem;
	display:inline-block;
	text-align: center;
	cursor: pointer;
	vertical-align:middle;
	min-width: 2rem;
	border-radius: 8px;
	border: 1px solid #b0b0b0;
	background-color: #e0e0e0;
	height:1.4rem;
	line-height:1.4rem;
	padding-top:0.1rem;
	font-size:1.0rem;
	cursor:default;
}

.popup-button:hover {
	background-color: #808080;
}

.popup-se-grabimg{
	z-index:500;
	cursor:se-resize;
	position:absolute;
	bottom:0px;
	right:0px;
	width:20px;
	height:20px;
}

.popup-tr{
	height:2em;
}
