.section-match {
  padding: 2.77778vw;
}
@media (min-width: 1200px) {
  .section-match {
    padding: 10px;
  }
}

.match {
  display: flex;
  flex-direction: column;
  gap: 2.77778vw;
}
@media (min-width: 1200px) {
  .match {
    gap: 10px;
  }
}
.match__main {
  background: rgb(var(--color-bg-main));
  border-radius: 2.77778vw;
  display: flex;
  flex-direction: column;
  gap: 8.33333vw;
  padding: 0 2.77778vw;
}
@media (min-width: 1200px) {
  .match__main {
    border-radius: 10px;
    gap: 50px;
    padding: 0 10px;
  }
}
.match__status {
  background: rgb(var(--color-bg-secondary));
  border-radius: 0 0 2.77778vw 2.77778vw;
  padding: 0 2.77778vw;
  color: rgb(var(--color-gray));
  align-self: center;
  margin-bottom: 3.33333vw;
  min-height: 20.55556vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .match__status {
    padding: 0 15px;
    border-radius: 0 0 10px 10px;
    margin: 0;
    min-height: 79px;
  }
}
.match__status:has(.match__date:not(.hidden)) {
  padding: 0 5.55556vw;
}
@media (min-width: 1200px) {
  .match__status:has(.match__date:not(.hidden)) {
    padding: 0 30px;
  }
}
.match__status-text {
  font-size: 3.33333vw;
  font-style: italic;
  text-align: center;
  line-height: 1.16667;
}
@media (min-width: 1200px) {
  .match__status-text {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.match__date {
  font-size: 3.88889vw;
  font-weight: 500;
  color: rgb(var(--color-text-black));
  margin-top: 1.38889vw;
}
@media (min-width: 1200px) {
  .match__date {
    font-size: 18px;
    margin-top: 5px;
  }
}
.match__timer {
  display: flex;
}
.match__timer-item {
  width: 11.11111vw;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.22222vw;
}
@media (min-width: 1200px) {
  .match__timer-item {
    width: 40px;
    font-size: 10px;
    line-height: 1.2;
  }
}
.match__timer-value {
  font-size: 4.44444vw;
  font-weight: 500;
  color: rgb(var(--color-text-black));
}
@media (min-width: 1200px) {
  .match__timer-value {
    font-size: 18px;
  }
}
.match__teams {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2.77778vw;
}
@media (min-width: 1200px) {
  .match__teams {
    gap: 20px;
  }
}
.match__team {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 2.77778vw;
}
@media (min-width: 1200px) {
  .match__team {
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
  }
}
.match__team--reverse {
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 1200px) {
  .match__team--reverse {
    flex-direction: row;
  }
}
.match__team--reverse .match__team-info {
  align-items: flex-start;
}
.match__team-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  order: 2;
  gap: 2.22222vw;
}
@media (min-width: 1200px) {
  .match__team-info {
    gap: 8px;
  }
}
.match__team-name {
  font-size: 3.88889vw;
  font-weight: 500;
  line-height: 1.21429;
}
@media (min-width: 1200px) {
  .match__team-name {
    font-size: 24px;
    line-height: 1.20833;
    letter-spacing: -0.02em;
  }
}
.match__team-stats {
  background: rgb(var(--color-bg-secondary));
  border-radius: 1.66667vw;
  padding: 1.66667vw;
  display: flex;
  gap: 1.66667vw;
}
@media (min-width: 1200px) {
  .match__team-stats {
    gap: 6px;
    border-radius: 8px;
    padding: 6px;
  }
}
.match__team-dot {
  width: 2.22222vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(var(--color-red));
}
@media (min-width: 1200px) {
  .match__team-dot {
    width: 8px;
  }
}
.match__team-dot--draw {
  background: rgb(var(--color-yellow));
}
.match__team-dot--win {
  background: rgb(var(--color-green));
}
.match__team-logo {
  width: 13.88889vw;
  height: 13.88889vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.38889vw;
}
@media (min-width: 1200px) {
  .match__team-logo {
    width: 80px;
    height: 80px;
    padding: 8px;
  }
}
.match__team-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.match__score {
  font-size: 10vw;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex: 0 1 0;
}
@media (min-width: 1200px) {
  .match__score {
    font-size: 64px;
    gap: 6px;
  }
}
.match__score-separator {
  color: rgb(var(--color-text-gray));
  width: 2.77778vw;
  text-align: center;
}
@media (min-width: 1200px) {
  .match__score-separator {
    width: 18px;
  }
}
.match__score-value {
  width: 13.33333vw;
  text-align: center;
}
@media (min-width: 1200px) {
  .match__score-value {
    width: 109px;
  }
}
.match__odds {
  display: flex;
  gap: 1.38889vw;
}
@media (min-width: 1200px) {
  .match__odds {
    gap: 10px;
    justify-content: center;
    padding-top: 25px;
  }
}
.match__odd {
  background: rgb(var(--color-bg-secondary));
  border-radius: 4.44444vw 4.44444vw 0 0;
  padding: 4.16667vw 2.77778vw 2.77778vw;
  display: flex;
  flex-direction: column;
  gap: 2.77778vw;
  flex: 1 0 0;
}
@media (min-width: 1200px) {
  .match__odd {
    padding: 10px 10px 10px 15px;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    border-radius: 16px 16px 0 0;
    flex: 0 0 200px;
  }
}
.match__odd-bk {
  width: 17.77778vw;
  height: 4.72222vw;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
@media (min-width: 1200px) {
  .match__odd-bk {
    width: 72px;
    height: 19px;
  }
}
.match__odd-bk-img {
  max-width: 100%;
  max-height: 100%;
}
.match__odd-info {
  background: rgb(var(--color-bg-main));
  border-radius: 2.22222vw;
  padding: 2.77778vw;
  display: flex;
  justify-content: space-between;
  line-height: 1.16667;
  font-weight: 500;
  color: rgb(var(--color-gray));
}
@media (min-width: 1200px) {
  .match__odd-info {
    padding: 10px;
    border-radius: 8px;
    min-width: 70px;
    gap: 10px;
    font-size: 12px;
  }
}
.match__odd-type {
  font-weight: 600;
  color: rgb(var(--color-primary));
}
.match__details {
  display: flex;
  flex-direction: column;
  gap: 1.38889vw;
}
@media (min-width: 1200px) {
  .match__details {
    flex-direction: row;
    gap: 10px;
  }
}
.match__detail {
  background: rgb(var(--color-bg-main));
  border-radius: 2.77778vw;
  display: flex;
  align-items: center;
  gap: 2.77778vw;
  padding: 4.16667vw;
}
@media (min-width: 1200px) {
  .match__detail {
    padding: 15px;
    border-radius: 10px;
    gap: 10px;
    flex: 1 0 0;
  }
}
@media (min-width: 1200px) {
  .match__detail-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}
.match__detail-icon {
  width: 6.66667vw;
  aspect-ratio: 1;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .match__detail-icon {
    width: 24px;
  }
}
.match__detail-label {
  color: rgb(var(--color-gray));
  font-size: 2.77778vw;
  line-height: calc(100% + .55556vw);
}
@media (min-width: 1200px) {
  .match__detail-label {
    font-size: 12px;
    line-height: 1.16667;
  }
}
.match__detail-value {
  line-height: calc(100% + .55556vw);
  font-weight: 500;
}
@media (min-width: 1200px) {
  .match__detail-value {
    font-size: 14px;
    line-height: 1.21429;
  }
}

/*# sourceMappingURL=critical.css.map */
