@import './globals.scss';

.Overlay{
    position: fixed;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    z-index: 20;
    display: flex;

    .dimmed{
        position: absolute;
        top:0;
        left:0;
        background-color: rgba(55,55,55,.72);
        width: 100%;
        height: 100%;
        z-index: 25;
    }

    .ctx{
        max-width: 1140px;
        max-height: 80vh;
        margin: auto;
        box-sizing: border-box;
        border-radius: inherit;
        z-index: 99;
        overflow: hidden;
        overflow-y: auto;
    }

    .actions{
        max-width: 1140px;
        width: 100%;
        margin: 0 auto;
    }
}