/* PRIMARY STYLES IN CHILD THEME STYLE.CSS FILE */


/**** POPUP MODAL ****/

/** Displays modal in the Visual Builder so you can edit the content **/
#et-fb-app .modal-popup {
    position: relative !important;
    top: 0;
    left: 0;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: initial !important;
    transform: none !important;
}

/* "Visible for Editing" Message */
#et-fb-app .modal-popup:not(.active-modal):before {
    content: 'Popup Modal (Visible for Editing) ▼';
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    position: absolute;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: fit-content;
    padding: 5px 17px;
    margin: auto;
    text-align: center;
    z-index: 99;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid #929292;
    border-top: none;
    color: #fff;
    pointer-events: none;
    border-radius: 0 0 20px 20px;
}
