.f-tournament-matches {
  margin-bottom: 60px;
  width: 100%;
  overflow-x: hidden;
}
.f-tournament-matches__header {
  font-size: 24px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 25px;
  text-align: center;
}
.f-tournament-matches__group {
  margin-bottom: 35px;
}
.f-tournament-matches__group-name {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
.f-tournament-matches__match {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 68px;
  padding-right: 60px;
  overflow-x: auto;
}
.f-tournament-matches__match:nth-child(odd) {
  background-color: #EEEEEE;
}
@media (max-width: 991px) {
  .f-tournament-matches__match {
    padding-left: 20px;
    padding-right: 10px;
  }
}
@media (max-width: 639px) {
  .f-tournament-matches__match {
    padding-left: 5px;
    padding-right: 5px; 
  }
}
.f-tournament-matches__match-content {
  display: flex;
  align-items: center;
  flex-basis: 100%;
}
@media (max-width: 639px) {
  .f-tournament-matches__match-content {
    flex-shrink: 0;
  }
}
.f-tournament-matches__match-time {
  width: 70px;
  flex-shrink: 0;
}
.f-tournament-matches__match-teams {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 100%;
}
.f-tournament-matches__match-team {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-basis: 100%;
  min-width: 0;
}
.f-tournament-matches__match-team--home {
  justify-content: flex-end;
}
.f-tournament-matches__match-team--home .f-tournament-matches__match-team__name {
  text-align: right;
}
.f-tournament-matches__match-team__name {
  text-transform: uppercase;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .f-tournament-matches__match-team__name {
    font-size: 12px;
  }
}
.f-tournament-matches__match-date {
  width: 150px;
  text-transform: lowercase;
}
.f-tournament-matches__match-tour-name {
  width: 150px;
}
.f-tournament-matches__match-team__logo {
  width: 30px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .f-tournament-matches__match-team__logo {
    width: 20px;
  }
}
.f-tournament-matches__match-score {
  width: 80px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #1b1b1b;
  flex-shrink: 0;
  white-space: nowrap;
}
.f-tournament-matches__match-extra {
  display: flex;
  justify-items: flex-end;
  align-items: center;
}
@media (max-width: 639px) {
  .f-tournament-matches__match-extra {
    width: 100%;
    justify-content: center;
    margin-left: 10px;
    margin-top: 10px;
  }
}
.f-tournament-matches__match-button {
  width: 100px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff !important;
  background: #bd1a13;
  height: 30px;
  line-height: 30px;
  display: block;
  text-align: center;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .f-tournament-matches__match-button {
    margin-right: 10px;
  }
}
@media (max-width: 639px) {
  .f-tournament-matches__match-button {
    width: 80px;
    margin-right: 30px;
  }
}
.f-tournament-matches__match-photo, .f-tournament-matches__match-video {
  width: 20px;
  height: 18px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.f-tournament-matches__match a.f-tournament-matches__match-photo, .f-tournament-matches__match a.f-tournament-matches__match-video {
  opacity: 1;
}
.f-tournament-matches__match-photo {
  background-image: url(img/photo.png);
}
.f-tournament-matches__match-video {
  margin-left: 20px;
  background-image: url(img/video.png);
}
