.cx-prediction-pair {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  order: 1;
  margin: 0 0 14px;
}

.cx-prediction-pair > .cx-win-prediction-card,
.cx-prediction-pair > .cx-community-poll {
  height: 100%;
  margin: 0 !important;
}

.cx-community-poll {
  box-sizing: border-box;
  min-width: 0;
  padding: 16px;
  color: #17324a;
  background: #ffffff;
  border: 1px solid #dce7ef;
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(18, 49, 72, 0.07);
}

.cx-community-poll *,
.cx-community-poll *::before,
.cx-community-poll *::after {
  box-sizing: border-box;
}

.cx-community-poll-header,
.cx-community-poll-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cx-community-poll-header span {
  display: block;
  margin: 0 0 2px;
  color: #597287;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.cx-community-poll-header h3 {
  margin: 0;
  color: #15354e;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}

.cx-community-poll-header > strong {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #7a5600;
  background: #fff5cf;
  border: 1px solid #f0d46d;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.cx-community-poll-note {
  margin: 7px 0 13px;
  color: #61798d;
  font-size: 11px;
  line-height: 1.45;
}

.cx-community-poll-choices {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;
}

.cx-community-poll-choice {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 66px;
  padding: 8px;
  color: #15354e;
  text-align: left;
  background: #f7fafc;
  border: 1px solid #dce7ef;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.cx-community-poll-choice:hover:not(:disabled),
.cx-community-poll-choice:focus-visible {
  background: #eef7fb;
  border-color: #2b96c6;
  box-shadow: 0 0 0 2px rgba(43, 150, 198, 0.14);
  outline: 0;
}

.cx-community-poll-choice.is-selected {
  background: #edf8f2;
  border-color: #2f8b61;
}

.cx-community-poll-choice:disabled {
  cursor: default;
  opacity: 0.84;
}

.cx-community-poll-team-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  color: #ffffff;
  background: #2d5775;
  border: 1px solid #d6e3ec;
  border-radius: 6px;
}

.cx-community-poll-team-mark img {
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
  background: #ffffff;
}

.cx-community-poll-team-mark b {
  font-size: 11px;
  line-height: 1;
}

.cx-community-poll-choice small,
.cx-community-poll-choice strong {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.cx-community-poll-choice small {
  margin: 0 0 2px;
  color: #6c8293;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.cx-community-poll-choice strong {
  color: #17364e;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.cx-community-poll-choice em {
  color: #1f789e;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.cx-community-poll-vs {
  display: grid;
  place-items: center;
  color: #6b8192;
  font-size: 9px;
  font-weight: 900;
}

.cx-community-poll-bar {
  display: flex;
  width: 100%;
  height: 8px;
  margin: 12px 0 10px;
  overflow: hidden;
  background: #e6edf2;
  border-radius: 4px;
}

.cx-community-poll-bar i {
  display: block;
  height: 100%;
  background: #315f7f;
  transition: width 220ms ease;
}

.cx-community-poll-bar i:last-child {
  background: #e0ae2e;
}

.cx-community-poll-footer {
  color: #687f91;
  font-size: 10px;
  line-height: 1.35;
}

.cx-community-poll-footer strong {
  color: #315f7f;
  font-weight: 800;
  text-align: right;
}

.cx-community-poll.is-error .cx-community-poll-footer strong {
  color: #b43b45;
}

@media (max-width: 900px) {
  .cx-prediction-pair {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .cx-community-poll {
    padding: 13px;
  }

  .cx-community-poll-choices {
    grid-template-columns: minmax(0, 1fr);
  }

  .cx-community-poll-vs {
    min-height: 20px;
  }

  .cx-community-poll-choice {
    min-height: 60px;
  }
}
