.modal-overlay {
  background: rgba(255, 255, 255, 0.85);
  height: 100%;
  left: 0;
  display: flex;
  overflow: auto;
  padding: 1.5em;
  position: fixed;
  top: 0;
  transition: opacity .2s;
  width: 100%;
  z-index: -1; visibility:hidden;
}

.modal-overlay[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
}

.modal-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  z-index: 102;
}

.modal-content {
  background: #fff; border:3px solid #cc3300;
  margin: auto;
  max-width: 1072px;
  overflow: auto;
  overflow-x: hidden;
  padding: 3.5em;
  position: relative;
  transform: scale(0.8);
  transition: transform .3s;
  width: 100%;
}

.modal-overlay[aria-hidden="false"] .modal-content {
  transform: scale(1);
}


.btn-close {
    background: none;
    border: none;
    cursor: pointer;
    font-family: arial;
    font-size: 2em;
    font-weight: 800;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0px;
    z-index: 2;
    width: 50px;
    height: 50px;
    color: #e31b23;
}


.btn-close:focus {
  outline: 1px dotted;
}


*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: arial;
}

.content-area {
  margin: auto;
  max-width: 1072px;
  padding: 20px;
}

#modal_holder span {display: block;
color: #636363;
font-size: 21px;
padding-bottom: 12px;
font-family: "Lato",sans-serif;
font-weight: 300; margin:40px 0}


#modal_title {
    font-family: "Times New Roman", Times, serif;
    color: #cc3300;
    font-size: 35px;
}
div.errormessage {color:#e31b23;display:none; font-size:12px; padding-top:20px;}
div#modal_window input {text-transform: none;}
div#modal_window input:focus  {color: #4d4d4d;}