.divae-gameshow-voting__item {
  box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.3411764706);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.divae-gameshow-voting__item:hover, .divae-gameshow-voting__item:focus-visible, .divae-gameshow-voting__item:has(.divae-gameshow-voting__card[aria-checked=true]) {
  transform: translateY(-6px);
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.768627451);
}
.divae-gameshow-voting__headline, .divae-gameshow-voting__text {
  margin-bottom: 32px;
  display: block;
}
.divae-gameshow-voting__results-button {
  display: block;
  width: fit-content;
  margin: 0 0 32px auto;
}
.divae-gameshow-voting__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .divae-gameshow-voting__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .divae-gameshow-voting__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.divae-gameshow-voting__banner {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 48px;
  width: 100%;
  height: auto;
  gap: 24px;
  padding: 16px 16px;
  background-color: rgba(55, 49, 49, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  position: sticky;
  bottom: 0;
  z-index: 2;
}
.divae-gameshow-voting__banner.is-visible {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .divae-gameshow-voting__banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 92px;
    padding: 16px 28px;
  }
}
.divae-gameshow-voting__banner.has-error .divae-gameshow-voting__banner-selection,
.divae-gameshow-voting__banner.has-error .divae-gameshow-voting__vote-button {
  display: none;
}
.divae-gameshow-voting__banner.has-error .divae-gameshow-voting__banner-error {
  display: flex;
}
.divae-gameshow-voting__banner-error {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  position: sticky;
  bottom: 0;
  z-index: 2;
}
.divae-gameshow-voting__hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin-top: 48px;
  width: 100%;
  min-height: 92px;
  padding: 16px 28px;
  background-color: rgba(55, 49, 49, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-sizing: border-box;
  position: sticky;
  bottom: 0;
  z-index: 2;
}
.divae-gameshow-voting__hint.is-visible {
  display: flex;
}
.divae-gameshow-voting__banner-selection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .divae-gameshow-voting__banner-selection {
    flex-direction: row;
    align-items: center;
  }
}
.divae-gameshow-voting__banner-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 43px;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid rgba(232, 232, 232, 0.5019607843);
  border-radius: 22px;
  opacity: 1;
  box-sizing: border-box;
  background-color: var(--eon-black-90);
}
.divae-gameshow-voting__banner-pill-first-name, .divae-gameshow-voting__banner-pill-last-name {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
}
.divae-gameshow-voting__modal-choice-pill {
  display: none;
  align-items: center;
  justify-content: center;
  width: auto;
  padding-inline: 10px;
  border: 2px solid var(--eon-red500);
  border-radius: 22px;
  box-sizing: border-box;
  text-transform: uppercase;
}
.divae-gameshow-voting__modal-choice-pill.is-visible {
  display: flex;
}
.divae-gameshow-voting__modal-choice-pill-text {
  font-size: 10px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.72px;
  color: var(--eon-black-90);
}
.divae-gameshow-voting__card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(232, 232, 232, 0.5019607843);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.divae-gameshow-voting__card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.divae-gameshow-voting__card[aria-checked=true] .divae-gameshow-voting__card-check {
  opacity: 1;
  transform: scale(1);
}
.divae-gameshow-voting__card[aria-checked=true] .divae-gameshow-voting__card-first-name,
.divae-gameshow-voting__card[aria-checked=true] .divae-gameshow-voting__card-last-name {
  font-weight: 700;
}
.divae-gameshow-voting__card-check {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e2001a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media only screen and (min-width: 768px) {
  .divae-gameshow-voting__card-check {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
.divae-gameshow-voting__card-check-icon {
  color: #1a1a1a;
}
.divae-gameshow-voting__card-image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 -12px 12px -6px rgba(0, 0, 0, 0.35);
}
.divae-gameshow-voting__card-image-wrapper eon-ui-image {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease-out;
}
.divae-gameshow-voting__card-text {
  flex: 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  box-shadow: 0px -20px 20px 0px rgba(0, 0, 0, 0.5019607843);
}
.divae-gameshow-voting__card-first-name, .divae-gameshow-voting__card-last-name {
  display: block;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 70%;
}
.divae-gameshow-voting__modal-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.divae-gameshow-voting__modal-row:first-child {
  border-radius: 16px 16px 0 0;
}
.divae-gameshow-voting__modal-row:last-child {
  border-radius: 0 0 16px 16px;
}
.divae-gameshow-voting__modal-avatar {
  display: block;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
}
.divae-gameshow-voting__modal-avatar eon-ui-image {
  display: block;
  width: 100%;
  height: 100%;
}
.divae-gameshow-voting__modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.divae-gameshow-voting__modal-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-transform: uppercase;
}
.divae-gameshow-voting__modal-name-text {
  display: flex;
  column-gap: 8px;
  flex-wrap: wrap;
}
.divae-gameshow-voting__modal-progress-bar {
  height: 13px;
  border-radius: 99px;
  background: #ece8e6;
  overflow: hidden;
}
.divae-gameshow-voting__modal-progress-fill {
  width: 0;
  height: 100%;
  border-radius: 99px;
  background: var(--eon-red500);
  transition: width 0.3s ease;
}
.divae-gameshow-voting__modal-progress-value {
  flex-shrink: 0;
  font-size: 12px;
}