#loading-indicator {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  box-sizing: border-box;
  font-size: 1px;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 2147483646;
}
#loading-indicator::before {
  background: rgba(0, 0, 0, 0) url(loading.gif) no-repeat scroll center center;
  box-sizing: border-box;
  content: "";
  height: 70px;
  left: 50%;
  margin-left: -35px;
  margin-top: -70px;
  position: absolute;
  top: 50%;
  width: 70px;
  z-index: 2;
}
#loading-indicator::after {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 5px;
  box-sizing: border-box;
  color: #000000;
  content: "Processing, may take up to 30 seconds...";
  font-family: arial;
  font-size: 17px;
  height: 150px;
  left: 50%;
  line-height: 22px;
  margin-left: -143px;
  margin-top: -75px;
  padding-top: 88px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 290px;
  z-index: 1;
}
label.error, .parsley-error-list {
  color: red;
  display: none !important;
}
input.error , select.error {
  border: 2px solid red!important;
    /*box-shadow: 0 0 0 3px rgba(255,0,0,0.5) !important;*/
    /*border: 2px solid red!important;*/
   
}
.field__input--iframe-container input.error{
    /*box-shadow: 0 0 0 3px rgba(255,0,0,0.5) !important;*/
    /*border: 2px solid red!important;*/
   
}
.field__input.error{
    /*box-shadow: 0 0 0 3px rgba(255,0,0,0.5) !important;*/
    border: 2px solid red!important;
   
}
.field__input.valid, select.valid, input.valid {
    border: 2px solid green!important;
}

#error_handler_overlay, #app_common_modal {
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
    background: #333;
    background: rgba(255,255,255,0.8);
    display: none;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

#app_common_modal .app_modal_body {
    margin: 100px auto;
    min-width: inherit;
    width: 95%;
    max-width: 600px;
    min-height: 400px;
    color: #333;
    padding: 2.5%;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    position: relative;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

#error_handler_overlay_close, #app_common_modal_close {
    position: absolute;
    right: -10px;
    top: -10px;
    color: #FFF;
    background-color: #333;
    border: 2px solid #FFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    line-height: 30px;
    padding: 0;
    margin: 0;
}

#app_common_modal .app_modal_body iframe {
    min-height: 400px;
    width: 100%;
    border: 1px solid rgb(213, 214, 239);
}