#raceBar {
    height:50px;
    width:100%;
    background-color: #f6f6f6;
    overflow:hidden;
    display: flex;
    justify-content: space-between;
}

.raceBarItem {
    border-left: 1px solid #cccccc;
    min-width:250px;
    height:44px;
    padding:3px 10px;
    float:left;
}

.raceBarLeft {
    float:left;
    width:155px;
}

.raceBarRight {
    float:left;
    padding-top:5px;
}

.raceBarRight a{
    text-decoration:none;
}

.raceBarTrackName {
    font-size: 16px;
    line-height: 20px;
    color: #333;
    font-weight: 600;
    margin: 0;
    width: 98%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Titillium Web,sans-serif;
}

.raceBarLineTwo {
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    font-family: Titillium Web,sans-serif;
}

.raceBarRaceNumber {
    font-weight: 700;
}

.raceBarRaceType {
    font-weight: 700;
    color:#808080;
}

.raceBarMTPRed {
    font-weight: 400;
    color:#ec1c24;
}

.raceBarMTPGreen {
    font-weight: 400;
    color:#6a3;
}

.btnRace {
    background:#6a3;
    width:87px;
    border-radius: 2px;
    border: 1px solid #592;
}

.btnRace:hover {
    background: #64a030;
    color: #fff;
}

.headerFix{
    position:fixed;
    top:50px;
    width:100%;
}

.raceBarFix{
    position:fixed;
    top:0;
    width:100%;
}

@media only screen and (max-width: 1200px) {

    .raceBarFlex {
        display:none;
    }

    .raceBarItem {
        width:95%;
        padding:10px 0 10px 10px;
        border-bottom: 1px solid #cccccc;
    }

    .raceBarLeft {
        width:240px;
    }

    .raceBarRight {
        float:right;
    }

    .btnRace {
        width:120px;
        font-size:14px;
    }

}

@media only screen and (max-width: 767px) {
    .raceBarItem {
        width:95%;
        padding:10px;
    }
}



