img {
  display: block;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}


.video-container {
  /* width: 50vw;
  padding: 0 1rem; */
  width: 100%;
  min-height: 160px;
  max-height: 100%;
}

.match-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.match-info {
  display: flex;
  /* overflow-x: scroll;
  overflow-y: hidden; */
  justify-content: center;
  width: 60vw;
  flex-wrap: wrap;
  /* white-space: nowrap; */
  margin-left: -5px;
}

.match-heading {
  margin-top: 20px;
  margin-bottom: 20px;
}

.day-match {
  display: flex;
  flex-direction: column;
  border: 3px solid gray;
  width: 213px;
  /* flex-shrink: 0; */
  margin-left: 5px;
  margin-top: 5px;
}

.day {
  text-align: center;
  font-weight: 800;
}

.match {
  display: flex;
  width: 75%;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.teams {
  display: flex;
  flex-direction: column;
  padding-left: 3px;
}

.time {
  /* margin-left: 45px; */
  white-space: nowrap;
  padding-right: 3px;
}

.team1 {
  white-space: nowrap;
  text-align: center;
}

.team2 {
  /* border-top: 3px dotted gray; */
  white-space: nowrap;
  text-align: center;
}

.volley-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 991.40px){
  .match {
    width: 35%;
  }
}

@media screen and (max-width: 767.98px) {
  .match {
    width: 50%;
  }
}

@media screen and (max-width: 500px) {
  .match {
    width: 78%;
  }
}


