/*
/faq/popup-style.css.php
displaying popup style in template-faq
 */

.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
}

.popup-content{
    background-color: #fff;
    padding: 20px 40px;
}

.popup-content iframe {
    padding-bottom: 100px;
    width: 100%;
    height:100vh;
}


.close {
    color: var(--button-color, #aaa);
    float: right;
    font-size: 56px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.no-scroll {
    overflow: hidden;
}
