*{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.draws{
     border-bottom: 1px solid #ddd;
     max-width: 400px;
}

.draws > div {
    height: 40px;
    vertical-align: top;
    margin-bottom: 8px;
    max-width: 400px;
    background: #f4f4f4;
}

.draws > div.time-split{
    height: 15px;
    border-top: 1px solid #ddd;
    background: #fff;
}

.draws > div.time-split > span{
    width: 100%;
    text-align: center;
}

.draws > div > span{
    display: inline-block;
    height: 40px;
    line-height: 20px;
    vertical-align: top;
}

.draws > div > .game-time{
    width: 10%;
    text-align: center;
    padding-left: 5px;
    border-right: 1px solid #ddd;
    line-height: 40px;
}

.draws > div > .game-team{
    width: 70%;
}

.draws > div > .game-result{
    width: 15%;
    text-align: center;
}

.draws > div > .game-group{
    width: 120px;
    border-right: 1px solid #ddd;
    display: none;
}

table.tbl-standings{
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    line-height: 18px;
    font-size: 13px;
}

.col-rank{
    width: 30px;
}

.col-team{
    width: 200px;
}

.col-score{
    width: 30px;
    text-align: center;
}

.draws > div.current-game{
    background-color: #b9e6b8;
}

.draws > div.current-game > .game-time {
    border-color: #7ebd7d;
}

/*************************************************
* CMB CATEGORY
*************************************************/
.div-cmb{
    width: 250px;
    border: 1px solid #276b2e;
    border-radius: 5px;
    margin-bottom: 10px;
}

.div-cmb .cmb-default-option{
    position: relative;
    cursor: pointer;
}
  
.div-cmb .cmb-default-option li{
    padding: 5px 10px;
}

.div-cmb .cmb-default-option:before{
    content: "";
    position: absolute;
    top: 10px;
    right: 18px;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-color: transparent transparent #555555 #555555;
    transform: rotate(-45deg);
}

.div-cmb.active .cmb-default-option:before{
    top: 15px;
    transform: rotate(-225deg);
}

.div-cmb .ul-cmb{
    border-top: 1px solid #276b2e; 
    top: 15px;
    left: 0;
    width: 100%;
    display: none;
}

.div-cmb .ul-cmb li{
    padding: 5px 10px;
    cursor: pointer;
    background-color: #edfcee;
}

.div-cmb .ul-cmb li:last-child{
    border-radius: 0px 0px 5px 5px;
}

.div-cmb .ul-cmb li:hover{
    background-color: #bae8be;
}

.div-cmb .cmb-option{
    display: flex;
    align-items: center;
}

.div-cmb.active .ul-cmb{
    display: block;
}

