#ddexitpopwrapper {
  /* dynamically generated wrapper DIV that surrounds exit pop content DIV */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

#ddexitpopwrapper .veil {
  /* dynamically generated "overlay" DIV that covers entire window when pop up is shown */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
  z-index: 1;
  display: none;
  cursor: default; }

.zindex-auto {
  z-index: auto !important; }
  .zindex-auto#main-header {
    z-index: auto !important; }

.ddexitpop {
  /* user defined exit popup DIV style */
  width: 90%;
  max-width: 700px;
  border: 10px solid #7cda24;
  padding: 10px;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  /* border: 20px solid black; */
  background: white;
  left: 0;
  -webkit-animation-duration: .5s;
  /* customize animation duration */
  animation-duration: .5s;
  /* customize animation duration */
  visibility: hidden;
  background-color: #077dc3;
  color: white;
  text-align: center; }
  .ddexitpop .close-btn p {
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer; }
    .ddexitpop .close-btn p:hover {
      color: #7cda24; }
  .ddexitpop .mc-field-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
    .ddexitpop .mc-field-group input {
      height: 2rem; }
  .ddexitpop h2 {
    color: #7cda24;
    font-weight: bold !important; }
  .ddexitpop label {
    color: #7cda24;
    font-weight: bold; }
  .ddexitpop input {
    border-radius: 8px !important;
    width: 100%; }
    .ddexitpop input:focus {
      border-color: #66afe9 !important;
      -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6) !important;
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6) !important; }
  .ddexitpop .button {
    background-color: #7cda24 !important;
    width: 96% !important;
    font-weight: bold !important;
    font-size: 18px;
    text-transform: uppercase;
    height: 2.5rem; }
    .ddexitpop .button:hover {
      background-color: #175fd9 !important; }
  @media (max-width: 479px) {
    .ddexitpop form {
      margin-top: 1rem; }
    .ddexitpop .indicates-required {
      display: none; }
    .ddexitpop .button {
      margin-top: 1rem;
      width: 100% !important; }
    .ddexitpop .headline-privacy {
      font-size: 80%;
      margin-top: 1rem; } }

.ddexitpop .calltoaction {
  /* demo button style */
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  padding: 15px;
  background: #15C5FF;
  display: block;
  width: 80%;
  font: bold 24px Arial;
  -webkit-box-shadow: 0 0 15px gray, 0 0 10px gray inset;
  box-shadow: 0 0 15px gray, 0 0 10px gray inset;
  margin: 10px auto;
  text-align: center;
  color: white !important; }

div.closeexitpop {
  /* Large x close button  */
  width: 70px;
  height: 70px;
  overflow: hidden;
  display: none;
  position: fixed;
  cursor: pointer;
  text-indent: -1000px;
  z-index: 3;
  top: 10px;
  right: 10px; }

#ddexitpopwrapper.open {
  pointer-events: auto; }

#ddexitpopwrapper.open .veil {
  /* style of veil when exit pop is open */
  display: block; }

#ddexitpopwrapper.open div.closeexitpop {
  display: block; }

#ddexitpopwrapper.open .ddexitpop {
  /* style of exit pop content DIV when exit pop is open */
  visibility: visible; }

/* #### CSS that's applied when the viewing area's height is 765px or less #### */
@media screen and (max-height: 765px) {
  .ddexitpop {
    top: 0;
    /* don't shift exit pop up upwards 100px on screens that aren't very tall */ } }
