.fbeModalBg {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100vw;

    height: 100vh;

    background-color: rgba(0,0,0,0.7);

    z-index: 99999;

    justify-content: center;

    align-items: center;

}



.fbeModalBg.visible {

    display: flex;

}



.fbeModalContent {

    padding: 20px;

    color: #ffffff;

    background-color: #011058;

    border-radius: 5px;

    z-index: 100000;

    max-width: 80%;

    min-width: 400px;

    max-height: 80vh;

    min-height: 200px;

    overflow: auto;

}