#bread-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
div#bread-placeholder {
    border: 1px solid #D0D3D4;
    border-radius: 4px;
    color: #999;
    display: inline-block;
    position: relative;
    height: 50px;
    width: 200px;
}

div.bread-placeholder-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 50px;
    padding: 0 1em;
    bottom: 0;
}

div.bread-placeholder-center {
    text-align: center;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    display: table;
}

div.bread-placeholder-center-inner {
    display: table-cell;
    vertical-align: middle;
}

div.bread-placeholder-icon {
    display: block;
    position: absolute;
    top: -1px;
    right: -51px;
    bottom: -1px;
    left: 100%;
    margin-left: -50px;
    margin-right: 50px;
    background-color: #D0D3D4;
    background-repeat: no-repeat;
    background-image: url(../png/placeholder.png);
    background-position: center;
    background-size: auto 30px;
    border-radius: 0 4px 4px 0;
}