.exit-intent-popup {
     position: fixed;
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     z-index: 1;
     background: #a93f54e9 !important;
     opacity: 0;
     transition: all 0.3s ease-in-out;
     visibility: hidden;
}

.popup {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background-color: white;
     padding: 50px;
     border-radius: 13px;
     display: block;
     max-width: 600px;
     width: 70%;
}

.popup svg {
     background-color: red;
     height: 20px;
     width: 20px;
}

.exit-intent-popup.visible {
     opacity: 1;
     transition: all 0.3s ease-in-out;
     visibility: visible;
     z-index: 999;
}

.exit-intent-popup {
     transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     transition: all 0.3s ease-in-out;
}

.popup .ctafootercontent {
     width: -webkit-fit-content;
     width: -moz-fit-content;
     width: fit-content;
     margin-top: 30px;
}

img.close {
     transform: scale(0.7);
     padding: 20px;
}

img.close:hover {
     cursor: pointer;
}

.popup img {
     margin-bottom: 12px;
}

.popup h3 {
     font-size: 2.4rem;
     -webkit-hyphens: none;
     -ms-hyphens: none;
     hyphens: none;
}

@media (max-width: 590px) {
     .popup h3 {
          font-size: 1.4rem;
          -webkit-hyphens: auto;
          -ms-hyphens: auto;
          hyphens: auto;
     }
}

.popup p {
     text-align: center;
}
