/* Z-index of #mask must lower than #boxes .window */
#mask {
  position: fixed;
  z-index: 9000;
  background-color: #000;
  display: none;
  top: 0;
  left: 0;
  opacity: 0.7;
}
  
#dialog-modal #dialog-posts-form {
  position: fixed;
  width: 500px;
  display: none;
  z-index: 9999;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
}

#dialog-modal #dialog-posts-form fieldset{
  border: none;
  padding: 0;
}

#dialog-modal #dialog-posts-form label{
  display: none;
}

#dialog-modal #dialog-posts-form input[type=text], #dialog-modal #dialog-posts-form textarea{
  font-size: 14px;
  margin: 5px 0;
  border-radius: 5px;
}

#dialog-modal #dialog-posts-form .disabled {
  opacity: 0.5;
  cursor: wait;
}

#dialog-modal #dialog-posts-form #form-messages {
  font-size: 14px;
  font-family: roboto;
  line-height: 18px;
  border-radius: 5px;
  opacity: 0;
  transition: all 1s ease;
}

#dialog-modal #dialog-posts-form #form-messages.spinner {
  background: url(/wp-includes/js/thickbox/loadingAnimation.gif) no-repeat;
  background-size: 100% 12px;
  opacity: 1 !important;
  margin: 5px 0;
  padding: 6px;
}

#dialog-modal #dialog-posts-form #form-messages.success{
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  opacity: 1;
  margin: 5px 0;
  padding: 10px;
}

#dialog-modal #dialog-posts-form #form-messages.error{
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
  opacity: 1;
  margin: 5px 0;
  padding: 10px;
}

#dialog-modal .close{
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #000;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  line-height: 22px;
  text-decoration: none !important;
  font-family: Arial, Baskerville, monospace;
}