/*
 * Simple Modal Styles
 *
 * Author: Vanessa Coles
 * Description: Required styles for Simple Modal.
 --------------------------------------------------------- */

/* Default Modal Styles */

.modal-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.75);
	z-index: 10;
}

.modal {
	display: none;
	position: fixed;
	top: 45%;
	left: 50%;
	padding: 0 25px;
	max-width: 600px;
	width: 100%;
	box-sizing: border-box;
	z-index: 999999;
	visibility: hidden;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o--transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;
}

.modal-content {
	background: #fff;
}

.modal-title {
	margin: 0;
}