.bg__target-header {
    border-left: 3px solid $clGreyTint;
    padding: 10px 30px 10px 7px;
    font-size: 14px;
    font-weight: bold;
    font-family: $fontHeading;
    cursor: pointer;
    transition: background-color 0.3s ease-out, border-color 0.3s ease-out;

    background-image: $arrowDownDarkUrl;
    background-position: right 9px center;
    background-repeat: no-repeat;
    background-size: 12px;

    &:hover {
        background-color: $clGrey;
    }

    &.active {
        background-color: $clGrey;
        background-image: $arrowUpDarkUrl;
        border-left: 3px solid $clPrimary;
        &:hover {
            background-color: white;
        }
    }

    > .left {
        > .title {
            text-transform: uppercase;
        }
        .fas {
            width: 20px;
            margin-right: 0px;
            padding-right: 10px;
            padding-left: 0;
            box-sizing: border-box;
        }

        .bg__info {
            padding-right: 0;
        }
    }

    > .count {
        float: right;
        vertical-align: middle;
        font-size: 12px;
        line-height: 12px;
        color: white;
        background-color: $clPrimary;
        border-radius: 15px;
        padding: 3px;
        min-width: 18px;
        text-align: center;
    }
}
