.competitions-dates .competitions-by-date {
    position: relative;
    padding-left: 20px;
}
.competitions-dates .competitions-by-date:not(:last-child):before {
    content: '';
    display: block;
    position: absolute;
    left:0;
    width: 1px;
    height: 100%;
    background: rgba(0,0,0,0.1);
    top: 15px;
}
.competitions-dates .competitions-by-date h3,.competitions-dates .competitions-by-date button {
    font-size: 14px;
    background: var(--primary-accent-color);
    display: inline-block;
    padding: 6px 10px;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    position: relative;
}
.competitions-dates .competitions-by-date button {
    border:0;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 14px;
    padding-right: 14px
}
.competitions-dates .competitions-by-date button:hover {
    background-color: #AA4D11;
}
.competitions-dates .competitions-by-date h3:before, .competitions-dates .competitions-by-date button:before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translate(0%,-50%);
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background: var(--primary-accent-color);
}
.competitions-dates .competitions-by-date .competitions {
    padding-top:10px;
    padding-bottom:20px;
}
.competitions-dates .competitions-by-date .competition {
    text-transform: uppercase;
    padding-top: 10px;
}
.competitions-dates .competitions-by-date .competition h4 {
    font-size: 18px;
    font-weight: 600;
    text-transform: unset;
}
.competitions-dates .competitions-by-date .competition .competition-winner {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0px;
    position: relative;
    color: <?= get_theme_mod('vct_fonts_and_style_body_primary_color', '#555555') ?>;
}
.competitions-dates .competitions-by-date .competition .competition-winner:nth-child(2) {
    padding-left: 10px;
}
.competitions-dates .competitions-by-date .competition h4 a {
    color: var(--primary-color);
}
.competitions-dates .competitions-by-date .competition .instant-wins {
    position: relative;
}
.competitions-dates .competitions-by-date .competition .instant-wins > div:before {
    content: '⇢';
    display: inline-block;
}
.competitions-dates .competitions-by-date .competition .instant-wins p {
    margin-bottom: 0px;
    font-size: 14px;
    display: inline-block;
}
.competitions-dates .load-more-competitions {
    cursor:pointer;
}