.panel.bb-panel {
    border-top: 2px solid $bb-secondary;
    border-radius: 0;
}

.bb-panel__header {
    border-bottom: 1px solid $bb-gray;
    padding: 20px;
}

.header__text {
    display: inline-block;
    overflow: hidden;
    line-height: 1.2;
    text-overflow: ellipsis;

    font-size: 18px;

    &--medium {
        font-size: 16px;
    }
}

.bb-panel__header--image {
    > * {
        vertical-align: middle;
    }

    .header__text {
        margin: 0;
        width: calc(100% - 66px);
    }

    .item-picture {
        margin-right: 10px;
        vertical-align: middle;
    }
}

.header__text__image {
    display: inline-block;
    padding: 0 10px;
}

.bb-panel__body {
    background-color: white;
    padding: 20px;
}

.bb-panel__empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.bb-panel__empty-state-message {
    color: #697180;
    font-size: 16px;
    margin-bottom: 20px;
}

.bb-panel__item {
    border-bottom: 1px solid #d2d6de;
    padding: 20px 0;

    overflow: hidden;
    text-overflow: ellipsis;

    .item__sub-heading {
        font-size: 14px;
        font-weight: 600;
        margin: 0;
    }

    .item__content--highlighted {
        font-weight: bold;
        color: $bb-secondary;
    }

    .bb-panel__item-anchor {
        color: $bb-secondary;
        font-weight: 600;
    }

    &:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.schema-form-section .bb-panel__item--inline {
    &:last-child {
        border-bottom: 1px solid #d2d6de;
    }
}

.schema-form-section .schema-form-section .bb-panel__item--inline {
    &:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.bb-panel__item__default {
    padding: 20px 0;

    .item__default {
        margin: 0;
        &--fix-linebreaks {
            white-space: pre;
        }
    }
}

.bb-panel__item--inline, .schema-form-section .bb-panel__item--inline {
    padding: 10px 0;
    margin: 0;
    line-height: 1.6;

    .item__sub-heading {
        line-height: 1.6;
        padding: 0;
    }

    &.no-border {
        border: 0;
    }
}

.bb-panel__item-header {
    margin: 0 0 5px 0;
    padding: 10px 0;
    font-size: 16px;
    color: #697180;
    border-bottom: 1px solid $bb-gray;
}

.bb-panel__item ~ .bb-panel__item-header {
    margin-top: 20px;
}

.bb-panel__item-header--image {
    margin: 0 0 10px;

    > * {
        vertical-align: middle;
    }

    .header__text {
        margin: 0 10px;
        display: inline-block;
    }

    .item-picture {
        vertical-align: middle;
    }
}

.bb-panel__item-header--inline {
    position: relative;
}

.bb-panel__item-header--inline-item {
    position: absolute;
    right: 0;
    top: 0;
}

.bb-panel__footer {
  border-top: 1px solid $bb-gray;
  padding: 20px;
}

.bb-panel__footer--no-border {
    border: 0;
}
