@charset "UTF-8";


#modal-content {
	width: 50% ;
	margin: 0 ;
	padding: 10px 20px ;
	border: 2px solid #aaa ;
	background: #fff ;
	position: fixed ;
	display: none ;
	z-index: 9999 ;
}
  
#modal-overlay {
	z-index: 9990 ;
	display: none ;
	position: fixed ;
	top: 0 ;
	left: 0 ;
	width: 100% ;
	height: 120% ;
	background-color: rgba( 0,0,0, 0.75 ) ;
}

#modal-message {
	margin: 10px 20px 20px;
}

.modal-footer {
	text-align: center;
}

.button {
	padding: 5px;
}
.button:hover {
	cursor: pointer;
	opacity: 0.8;
}
.button-ok {
	background-color: #D25972;
	color: white;
}
.button-close {
	background-color: gray;
	color: white;
}
