.c-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 100vw;
  top: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transition: left 15s, opacity 0.35s;
  transition-delay: 0.1s;
  pointer-events: none;
}
.c-overlay.is-visible {
  left: 0;
  opacity: 1;
  z-index: 600;
  transition: left 0s, opacity 0.35s;
  pointer-events: auto;
}
.c-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: white;
  transform: translate(-50%, -50%);
  width: 75%;
  /*max-width: 102.4rem;*/
  max-height: 100%;
  overflow: auto;
  z-index: 620;
  padding: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  border-radius: 5px;
  opacity: 0;
  visibility: none;
  transition: opacity 0.35s;
  pointer-events: none;
}
.c-modal.is-visible {
  opacity: 1;
  visibility: auto;
  pointer-events: auto;
}
.c-modal input {
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.c-modal input[type=submit],
.c-modal button {
  padding: 10px;
  width: 40%;
  color: #009d57;
}
.c-modal input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.c-modal button {
  float: right;
}
.c-modal .actionBtns {
  margin-top: 10px;
}
.c-modal h1 {
  color: #009d57;
}
.c-modal p{
    margin:0;
}