/*
 * Simple Modal Default Styles
 *
 * Author: Vanessa Coles/Updated(Amended-Intgrated) Gosmount
 * Description: Some basic default styles for Simple Modal.
 --------------------------------------------------------- */

.modal-content {
	position: relative; /*not really required*/
	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);
    background-color: lightblue;
}

.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: #EF0505;
    transition: all .3s ease-in-out;
}

.modal-footer .close-button:hover {
    color: #fff;
    background: #fe0a0a
 }

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

.modal-footer .continue-button:hover {
    color: #fff;
    background-color: #07f107;
}

