.s-q-s-browser .window-content,
.s-q-s-browser .standard-form {
  height: 100%;
}
.s-q-s-browser .flexrow,
.s-q-s-browser .flexcol {
  gap: 0.3rem;
  padding: 0.3rem;
}
.s-q-s-browser .level-range {
  flex: 0;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 0 0.3rem;
}
.s-q-s-browser h1, .s-q-s-browser h6 {
  margin: 0;
}
.s-q-s-browser h6 {
  font-size: var(--font-size-20);
}
.s-q-s-browser button {
  width: -moz-max-content;
  width: max-content;
}
.s-q-s-browser button#vote-one {
  border-color: var(--dnd5e-color-blue);
}
.s-q-s-browser button#vote-two {
  border-color: var(--dnd5e-color-red);
}
.s-q-s-browser img {
  height: 200px;
  max-height: 200px;
  width: 400px;
  max-width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-q-s-browser .quest-votes {
  --vote-one-percentage: 0%;
  --vote-two-percentage: calc(100% - var(--vote-one-percentage));
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--dnd5e-color-gold);
  background: linear-gradient(to right, var(--dnd5e-color-blue) var(--vote-one-percentage), var(--dnd5e-color-red) var(--vote-one-percentage));
  display: flex;
  justify-content: space-between;
  padding: 0 0.3rem;
  align-items: center;
}
.s-q-s-browser .quest-votes .vote-bar-one {
  width: var(--vote-one-percentage);
}
.s-q-s-browser .quest-votes .vote-bar-two {
  width: var(--vote-two-percentage);
}
.s-q-s-browser .quest-votes .vote-bar-one, .s-q-s-browser .quest-votes .vote-bar-two {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s-q-s-browser .quest-votes span {
  color: var(--dnd5e-color-gold);
  text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black;
  filter: brightness(1.5);
}

.sqs-calling-card-container {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.499);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.sqs-calling-card-container .sqs-calling-card-players,
.sqs-calling-card-container .sqs-calling-card-close {
  position: absolute;
  font-size: 5rem;
  top: 5%;
  color: white;
  text-shadow: 0 0 0px white;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.sqs-calling-card-container .sqs-calling-card-players:hover,
.sqs-calling-card-container .sqs-calling-card-close:hover {
  cursor: pointer;
  opacity: 1;
  text-shadow: 0 0 10px white;
}
.sqs-calling-card-container .sqs-calling-card-close {
  top: unset;
  bottom: 5%;
}
.sqs-calling-card-container .sqs-calling-card {
  position: absolute;
  height: 20%;
  aspect-ratio: 85/55;
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 5px;
}
.sqs-calling-card-container .sqs-calling-card.large {
  height: 35%;
}
.sqs-calling-card-container .sqs-calling-card.large .sqs-card-back {
  padding: 3rem;
  font-size: xx-large;
}
.sqs-calling-card-container .sqs-calling-card img {
  border: none;
  height: 100%;
}
.sqs-calling-card-container .sqs-calling-card .sqs-card-back {
  padding: 2rem;
  text-align: center;
  font-family: "Amiri";
  font-style: italic;
  font-size: larger;
}/*# sourceMappingURL=module.css.map */