.modal-button {
	background: #b82e54;
	color: #fff;
	padding: 20px;
	border: none;
}

/* Modal container (hidden by default) */
.cmp-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
}
/* Modal content box */
.cmp-modal-content {
	background-color: #fff;
	margin: 40px auto;
	padding: 20px;
	border: 1px solid #888;
	width: 90%;
	max-width: 500px;
	border-radius: 5px;
	position: relative;
}
/* Close button */
.cmp-modal-close {
	color: #aaa;
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}
.cmp-modal-close:hover,
.cmp-modal-close:focus {
	color: #000;
}
/* Basic form styling */
.cmp-modal-form .form-group {
	margin-bottom: 15px;
}
.cmp-modal-form label {
	display: block;
	margin-bottom: 5px;
}
.cmp-modal-form input {
	width: 100%;
	padding: 8px;
	box-sizing: border-box;
}
.cmp-modal-form button {
	background-color: #0073aa;
	color: #fff;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 3px;
}
.cmp-modal-form button:hover {
	background-color: #005177;
}
