.card {
    background-image: url("../../assets/cricket/d99_scorecard-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 65px;
    color: #fff;
    /* font-family: Arial, sans-serif; */
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    
}

.card_container{
    background-color: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 5px 5px;
}

 .team,
  .score,
  .crr,
  .required,
  .ball {
    font-size: 16px;
  }

.scores {
  /* margin-bottom: 4px; */
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 5px;

}

.row {
  display: flex;
  align-items: center;
  gap: 150px;
}

.team {
  font-weight: 400;
  min-width: 38px;
}

.score {
  font-weight: 400;
  /* opacity: 0.9; */
}

.crr {
  font-size: 16px;
  /* opacity: 0.9; */
}

.required {
  font-size: 16px;
  /* margin: 0px 0 10px; */
}

.balls {
  display: flex;
  gap: 4px;
}

.ball {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
}

/* Ball Types */
.boundary {
  background: #087f23;
}

.dot {
  background: #08c;
}

.wicket {
  background: #e74c3c;
}

.normal {
  background: #08c;
}
.six{
    background: #883997;
}

@media (max-width: 768px) {
  .card {
    background-position: left center;
    height: 105px;

  }
  .card_container {
    flex-direction: column;
    justify-content:center;

  }

  .row {
    /* gap: 10px; */
  }

  .required {
  font-size: 11px;
  margin: 0px 0 7px;
}

  .team,
  .score,
  .crr,
  .required,
  .ball {
    font-size: 12px;
  }

  .score {
  gap: 7px;
}
}