body{
    margin:0;
}

#messageContainer {
	z-index: 9002;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
}

#messageBackground {
	outline: 0;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background-color: rgba(0, 0, 0, .8);
	z-index: 8000;
}

#messageInner {
	width: 565px;
    max-width: 98%;
	max-height: 98%;
	background-color: #0e0e0e;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 8001;
	display: flex;
	flex-direction: column;
}

#messageTop {
	height: 46px;
	padding: 0 10px;
	background-color: #1c1c1c;
	flex-shrink: 0;
	display: flex;
	/*justify-content: flex-end;*/
	align-items: center;
}

#messageTopDiv{
	width: 100%;
}

#messageTopText{
	font-family: "Cobold";
    font-size: 27px;
	color: #fff;
}

#messageClose {
	margin: 0;
	padding: 0;
	width: 15px;
	height: 15px;
	cursor: pointer;
	display:none;
	/*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAPCAMAAABHoLaVAAABLFBMV…LwGBO/vfJdxsTfPoHwO5TvOvcXQHAXSFqnT4D/6EvaH+/4BXFfZmQQzZtAAAAAAElFTkSuQmCC) 0 no-repeat;*/
}

#messageMiddle {
    margin: 0 3.5vw;
    padding: 20px 2vw;
    flex-grow: 1;
    overflow: visible;
    border-bottom: 1px solid #282828;
}

#messageText {
	color: #fff;
	margin: 0;
	padding: 0;
	font-family: "Roboto";
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	word-wrap: break-word;      /* IE 5.5-7 */
	white-space: -moz-pre-wrap; /* Firefox 1.0-2.0 */
	white-space: pre-wrap;      /* current browsers */
}

#messageBottom {
	min-height: 56px;
	padding: 13px 10px 0 0;
	flex-shrink: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	border-bottom: 2px solid #434343;
}

.messageButton {
	position: relative !important;
	min-width: 102px;
	height: 30px;
	padding: 0 20px;
	margin: 0 0 13px 10px;
	border: 1px solid #60be00;
	border-radius: 6px;
	flex-shrink: 0;
	color: #60be00;
	font-size: 18px;
	font-family: "Roboto";
	line-height: 30px;
	text-align: center;
	cursor: pointer;
}

.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
                      supported by Chrome, Opera and Firefox */
}