/*!
 * Modalon v1.0.0 | https://github.com/drihup/modalon
 * Licencia MIT
 */
body {
  overflow: auto;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 0;
  overflow: auto;
  z-index: 1010;
}
.modal-content {
  display: none;
  width: 90%;
  background-color: #FFF;
  margin: auto;
  border-radius: 4px;
  z-index: 1050;
}
@media (min-width: 768px) {
  .modal-content {
    width: 85%;
  }
}
@media (min-width: 992px) {
  .modal-content {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  .modal-content {
    width: 75%;
    max-width: 1000px;
  }
}
.modal .modal-header:after,
.modal .modal-body:after {
  display: table;
  content: " ";
  clear: both;
}
.modal .modal-header:before,
.modal .modal-body:before {
  display: table;
  content: " ";
}
.modal .modal-header,
.modal .modal-body {
  padding: 15px;
}
.modal :first-child {
  margin-top: 0;
}
.modal :last-child {
  margin-bottom: 0;
}
.modal .modal-header {
  background-color: #F8F8F8;
  border-bottom: 1px solid #EEE;
  border-radius: 4px 4px 0 0;
}
.modal .modal-body {
  border-radius: 0 0 4px 4px;
  text-align:center;
}
.modal .modal-body:first-child {
  border-radius: 4px;
}
.modal-content.fixed {
  height: 100%;
  overflow: auto;
}
.modal-content::-webkit-scrollbar {
  width: 12px;
  border-radius: 0 4px 4px 0;
}
.modal-content::-webkit-scrollbar-track {
  background-color: #EEE;
  border-radius: 0 4px 4px 0;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: #CCC;
  border: 1px solid #EEE;
  border-radius: 0 4px 4px 0;
}
.modal-close {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 20px;
	margin-top:20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	box-shadow: 1px 1px 1px #555;
}
#modal-aguarde {
	font-family:Verdana, Geneva, sans-serif;
	font-size:18px;
	padding:20px;
	text-align:center;
	color:#030;	
}
