.popup-content {
    background: #ffffff;
    border: 1px solid #ffffff;
}

.exit-intent-popup {
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99999;
    background: rgba(33, 33, 33, 0.8);
    transform: translateY(60%) scale(0);
}

.exit-intent-popup.visible {
    transform: translateY(0) scale(1);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-content p {
    color: #52B8F6;
    font-size: 1.5vw;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2vw;
}

.popup-content h2 {
    font-size: 2.5vw;
}

.mb-l-dynamic {
    margin-bottom: 3vw;
}

.mt-l-dynamic {
    margin-top: 3vw;
}

.mb-m-dynamic {
    margin-bottom: 1.5vw;
}

.mt-m-dynamic {
    margin-top: 1.5vw;
}

.mb-s-dynamic {
    margin-bottom: .75vw;
}

.mt-s-dynamic {
    margin-top: .75vw;
}

.popup-content button {
    margin: 1vw;
    margin-bottom: 0;
    margin-right: 1.5vw;
}

.popup-content .img-col {
    margin: 0;
    padding: 0;
}

.popup-content img {
    width: 100%;
}

.popup-content a {
    text-decoration-line: none;
}

.popup-content input {
    font-size: 1.25vw;
    height: 3.5vw;
    line-height: 0vw;
}

/*Mobile Styling*/

 @media screen and (max-width: 767px) {
    .popup-content {
        width: 90vw;
    }
    .popup-content input {
    font-size: 4.25vw;
    height: 8.5vw;
    line-height: 0vw;
    margin-bottom: 2rem;
}
.right-side-popup-content {
    height: auto !important;
  }
  .popup-content h2 {
    font-size: 8.5vw;
}
.popup-content p {
    color: #52B8F6;
    font-size: 4.5vw;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2vw;
}
.popup-content button {
    margin: 1vw;
    margin-bottom: 0;
    margin-right: 3.5vw;
}    
.close {
    font-size:3.5rem;
}

}