/*** Modal Window ***/
.ui-widget-overlay {
  background: #000;
  opacity: .75;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}
.ui-dialog {
  background: #fff;
  padding: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .75);
  z-index: 25;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
}
.ui-dialog-titlebar {
  padding: 0 8px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 40px;
}
.ui-button {
  background: url(https://timothyplan.com/images/modal-close.svg) no-repeat center #fff;
	color: gray;
  border: none;
  text-indent: -100px;
  overflow: hidden;
  float: right;
  width: 50px;
  height: 50px;
  margin-top: 8px;
}
.ui-button-text {
	font-size: 12px;
}
.ui-dialog-content, .ui-dialog-content img {
  padding: 10px 20px
}
.ui-dialog-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #333;
}
a.ok {
  background: url(ext_link_icon.png) no-repeat 96% center #090;
  background-color: #548aa3;
  padding: 5px 40px 5px 15px;
  text-decoration: none;
  color: #fff;
  border-color: #548aa3;
  border: 2px solid;
  outline: none;
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 7px 14px;
  margin-bottom: 20px;
  line-height: 50px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-overflow: fade;
}
a.ok:hover {
  background-color: gray;
}
.text-center {
  text-align: center
}