.inside{
	padding: 3em;
}

a#help_trigger{
	
	cursor:pointer;
	text-decoration:none;
	color:#000;
	border:none;
	
}
	
div.help_trigger_modal_overlay{
	
	width:100%;
	height:100%;
	display:block;
	position:absolute;
	top:0;
	left:0;
	background-color:rgba( 255, 255, 255, 0.7 );
	
}

div.help_trigger_modal{
	
	width:700px;
	height:500px;
	position:absolute;
	left:50%;
	top:50%;
	margin-top:-250px;
	margin-left:-350px;
	background-color:#fff;
	box-shadow:2px 3px 5px 1px #666;
	
}

div.help_trigger_modal div.header{
	
	width:100%;
	display:block;
	height:30px;
	background-color:#3cba54;
	color:#fff;
	line-height:30px;
	padding-left:5px;
	box-sizing:border-box;
	font-size:13px;
	font-weight:bold;
	position:relative;
	
}

div.help_trigger_modal div.header div.close{
	
	position:absolute;
	right:5px;
	top:2px;
	width:20px;
	height:20px;
	cursor:pointer;
	
}

div.help_trigger_modal div.header div.close:before{
	
	height:20px;
	width:20px;
	font-size:20px;
	text-align:center;
	line-height:20px;
	font-family:FontAwesome;
	content:'\f00d';
	color:#fff;
	
}

div.help_trigger_modal div.modal_contents{
	
	height:calc( 100% - 30px );
	width:100%;
	overflow-x:hidden;
	overflow-y:auto;
	padding:20px;
	box-sizing:border-box;
	position:relative;
	
}

div.help_trigger_modal div.modal_contents div.spinner{
	
	position:absolute;
	left:50%;
	top:50%;
	margin-left:-15px;
	margin-top:-15px;
	width:30px;
	height:30px;
	background-image:url( /templates/modal2/assets/images/spinner.gif );
	background-repeat:no-repeat;
	background-size:30px 30px;
	background-position:center center;
	
}

div.help_trigger_modal div.modal_contents div.ajax_response{
	
	display:block;
	height:auto;
	width:100%;
	
}

div.help_trigger_modal div.modal_contents div.ajax_response p{
	
	margin:0;
	line-height:25px;
	font-size:13px;
	
}

div.help_trigger_modal div.modal_contents div.ajax_response h1{
	
	margin:0;
	margin-bottom:15px;
	width:100%;
	display:block;
	font-size:26px;
	font-weight:bold;
	
}

div.help_trigger_modal div.modal_contents div.ajax_response h2{
	
	margin:0;
	margin-bottom:15px;
	width:100%;
	display:block;
	font-size:20px;
	font-weight:bold;
	
}

div.help_trigger_modal div.modal_contents div.ajax_response h3{
	
	margin:0;
	margin-bottom:10px;
	width:100%;
	display:block;
	font-size:16px;
	font-weight:bold;
	
}

@media(max-width:699px){
	
	
	div.help_trigger_modal{
		
		width:100%;
		height:100%;
		position:absolute;
		left:0;
		top:0;
		margin-top:0;
		margin-left:0;
		background-color:#fff;
		border:none;
		box-shadow:none;
		
	}
	
}