.comingmatch_widget {
    background: var(--primary-color);
    margin-bottom: 15px;
    overflow: hidden;
    padding: 7px;
    border-radius: 6px;
}
.comingmatch_widget .title {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}
.comingmatch_widget .view_more_link {
    display: block;
    text-align: center;
    margin-top: 9px;
    text-transform: capitalize;
}
.match_tabs_list_2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dddddd73;
    border-radius: 6px;
    overflow: hidden;
}
.match_tabs_list_2 li {
    width: 100%;
    text-align: center;
    padding: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
    border-right: 1px solid #dddddd73;
}
.match_tabs_list_2 li:nth-last-child(1) {
    border-right: none;
}
.match_tabs_list_2 li.active {
    background: #fff;
    color: var(--dark-color);
}
.match_tabs_list_2 li span {
    position: relative;
}
.match_tabs_list_2 li span.live:before {
    content: "";
    width: 8px;
    height: 8px;
    background: orange;
    margin-right: 5px;
    border-radius: 100px;
    position: absolute;
    top: 49.1%;
    left: -14px;
    transform: translateY(-50%);
    animation: 1s cubic-bezier(.5,0,1,1) infinite alternate blinker;
}
@keyframes blinker{
    from{opacity:1}
    to{opacity:0}
}
.match_tabs_content_2 {
    display: none;
}
.match_tabs_content_2.active {
    display: block;
}
.match_list_2 {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #dddddd36;
    padding: 10px 0;
}
.match_list_2 small {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}
.match_list_2 .match_detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.match_list_2 .match_detail .team {
    width: 30%;
    text-align: center;
}
.match_list_2 .match_detail .team img {
    width: 44px;
    height: 44px;
    border-radius: 100%;
}
.match_list_2 .match_detail .team span {
    display: block;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    margin-top: 4px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.match_list_2 .match_detail .time {
    text-align: center;
    font-size: 13px;
    color: #fff;
    font-weight: 400;
}
.match_list_2 .match_detail .time strong {
    font-weight: 500;
}
.match_list_2 .match_detail .time span {
    display: block;
    margin-top: 2px;
}
.comingmatch_widget .more_matches {
    display: block;
    text-align: center;
    padding: 15px 0 10px;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}
.comingmatch_widget .more_matches:after {
    content: '';
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 3px;
}
#hwnews-live-matches td, #hwnews-live-matches th, #hwnews-live-matches * {
    color: #fff !important;
    font-size: 13px;
    vertical-align: middle;
    font-weight: 500 !important;
}
#hwnews-live-matches table tr td div {
    border: none !important;
}
#hwnews-live-matches > table .TextClass {
    border-bottom: 1px solid #dddddd36;
    padding-bottom: 10px;
    display: block;
}
@media(max-width:1024px){
    .comingmatch_widget {
        border-radius: 6px;
    }
}