.otapp .mypopup{
	/* give the outermost container a predefined size */
	display: none;
	/*display: flex;*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	flex-direction: column;
	z-index: 400;
}

.otapp .mypopup p{
	line-height: 1.5em;
}

.otapp .mypopup .mypopup-background{
	background-color: rgba(90,90,90,0.4);
	flex-grow: 1;
}

.otapp .mypopup .mypopup-background_popupfullscreen{
	display: none;
}

.otapp .mypopup-popup{  
	background-color: rgb(248, 249, 250);
	overflow: auto;  
	/* for Firefox */
	min-height: 0;
	display: flex;
	position: relative;
}

.otapp .mypopup-popup_popupfullscreen{  
	flex-grow: 1;
}

.otapp .mypopup-popup-html{  
  margin-left: 0px;
  margin-right: 0px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.otapp .mypopup-popup-html-body{  
  margin-left: 10px;
  margin-right: 10px;
}

.otapp .mypopup-popup-close{	
	position: absolute;
	cursor: pointer;
	z-index: 100;
	top:  0px;
	right:  0px;
	opacity:  0.3;
}

.mypopup-popup-html-buttoncontainer{
    display: flex;
    justify-content: flex-end;
    padding:  10px;
}

.mypopup-popup-html-buttoncontainer-button{
	border-radius: 3px;
	font-weight: bold;
	height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mypopup-popup-html-buttoncontainer-button_blue{
	background-color: rgb(73, 169, 231);
	border: 1px solid rgb(73, 169, 231);
	color: white;
}

.mypopup-popup-html-buttoncontainer-button_red{
	background-color: rgb(236, 41, 8);
	border: 1px solid rgb(236, 41, 8);
	color: white;
}

.mypopup-popup-html-buttoncontainer-button_nocolor{
	border: 1px solid rgb(150, 150, 150);
	color: rgb(130, 130, 130);
}

.mypopup-popup-html-buttoncontainer-button_W70{
	min-width: 50px;
	padding-left: 10px;
	padding-right: 10px;
}

.mypopup-popup-html-buttoncontainer-buttonspacer{
	width: 10px;
}

.mypopup-popup-html-buttoncontainer-button-text{
	text-align: center;
}

.mypopup-popup-html .mypopup-TRmargin{
	margin-left: 10px;
	margin-right: 10px;
}

.mypopup-popup-html h1{
	color: rgb(0,161,212);
	font-size: 18px;
	padding-top: 17px;
	padding-right: 30px;
	padding-bottom: 5px;
	border-bottom: 1px solid rgb(0,161,212);
	margin-top: 0px 
}

.mypopup-popup-html h1 .mypopup-popup-h1-buttonEdit{
	width: 15px;
	margin-bottom: 0px;
	opacity: 0.3;
	cursor: pointer;
}

.mypopup-indication{
	/*position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 410;*/

	padding: 5px;
	padding-bottom: 15px;
	background-color: rgba(255, 244, 194, 1);
	font-style: italic;
	text-align: center;
	border-top: 1px solid white;

	display:  none;
}

.otapp .mypopup-popup-html-body-error{
	color:  red;
	font-style: italic;
	display:  none;
}