/* PRIMARY FRONTEND STYLES IN STYLE.CSS FILE UNDER "SECTION TABS MODULE" */



/** Displays inactive tabs in the Visual Builder so you can edit the content **/


#et-fb-app .tabcontent {
    position: relative !important;
    top: 0;
    left: 0;
    display: block !important;
}

/* Indication of Inactive Tab */
#et-fb-app .tabcontent:not(.active-tab):before {
    content: 'Inactive Tab (Visible for Editing) ▼';
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    position: relative;
    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;
    color: #fff;
    pointer-events: none;
    border-radius: 20px;
}
