@charset "utf-8";

.app-parent {
	background-color: rgba(0,0,0,0.3);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 9999;
}
.app-text-overflow {
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}	
.app-box {
	background-color: #fff;
	margin: auto;
	box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
	position:relative;
	width: 100%;
	height: 100%;
	max-width: 700px;
	max-height: 430px; 
	display: flex;
	flex-direction: column;
}
.app-header {
	padding: 10px;
	background-color: rgb(63,81,181);
	flex: 0 0 40px;
	display:flex;
	align-items: center;
}
.app-title {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	flex: 1 1 auto;
}
.app-close-button {
	color: #fff;
	font-size: 32px;
	flex:0 0 20px;
	cursor: pointer;
}
.app-close-button:hover {
	color: yellow;
}
.app-content {
	flex: 1 1 auto;
	display: flex;
	padding-left:15px;
	padding-right:15px;
 	overflow-y: auto;
	flex-flow: column;
}
.app-footer {
	background-color: lightblue;
	padding: 0px 30px;
	text-align: center;
	flex: 0 0 45px;	
	align-items: center;
	display: flex;
	justify-content:space-between;
}
.app-pages{
	flex:1 1 auto;
	display: block; 
/*	flex-flow: column; */ 
}
.vcenter{
	display:flex;
	flex-flow:column;
	justify-content: center;
}
.left-arrow, .right-arrow {
	font-size: 36px;
	cursor: pointer;
}
.disabled-button {
	opacity: 0.3;
	cursor: auto !important;
}
@media (max-width: 640px) , (max-height: 450px) {
	.app-box {
		max-width: 100%;
		max-height: 100%;
	}
}


/* App Modal */

/* Background */
.app-modal {
    display: none;
    position: fixed; 
    z-index: 1;
    padding-top: 20px; 
	padding-bottom: 20px;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	
}

/* Modal Body */
.app-modal-body {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
	height: 80%;
	max-width: 650px;

}
.app-modal-content{
	width: 100%;
	margin: auto;
	max-height: 93%;
	overflow-y: auto;
}

.app-modal-title{
	float:left;
	font-size:18px;
}

/* Close Button */
.app-modal-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.app-modal-close:hover,
.app-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
/* App Modal */


.app-thumbnail{
    border: 15px solid #333;
    border-radius: 15px;
}