/* Exit Intent */
.eep_lightbox {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 2147483641;
    top: 0;
    left: 0;
    display: none;
  }
  .eep_lightbox_back {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
  }
  .eep_content > .wp-block-media-text {
    min-height: 350px;
  }
  .eep_content {
    background-color: #f8f8f8;
    z-index: 10000000002;
    position: relative;
    max-width: 700px;
    margin: 160px auto 30px;
    opacity: 0;
    top: 10px;
    transition: 0.3s;
    display: none;
    max-width: 950px;
    padding:2em;
  }
  .eep_content.active {
      opacity: 1;
      top: 0;
  }
  .eep_content h3 {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .eep_content *:last-child {
    margin-bottom: 0;
  }
  .eep_close {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #f8f8f8;
    cursor: pointer;
  }
  .eep_close::before,
  .eep_close::after  {
    content:'';
    display: block;
    height:2px;
    width:20px;
    background-color:black;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 50%;
  }
  .eep_close::after  {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }



@media only screen and (max-width: 600px) {
    .eep_content {
      margin-top: 60px;
    }
    .eep_content h3 {
        font-size: 8.5vw !important;
      }
      .eep_close {
        border-radius: 50%;
        scale: 0.7;
        background-size: 26px;
      }
  }