:root {
  --titleFont: "Inter", sans-serif;
  --bodyFont: "Inter", sans-serif;
  --primaryColor: #537FE7 ;
  --secondaryColor: #5E5E5E ;
  --whiteColor: #ffffff;
  --titleColor: #181823;
  --hoverColor: #000;
  --bodyColor: #5E5E5E;
  --partialColor: #181823;
  --btnColor: #15171A;
  --button-bg: #537FE7;
  --button-bg-hover: #5E5E5E;
}

/* Followr Box CSS ----------------------
----------------------------------------*/
.rts-match-result-section .match-wrapper.first {
  margin-left: 0;
}

.rts-match-result-section .match-wrapper {
  margin: 0 15px;
  font-family: var(--titleFont);
}

.rts-match-result-section .match-wrapper .team {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 30px;
}

.rts-match-result-section .match-wrapper .team .club {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rts-match-result-section .match-wrapper .team .club img {
  width: 60px;
  height: 60px;
}

.rts-match-result-section .match-wrapper .team span {
  width: 50px;
}

.rts-match-result-section .match-wrapper .team span img {
  width: 100%;
}

.rts-match-result-section .match-wrapper .team .club .title {
  color: #F6EEEA;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
  margin: 0;
}

.rts-match-result-section .match-wrapper .result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #5F1028;
}

.rts-match-result-section .match-wrapper .result .score {
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 20px;
  border-right: 1px solid #5F1028;
}

.rts-match-result-section .match-wrapper .result .time {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.rts-match-result-section .match-wrapper .result .score {
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 20px;
  border-right: 1px solid #5F1028;
}

.rts-match-result-section .match-wrapper .result .score.last {
  border-left: 1px solid #5F1028;
  border-right: none;
}

.rts-match-result-section .match-wrapper .team .club {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rts-match-result-section .match-wrapper .team .club.two .title {
  text-align: end;
}

@media (max-width: 1200px) {
  .rts-match-result-section .match-wrapper .team {
    margin-bottom: 20px;
  }
  .rts-match-result-section .match-wrapper .result {
    justify-content: center;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: auto;
  }
  .rts-match-result-section .match-wrapper .result .time {
    padding: 0 190px;
  }
}
@media (max-width: 1600px) {
  .rts-match-result-section .match-wrapper .team {
    gap: 15px;
  }
  .rts-match-result-section .match-wrapper .team .club {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .rts-match-result-section .match-wrapper .result .time {
    padding: 0 100px;
  }
}
@media (max-width: 450px) {
  .rts-match-result-section .match-wrapper .team .club {
    display: block;
    text-align: center;
  }
  .rts-match-result-section .match-wrapper .team .club.two .title {
    text-align: center;
  }
  .rts-match-result-section .match-wrapper .result .time {
    padding: 0 30px;
  }
}/*# sourceMappingURL=team-results.css.map */