.bh-inline-tile {
    width: 100%;
    display: flex;

    .bh-tile:first-child {
        margin-right: 10px;
    }

    .bh-tile:last-child {
        margin-left: 10px;
    }
}

.bh-tile {
    border-radius: 5px;
    //font-family: 'Avenir-Book';
    padding: 20px;
    margin-top: 20px;
    width: 100%;
    border: 1px solid var(--bh-black-04);

    &.bh-tile-25 {
        width: 25%;
    }

    &.bh-tile-75 {
        width: 75%;
    }

    &.filled {
        background: var(--bh-black-09);
        border: none;
    }

    &.warning {
        border: 2px solid var(--bh-rating);
    }

    &.error {
        border: 2px solid var(--bh-error);
    }

    .bh-row {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: baseline;
        margin-bottom: 48px;

        &.align-center {
            align-items: center;
        }

        &.bh-row-label {
            margin-bottom: 10px;
            align-items: baseline;
            justify-content: flex-start;

            .row-label {
                width: var(--container-column-width);
            }

            .row-value {
                //font-family: 'Avenir-Heavy';
                font-weight: bold;
            }
        }

        .row-item-label {
            width: var(--container-column-width);
        }

        .row-item-value {
            width: var(--container-column-width);
            //font-family: 'Avenir-Heavy';
            font-weight: bold;
        }

        .bh-col:first-child {
            margin-left: 0;
        }

        .bh-col:last-child {
            margin-right: 0;
        }

        .bh-col {
            width: 100%;
            margin: 0 24px;

            &.bh-col-25 {
                width: 25%;
            }

            &.bh-col-75 {
                width: 75%;
            }
        }
    }

    .bh-row:first-child {
        margin-top: 10px;
    }

    .bh-row:last-child {
        margin-bottom: 10px;
    }

    .bh-row:only-child {
        margin-bottom: 10px;
    }
}
