#ouibounce-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
  }
  #ouibounce-modal .underlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    cursor: initial;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
  }
  #ouibounce-modal .modal {
    width: 650px;
    height: 400px;
    background: #fff url(https://vboblobprod.blob.core.windows.net/awsvboticketscom/_images/site/graphics/slides-stack.png) no-repeat;
    background-size: 300px;
    background-position: 0px 265px;
    border-radius: 33px;
    box-shadow: 0 14px 25px rgba(0,0,0,.25);
    z-index: 1;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation: popin 0.3s;
    animation: popin 0.3s;
  }
  #ouibounce-modal.home-exit .modal { 
    background: #fff url(https://vboblobprod.blob.core.windows.net/awsvboticketscom/_images/site/graphics/salesteamheads.png) no-repeat;
    background-size: 320px;
    background-position: -22px 265px;
  }
  #ouibounce-modal .modal-body {
    padding: 20px 35px 0;
    font-size: 0.9em;
    text-align: center;
  }
  #ouibounce-modal .modal-form {
    padding: 0 35px 20px 35px;
  }
  #ouibounce-modal .modal-form .cog-button,
  #ouibounce-modal .modal-form .cog-page__navigation { 
    margin-top: 0; 
  }
  #ouibounce-modal .modal-form .cog-cognito--styled input[type=text] { 
    border-color: #86bc25;
    border-width: 2px;
  }
  #ouibounce-modal .modal-form .cog-cognito--styled input[type=text]:focus {
    border-color: #0f66b8;
  }
  #ouibounce-modal .modal-form .cog-helptext p { 
    font-size: small; 
  }
  #ouibounce-modal .modal-footer {
    position: absolute;
    bottom: 20px;
    text-align: right;
    width: 100%;
    right: 45px;
  }
  #ouibounce-modal .modal-footer p {
    text-transform: capitalize;
    font-size: 12px;
    color: #999;
    cursor: pointer;
    display: inline;
    border-bottom: 1px dashed #999;
  }
  #ouibounce-modal .modal-footer p:hover { 
    border: none;
   }

  /* Mailchimp */
  #ouibounce-modal .modal-form #mc_embed_signup .mc-field-group input:focus {
    border-color: #0f66b8;
  }
  #ouibounce-modal .modal-form #mc_embed_signup .mc-field-group,
  #ouibounce-modal .modal-form #mc_embed_signup #mce-responses {
    margin: 0 auto;
    width: 80%;
  }
  #ouibounce-modal .modal-form #mc_embed_signup .mc-field-group input {
    border-color: #86bc25;
    border-width: 2px;
    padding: 12px 0;
  }
  #ouibounce-modal .modal-form #mc_embed_signup .mc-field-group input.mce_inline_error {
    border-color: #e85c41;
  }
  #ouibounce-modal .modal-form #mc_embed_signup div#mce-responses,
  #ouibounce-modal .modal-form #mc_embed_signup #mce-success-response {
    margin: 0;
    padding: 0;
    color: #000;
    font-weight: normal;
    float: none;
    width: 100%;
  }
  #ouibounce-modal .modal-form #mc_embed_signup {
    background: transparent; 
    clear:left; 
    font:14px Helvetica,Arial,sans-serif;
    width: 100%;
  }
  #ouibounce-modal .modal-form #mc_embed_signup form {
    margin: 0;
  }
  #ouibounce-modal .modal-form .mc-button {
    background: #86bc25;
    padding: 10px 15px;
    border: none;
    color: #fff;
    font-size: 16px;
    margin: 0 53px 0 0;
    cursor: pointer;
  }
  #ouibounce-modal .modal-form .mc-button:hover {
    background: #777;
  }
  #ouibounce-modal .modal-form #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    position: absolute;
    bottom: -22px;
  }
  
  @-webkit-keyframes fadein {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  @-ms-keyframes fadein {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  @keyframes fadein {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes popin {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }
  
    85% {
      -webkit-transform: scale(1.05);
      transform: scale(1.05);
      opacity: 1;
    }
  
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
  }
  @-ms-keyframes popin {
    0% {
      -ms-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }
  
    85% {
      -ms-transform: scale(1.05);
      transform: scale(1.05);
      opacity: 1;
    }
  
    100% {
      -ms-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes popin {
    0% {
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }
  
    85% {
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05);
      opacity: 1;
    }
  
    100% {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
  }