.BbCode .bb-broadcast {
    clear: both;
    margin: 32px 0;
    display: grid;
    gap: 50px;
}

.BbCode .bb-broadcast-head {
    display: grid;
    grid-gap: 24px;
    justify-items: start;
}
.BbCode .bb-broadcast-reverse {
    user-select: none;
    border-radius: 3px;
    background-image: url("broadcast-reverse.svg");
    background-position: calc((46px - 16px) / 2) 50%;
    background-repeat:no-repeat;
    background-size: 16px auto;
    padding: 0 20px 0 46px;
    cursor: pointer;
    line-height: 40px;
    background-color: var(--site-color-gray);
    font-style: italic;
    font-weight: bold;
    font-size: 14px;
}
.BbCode .bb-broadcast-reverse:hover{
    background-color: #E0E0E0
}
.BbCode .bb-broadcast-only_important-checkbox-circle-parent {
    cursor:pointer;
    margin-left: 16px;
    display: inline-block;
    height: 16px;
    width: 40px;
    background-color: #DBDBDB;
    border-radius: 12px;
    vertical-align: middle;
}
.BbCode .bb-broadcast-only_important {
    user-select: none;
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
    text-align: right;
    text-transform: uppercase;
}
.BbCode .bb-broadcast-only_important-checkbox {
    display: none;
}
.BbCode .bb-broadcast-only_important-checkbox-circle {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    margin: -1px -1px;
    border-radius: 50%;
    box-shadow: -1px 2px 3px 0 rgba(0,0,0,0.3);
    float: left;
}
.BbCode input:checked ~ .bb-broadcast-only_important-checkbox-circle-parent{
    background-color: #8EB838;
}
.BbCode input:checked ~ .bb-broadcast-only_important-checkbox-circle-parent .bb-broadcast-only_important-checkbox-circle{
    float:right;
    box-shadow: 1px 2px 3px 0 rgba(0,0,0,0.3);
}
.BbCode .bb-broadcast-content{
    display: grid;
    gap: 20px;
    grid-template-columns: 700px;
}
.BbCode .bb-broadcast-item {
    border: 5px solid var(--site-color-gray);
    padding: 15px 15px;
    position: relative;
}
.BbCode .bb-broadcast-item:before {
    content: '';
    position: absolute;
    top: -5px;
    left: 15px;
    width: 80px;
    height: 5px;
    background-color: var(--site-color-corporate);
}
.BbCode .bb-broadcast.onlyImportant .bb-broadcast-item{
    display: none;
}
.BbCode .bb-broadcast.onlyImportant .bb-broadcast-item.important{
    display: block;
}
.BbCode .bb-broadcast-item-head {
    display: grid;
    grid-gap: 20px;
    justify-items: start;
}
.BbCode .bb-broadcast-item-datetime-time {
    font-weight: bold;
    color: var(--site-color-corporate);
    font-size: 31px;
    line-height: 32px;
}
.BbCode .bb-broadcast-item-datetime {
    text-align: center;
}
.BbCode .bb-broadcast-item-datetime-date {
    color: var(--site-color-hidden);
    font-size: 14px;
}
.BbCode .bb-broadcast-item-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    margin: 0;
}
.BbCode .bb-broadcast-item.important:before {
    background-color: #FE5D2B;
}

@media (min-width: 740px){
    .BbCode .bb-broadcast-item-head{
        grid-template-columns: auto 1fr;
        grid-gap: 30px;
    }
    .BbCode .bb-broadcast-item-title{
        font-size: 22px;
        line-height: 26px;
        align-self: end;
    }
    .BbCode .bb-broadcast-head {
        grid-gap: 32px;
        grid-template-columns: auto auto;
        grid-template-rows: auto;
        justify-content: start;
        align-content: center;
        align-items: center;
    }
}