    .objectCreateTop {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10;
        height: 40px;
    }

    /*This is our main wrapping element, it's made var(--app-height) high to ensure it is always the correct size and then moved into place and padded with negative margin and padding*/
    .objectCreateContainer {
        display: flex;
        overflow: hidden;
        height: calc(var(--app-height) - 80px);
        margin-bottom: -50px;
        padding-bottom: 50px;
        position: relative;
        width: 100%;
        backface-visibility: hidden;
        will-change: overflow;
    }

    .objectCreateBody {
        overflow: auto;
        height: auto;
        padding: 0;
        width:100%;
    }

    .objectCreateBottom {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 10;
        height: 50px;
        font-size: 8pt;
        color: white;
        text-align: center;
    }

    .objectCreateheader {
        background-color: #2a70b9;
        text-align: left;
        font-size: small;
        font-weight:normal;
        line-height: 35px;
        color: ghostwhite;
        text-shadow: 1px 1px 1px black;
    }