/* Front-end styles for Bio Popups */

.bp-bio-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.bp-bio-popup-overlay.bp-active {
    display: flex;
}

.bp-bio-popup-content {
    position: relative;
    background: #ffffff;
    padding: 20px;
    max-width: 50%;
    max-height: 90%;
    overflow: auto;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bp-bio-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
     
    border: none;
    background: #333;
    color: #fff!important;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
}

.bp-bio-popup-close:hover {
    background: #555;
}
button.bp-bio-popup-close  {padding: 5px!important;}
@media screen and (max-width: 991px) {
  max-width: 90%;
}