.screen{
	position:absolute;
	overflow:hidden;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	z-index: -1;
	visibility:hidden;
	transform:translate(-150%, -150%);
}
.screen.active{
	z-index: 2;
	visibility:visible;
	transform:none;
}
.application--has-menu .screen{
	top: 50px!important;
}

.screen__overlay{
	position:absolute;
	z-index:2;
	width:100%;
	height:100%;
	top:-99999px;
	left:-99999px;
	background:rgba(0,0,0,0.2);
}
.screen.active .screen__overlay{
	top:0px;
	left:0px;
}

.subscreen{
	visibility:hidden!important;;
}
.screen.active .subscreen.active{
	visibility:visible!important;;
}
.fullscreen .fullscreen__on{
	display:inherit;
}
.fullscreen .fullscreen__off{
	display:none;
}
.fullscreen.active .fullscreen__on{
	display:none;
}
.fullscreen.active .fullscreen__off{
	display:inherit;
}

.screen__page > .content{
	position:absolute;
	z-index:3;
	top:20px;
	bottom:20px;
	left:20px;
	right:20px;
	padding:20px;
	background:#fff;
	overflow:hidden;
}
.content__scrollable{
	height:100%;
	overflow:auto;
	padding-right:20px;
}

.screen.invisible_mode [data-role='event-area'], .screen.invisible_mode [data-role='event-point']{
	display:none!important;
}

.formatted-description-container, .formatted-description-container *{
	font-size:1em!important;
}