.new-user-message,
.site-overlay {
	transition: opacity .2s linear, visibility .2s linear;
}

.new-user-message {
	background: #fff;
	position: fixed;
	top: 50%;
	left: 50%;
	width: calc(100% - 20px);
	transform: translate(-50%, -50%);
	max-width: 740px;
	z-index: 9;
	box-shadow: 0px 0px 21px rgba(0, 0, 0, .41);
}

.new-user-message div {
	padding: 20px;
	position: relative;
	font-size: 16px;
	line-height: 1.5;
}

.new-user-message div h1 {
	color: #404041;
	font-size: 42px;
}

.new-user-message div p {
	margin-bottom: 20px;
}

.new-user-message div:before {
	content: "+";
	position: absolute;
	top: 5px;
	right: 12px;
	color: #b3272d;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	transform: rotate(-45deg);
	cursor: pointer;
}

.site-overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(117, 117, 117, .4);
	z-index: 8;
}

.hide-user-message .new-user-message,
.hide-user-message .site-overlay {
	opacity: 0;
	visibility: hidden;
}

@media screen and (min-width: 768px) {
	.new-user-message div {
		padding: 30px 40px 40px;
	}
}