/*MODAL WINDOW*/

.modal_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .75);
  z-index: 100000;
  padding-top: 315px;
  top: 0;
}

.close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  z-index: 5;
}

.modal_contents {
	width: 480px;
	box-sizing:border-box;
	padding: 30px;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	z-index: 100001;
	background-color: #fff;
	max-height: 90%;
	overflow-y: auto; 
}

.modal_contents .heading {
	font-size: 18px;
	font-family: arial;
	color: #ff4019;
	font-weight: bold;
	margin-bottom: 25px;
}

.modal_contents .description {
	color: #252525;
	margin-bottom: 20px;
}

.modal_contents .description p {
	margin-bottom: 10px;
}

.modal_controls {
	text-align: center;
}

.modal_controls a {
	color: #3399ff;
  	text-decoration: none;
  	border-bottom: 1px solid rgba(51,153,255, 0.3);
}

.modal_controls a:first-child {
	margin-right: 30px;
}

.modal_controls a:hover {
	border-bottom: none;
}