.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    height: 100vh;
    display: none;
}
.modal-active {
    display: flex !important;
}

.modal__inner {
    width: 75%;
    position: relative;
    border-radius: 10px;
    background: #fff;
    max-height: 80vh;
    margin: 10vh auto;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    padding: 20px;
}
.modal-active .modal__inner {
    opacity:1;
}

/* Modal Content/Box */
.modal__content {
    overflow-y: auto;
    max-height: 100%;
}

.modal .summary, .modal .entry-title {
    margin-top: 0;
}

.bpqv__btn {
    cursor: pointer;
}
/* The Close Button */
.bpqv__btn-close {
    background: #606061;
    color: #FFFFFF;
    height: 25px;
    line-height: 23px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}
.bpqv__btn-close:hover,
.bpqv__btn-close:focus { background: #00d9ff; }