/*
 * Simple Modal Default Styles
 *
 * Author: Vanessa Coles
 * Description: Some basic default styles for Simple Modal.
 --------------------------------------------------------- */

.modal-content {
	position: relative;
	border-radius: 3px;
	box-shadow: 0 15px 50px rgba(0,0,0,.25);
}

.modal-header,
.modal-body,
.modal-footer {
	padding: 15px 25px;
}

/* Modal Header */

.modal-header {
	border-bottom: 1px solid rgba(0,0,0,.1);
}

.modal-title {
	font-size: 1.75em;
	font-weight: 600;
}

/* Modal Body */

.modal-body {
	line-height: 1.65;
}

.modal-body p {
	font-size: 14px;
	margin-top: 0;
}

.modal-body p:last-child {
	margin-bottom: 0;
}

/* Modal Footer */

.modal-footer {
	background: rgba(0,0,0,.03);
	text-align: right;
}

/* Modal Buttons */

.close-icon {
	webkit-appearance: none;
	appearance: none;
	position: absolute;
	top: -15px;
	right: -15px;
	width: 35px;
	height: 35px;
	color: #fff;
	font-size: 14px;
	background: #222;
	border: none;
	outline: none;
	border-radius: 50%;
	cursor: pointer;
	vertical-align: middle;
}

.modal-footer button {
	webkit-appearance: none;
	appearance: none;
	padding: 0 25px;
	height: 40px;
	font-size: 14px;
	font-weight: bold;
	border: none;
	outline: none;
	border-radius: 2px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}

.modal-footer .close-button {
	color: #fff;
	background: #e83030;
	transition: all .3s ease-in-out;
}

.modal-footer .close-button:hover
.modal-footer .close-button:focus {
	background: #e62121;
}