.score-board {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.score-board .left-team, .score-board .right-team {
  background: #fff;
  box-shadow:0 0 10px rgba(0,0,0,.5);
  padding: 10px 20px;
  width: 300px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}
    .score-board .left-team h5, .score-board .right-team h5{
        color:#646464;
    }
    .score-board .left-team {
        border-radius: 0 50px 50px 0;
    }

.score-board .right-team {
  border-radius: 50px 0 0 50px;
}

.score-board-display {
    width: calc(100% - 600px);
    border-radius: 50px;
    background: #310079;
    padding: 0px 50px;
}

.score-rate {
  border-radius: 50px;
  padding: 0px;
  margin: 5px 0;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 380px;
          flex: 0 0 380px;
}

.score-rate-list {
  padding: 5px 10px;
}

.score-rate-list h6 {
  font-weight: 600;
}

.score-rate-list-item {
    background: #e94851;
    padding: 10px 20px;
    border-radius: 50px;
}

.score-rate-list-item h6 {
  color: #fff;
}

.score-rate-desc {
  border-top:1px solid #f0f0f0;
}

.score-rate-desc p {
  font-size: 11px;
  padding: 3px 0;
  font-weight: 600;
}

.runs-listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

    .runs-listing li {
        width: 26px;
        height: 26px;
        border-radius: 10px;
        background-color: #e51cbb;
        margin-right: 5px;
        color: #fff;
    }
/*# sourceMappingURL=score-board.css.map */