.displayTemplate {
    width: 100%;
    height: 100%;
    display: block;
}

    .displayTemplate .freeStyle {
        background-color: var(--color-surface);
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }


.displayTemplate .freeStyle .moveableChildText h1 {
    font-size: 1em;
    margin-top: 3px;
    margin-bottom: 3px;
}

    .displayTemplate .footer {
        background-color: var(--color-primary);
        color: white;
        position: relative;
        left: 0;
        bottom: 0;
        height: 50px;
        width: 100%;
        overflow: hidden;
    }

.displayTemplate .oneColumn.Unspecified {
    background-color: var(--color-surface);
    color: var(--color-text-base);
    text-align: center;
    vertical-align: central;
}

.displayTemplate  .twoColumns {
        display: inline-grid;
        grid-template-columns: auto auto;
        background-color: white;
        width: 100%;
    }
    .twoColumns > div {
        border-color: var(--color-border);
        padding: 3px;
    }

.displayTemplate .threeColumns {
    display: inline-grid;
    grid-template-columns: auto auto auto;
    background-color: white;
    width: 100%;
}
.displayTemplate .threeColumns > div {
    border-color: var(--color-border);
    padding: 3px;
}

.displayTemplate .oneColumn {
    display: block;
    background-color: var(--color-accent-tint);
    position: relative;
    padding: 3px;
    width: 100%;
}
.displayTemplate .oneColumn img{
    height: 100%;
    width: 100%;
}

.displayTemplate .twoColumns .oneColumn,
.displayTemplate .threeColumns .oneColumn {
    display: table-cell;
    height: 100%;
}

.displayTemplate .moveableChildText {
    font-size: large;
}

.displayTemplate .banner {
    display: inline-block;
    background-color: var(--color-surface);
    color: var(--color-text-heading);
    text-align: center;
    width: 100%;
    height: 40px;
    font-size: larger;
}
