
.hide-element { display: none!important; }
#tangent-popup-container{
    position: fixed;
    overflow-y: scroll;
}
#tangent-message-container{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}
#tangent-message-container>#subheading-configure{
    padding: 5%;
    text-align: center;
}
#tangent-popup-container::-webkit-scrollbar {
    display: none;
}
.tangent-newsletter {
    position: absolute;
    width:750px;
    padding: 0;
    height: 400px;
}
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    background: rgba(33, 33, 33, 0.8);
    transform: translateY(60%) scale(0);
    transition: transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: none;
    align-items: center;
    justify-content: center;
}
.exit-intent-popup.visible { transform: translateY(0) scale(1); }
.close{           
    font-size: 21px;
    position: absolute;
    top:0;
    right: 13px;
    cursor: pointer;
    padding: 0% 0%;
}

@media (min-width:320px)  { 
    .tangent-newsletter{
            width:310px;
            top: 15%;
    }
    .tangent-iframe-height { height:400px; }
    .close { padding-top:2%; }
    #tangent-popup-iframe{
        width: 80%;
        margin:0 auto;
        display: flex;
    }
    #tangent-popup-container{
        width: 90%;
    }
}
@media (min-width:641px)  { 
    .tangent-newsletter{
        left: 50%;
        top: 50%;
        width:750px;
        transform: translate(-50%, -50%);
    }
    .close { padding-top: 3%; }
    #tangent-popup-iframe{
        width: 100%;
    }
}