@charset "UTF-8";
/* Fonts */
/* Colors */
/**
 * Utility to handle responsive media queries easily.
 * 
 * @example
 *  @import '~respond';
 *  @include respond(phone-landscape) {
 *    ...
 *  }
 */
html, body, div, span, applet, object, iframe, p, blockquote, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}
a, button, input, textarea {
  font-family: inherit;
  font-size: 100%;
  cursor: inherit;
}
button, a {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
:focus {
  outline: none;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button:active, button:focus {
  outline: none;
}
*, :before, :after {
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: transparent;
}
html, body {
  height: 100%;
  background-color: transparent !important;
}
#root {
  color: #000;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
input:-webkit-autofill {
  background-color: transparent !important;
}
::selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}
q {
  quotes: "“" "”" "‘" "’";
}
textarea,
input.app-module__text,
input[type=text],
input[type=button],
input[type=submit],
.app-module__input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}
input,
textarea,
[contenteditable] {
  caret-color: white;
}
@media (max-width: 767px) {
  body {
    width: 100%;
    min-width: 0;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
  }
}
*:not(input):not(textarea) {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}
.datg-if-player-wrapper {
  padding: 1px 0;
}
.h-100 {
  min-height: 0;
  min-width: 0;
}
.rc-slider-handle {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.form-check-input {
  margin-left: 0;
  width: 20px;
}/* Fonts */
/* Colors */
.warning-module__warningWrapper {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: -1;
}
.warning-module__warningWrapper.warning-module__isVisible {
  z-index: 12;
  opacity: 1;
}
.warning-module__warning {
  position: absolute;
  bottom: -100px;
  left: 10%;
  right: 10%;
  color: #ffffff;
  font-size: 14px;
  border: 5px solid transparent;
  height: 120px;
  padding: 20px;
  opacity: 0;
}
.warning-module__warning.warning-module__small {
  font-size: 10px;
  padding: 10px;
  padding-top: 25px;
}
.warning-module__isVisible .warning-module__warning {
  animation: warning-module__animWarning 1.5s 0.1s normal forwards;
}
.warning-module__warning.warning-module__isHidden {
  animation: warning-module__hideWarning 0 0.5s normal forwards;
}
.warning-module__warning.warning-module__bigWarning {
  padding: 30px 20px;
  height: 250px;
  font-size: 20px;
}
.warning-module__warningButton {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background-color: transparent;
}
.warning-module__small .warning-module__warningButton {
  top: 5px;
  right: 5px;
}
.warning-module__warningIcon {
  font-size: 20px;
}
.warning-module__bigWarning .warning-module__warningIcon {
  font-size: 40px;
}
@-webkit-keyframes warning-module__animWarning {
  from {
    bottom: calc(50% - (120px / 2));
    opacity: 1;
  }
  10% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes warning-module__animWarning {
  from {
    bottom: calc(50% - (120px / 2));
    opacity: 1;
  }
  10% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-ms-keyframes warning-module__animWarning {
  from {
    bottom: calc(50% - (120px / 2));
    opacity: 1;
  }
  10% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes warning-module__animWarning {
  from {
    bottom: calc(50% - (120px / 2));
    opacity: 1;
  }
  10% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    opacity: 1;
    bottom: calc(50% - (120px / 2));
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes warning-module__hideWarning {
  from {
    bottom: calc(50% - (120px / 2));
    opacity: 1;
  }
  95% {
    bottom: calc(50% - (120px / 2));
    opacity: 0;
  }
  100% {
    opacity: 0;
    bottom: -100px;
    z-index: -1;
  }
}
@-moz-keyframes warning-module__hideWarning {
  from {
    bottom: calc(50% - (120px / 2));
    opacity: 1;
  }
  95% {
    bottom: calc(50% - (120px / 2));
    opacity: 0;
  }
  100% {
    opacity: 0;
    bottom: -100px;
    z-index: -1;
  }
}
@-ms-keyframes warning-module__hideWarning {
  from {
    bottom: calc(50% - (120px / 2));
    opacity: 1;
  }
  95% {
    bottom: calc(50% - (120px / 2));
    opacity: 0;
  }
  100% {
    opacity: 0;
    bottom: -100px;
    z-index: -1;
  }
}
@keyframes warning-module__hideWarning {
  from {
    bottom: calc(50% - (120px / 2));
    opacity: 1;
  }
  95% {
    bottom: calc(50% - (120px / 2));
    opacity: 0;
  }
  100% {
    opacity: 0;
    bottom: -100px;
    z-index: -1;
  }
}/* Fonts */
/* Colors */
body .compact1-module__layout.compact1-module__ActionNBAFont,
body .compact1-module__layoutPreview.compact1-module__ActionNBAFont {
  font-family: "Action NBA Web", sans-serif;
}
body .compact1-module__layout.compact1-module__ArchivoFont,
body .compact1-module__layoutPreview.compact1-module__ArchivoFont {
  font-family: "Archivo", sans-serif;
}
body .compact1-module__layout.compact1-module__AvenirFont,
body .compact1-module__layoutPreview.compact1-module__AvenirFont {
  font-family: "AvenirNextRoundedProBold", "Nunito", sans-serif;
}
body .compact1-module__layout.compact1-module__ChakraPetchFont,
body .compact1-module__layoutPreview.compact1-module__ChakraPetchFont {
  font-family: "Chakra Petch", sans-serif;
}
body .compact1-module__layout.compact1-module__ChivoMonoFont,
body .compact1-module__layoutPreview.compact1-module__ChivoMonoFont {
  font-family: "Chivo Mono", monospace;
}
body .compact1-module__layout.compact1-module__DMSansFont,
body .compact1-module__layoutPreview.compact1-module__DMSansFont {
  font-family: "DM Sans", sans-serif;
}
body .compact1-module__layout.compact1-module__DynaPuffFont,
body .compact1-module__layoutPreview.compact1-module__DynaPuffFont {
  font-family: "DynaPuff", cursive;
}
body .compact1-module__layout.compact1-module__EpilogueFont,
body .compact1-module__layoutPreview.compact1-module__EpilogueFont {
  font-family: "Epilogue", sans-serif;
}
body .compact1-module__layout.compact1-module__FuturaFont,
body .compact1-module__layoutPreview.compact1-module__FuturaFont {
  font-family: "Futura", sans-serif;
  font-weight: 300;
}
body .compact1-module__layout.compact1-module__InspireFont,
body .compact1-module__layoutPreview.compact1-module__InspireFont {
  font-family: "Inspire", sans-serif;
}
body .compact1-module__layout.compact1-module__InterFont,
body .compact1-module__layoutPreview.compact1-module__InterFont {
  font-family: "Inter", sans-serif;
  font-weight: 900;
}
body .compact1-module__layout.compact1-module__JetBrainsMonoFont,
body .compact1-module__layoutPreview.compact1-module__JetBrainsMonoFont {
  font-family: "JetBrains Mono", monospace;
}
body .compact1-module__layout.compact1-module__JostFont,
body .compact1-module__layoutPreview.compact1-module__JostFont {
  font-family: "Jost", sans-serif;
}
body .compact1-module__layout.compact1-module__LubalinFont,
body .compact1-module__layoutPreview.compact1-module__LubalinFont {
  font-family: "Lubalin", sans-serif;
}
body .compact1-module__layout.compact1-module__LuckiestGuyFont,
body .compact1-module__layoutPreview.compact1-module__LuckiestGuyFont {
  font-family: "Luckiest Guy", cursive;
}
body .compact1-module__layout.compact1-module__MontaguSlabFont,
body .compact1-module__layoutPreview.compact1-module__MontaguSlabFont {
  font-family: "Montagu Slab", serif;
}
body .compact1-module__layout.compact1-module__MontserratFont,
body .compact1-module__layoutPreview.compact1-module__MontserratFont {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
body .compact1-module__layout.compact1-module__NunitoFont,
body .compact1-module__layoutPreview.compact1-module__NunitoFont {
  font-family: "Nunito", sans-serif;
}
body .compact1-module__layout.compact1-module__OpenSansFont,
body .compact1-module__layoutPreview.compact1-module__OpenSansFont {
  font-family: "Open Sans", sans-serif;
}
body .compact1-module__layout.compact1-module__OpenSansCondensedFont,
body .compact1-module__layoutPreview.compact1-module__OpenSansCondensedFont {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
}
body .compact1-module__layout.compact1-module__OswaldFont,
body .compact1-module__layoutPreview.compact1-module__OswaldFont {
  font-family: "Oswald", sans-serif;
}
body .compact1-module__layout.compact1-module__OutfitFont,
body .compact1-module__layoutPreview.compact1-module__OutfitFont {
  font-family: "Outfit", sans-serif;
}
body .compact1-module__layout.compact1-module__PoppinsFont,
body .compact1-module__layoutPreview.compact1-module__PoppinsFont {
  font-family: "Poppins", sans-serif;
}
body .compact1-module__layout.compact1-module__ProximaNovaBoldFont,
body .compact1-module__layoutPreview.compact1-module__ProximaNovaBoldFont {
  font-family: "ProximaNovaBold", sans-serif;
}
body .compact1-module__layout.compact1-module__ProximaNovaRegularFont,
body .compact1-module__layoutPreview.compact1-module__ProximaNovaRegularFont {
  font-family: "ProximaNovaRegular", sans-serif;
}
body .compact1-module__layout.compact1-module__QuicksandFont,
body .compact1-module__layoutPreview.compact1-module__QuicksandFont {
  font-family: "Quicksand", sans-serif;
}
body .compact1-module__layout.compact1-module__RalewayFont,
body .compact1-module__layoutPreview.compact1-module__RalewayFont {
  font-family: "Raleway", sans-serif;
}
body .compact1-module__layout.compact1-module__RedHatMonoFont,
body .compact1-module__layoutPreview.compact1-module__RedHatMonoFont {
  font-family: "Red Hat Mono", monospace;
}
body .compact1-module__layout.compact1-module__RobotoFont,
body .compact1-module__layoutPreview.compact1-module__RobotoFont {
  font-family: "Roboto", sans-serif;
}
body .compact1-module__layout.compact1-module__RubikFont,
body .compact1-module__layoutPreview.compact1-module__RubikFont {
  font-family: "Rubik", sans-serif;
}
body .compact1-module__layout.compact1-module__SairaFont,
body .compact1-module__layoutPreview.compact1-module__SairaFont {
  font-family: "Saira", sans-serif;
  font-weight: 600;
}
body .compact1-module__layout.compact1-module__SintonyFont,
body .compact1-module__layoutPreview.compact1-module__SintonyFont {
  font-family: "Sintony", sans-serif;
}
body .compact1-module__layout.compact1-module__SonoFont,
body .compact1-module__layoutPreview.compact1-module__SonoFont {
  font-family: "Sono", sans-serif;
}
body .compact1-module__layout.compact1-module__SoraFont,
body .compact1-module__layoutPreview.compact1-module__SoraFont {
  font-family: "Sora", sans-serif;
}
body .compact1-module__layout.compact1-module__SpaceMonoFont,
body .compact1-module__layoutPreview.compact1-module__SpaceMonoFont {
  font-family: "Space Mono", monospace;
}
body .compact1-module__layout.compact1-module__SplineSansMonoFont,
body .compact1-module__layoutPreview.compact1-module__SplineSansMonoFont {
  font-family: "Spline Sans Mono", monospace;
}
body .compact1-module__layout.compact1-module__TomorrowFont,
body .compact1-module__layoutPreview.compact1-module__TomorrowFont {
  font-family: "Tomorrow", sans-serif;
}
body .compact1-module__layout.compact1-module__UbuntuMonoFont,
body .compact1-module__layoutPreview.compact1-module__UbuntuMonoFont {
  font-family: "Ubuntu Mono", monospace;
}
body .compact1-module__layout.compact1-module__UnitedItalicCondFont,
body .compact1-module__layoutPreview.compact1-module__UnitedItalicCondFont {
  font-family: "United Italic Cond", sans-serif;
}
body .compact1-module__layout.compact1-module__WorkSansFont,
body .compact1-module__layoutPreview.compact1-module__WorkSansFont {
  font-family: "Work Sans", sans-serif;
}
.compact1-module__layout {
  position: absolute;
  border-radius: 10px;
  padding: 12px;
}
.compact1-module__layout.compact1-module__isActive {
  animation: compact1-module__shadowPulse 1s 4, compact1-module__shadowHidden 2s infinite 4s;
}
.compact1-module__layout.compact1-module__startedVote {
  animation: none;
  box-shadow: none !important;
}
.compact1-module__layout.compact1-module__visibleElimination {
  margin-bottom: 30px;
}
@media (max-width: 200px) {
  .compact1-module__layout {
    opacity: 0 !important;
  }
}
@-webkit-keyframes compact1-module__shadowPulse {
  0%, 50%, 100% {
    box-shadow: 0px 0px 30px 0 inherit;
  }
  25%, 75% {
    box-shadow: 0px 0px 30px 0 transparent;
  }
}
@-moz-keyframes compact1-module__shadowPulse {
  0%, 50%, 100% {
    box-shadow: 0px 0px 30px 0 inherit;
  }
  25%, 75% {
    box-shadow: 0px 0px 30px 0 transparent;
  }
}
@-ms-keyframes compact1-module__shadowPulse {
  0%, 50%, 100% {
    box-shadow: 0px 0px 30px 0 inherit;
  }
  25%, 75% {
    box-shadow: 0px 0px 30px 0 transparent;
  }
}
@keyframes compact1-module__shadowPulse {
  0%, 50%, 100% {
    box-shadow: 0px 0px 30px 0 inherit;
  }
  25%, 75% {
    box-shadow: 0px 0px 30px 0 transparent;
  }
}
@-webkit-keyframes compact1-module__shadowHidden {
  0%, 100% {
    box-shadow: 0px 0px 30px 0 transparent;
  }
}
@-moz-keyframes compact1-module__shadowHidden {
  0%, 100% {
    box-shadow: 0px 0px 30px 0 transparent;
  }
}
@-ms-keyframes compact1-module__shadowHidden {
  0%, 100% {
    box-shadow: 0px 0px 30px 0 transparent;
  }
}
@keyframes compact1-module__shadowHidden {
  0%, 100% {
    box-shadow: 0px 0px 30px 0 transparent;
  }
}
.compact1-module__container {
  background: rgba(0, 0, 0, 0.05);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4));
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.compact1-module__timerBarWrapper {
  position: relative;
  height: 8px;
  top: 0;
}
.compact1-module__headerWrapper {
  margin-bottom: 5px;
}
.compact1-module__headerContent {
  flex: 1;
}
.compact1-module__header {
  padding: 10px 20px;
}
.compact1-module__subheader {
  padding: 10px 20px;
  margin-bottom: 5px;
}
.compact1-module__title {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 992px) {
  .compact1-module__title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .compact1-module__title {
    font-size: 14px;
  }
}
.compact1-module__subtitle {
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 992px) {
  .compact1-module__subtitle {
    font-size: 14px;
  }
}
.compact1-module__logo {
  width: 150px;
  background-color: #ffffff;
}
.compact1-module__logo img {
  max-width: 100%;
}
.compact1-module__body {
  flex: 1;
  text-transform: uppercase;
}
.compact1-module__content {
  flex: 1;
  position: relative;
}
.compact1-module__content.compact1-module__isPaused::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
@-webkit-keyframes compact1-module__pulse {
  0%, 50%, 100% {
    opacity: 1;
    z-index: 1;
  }
  25%, 75% {
    opacity: 0;
    z-index: -1;
  }
}
@-moz-keyframes compact1-module__pulse {
  0%, 50%, 100% {
    opacity: 1;
    z-index: 1;
  }
  25%, 75% {
    opacity: 0;
    z-index: -1;
  }
}
@-ms-keyframes compact1-module__pulse {
  0%, 50%, 100% {
    opacity: 1;
    z-index: 1;
  }
  25%, 75% {
    opacity: 0;
    z-index: -1;
  }
}
@keyframes compact1-module__pulse {
  0%, 50%, 100% {
    opacity: 1;
    z-index: 1;
  }
  25%, 75% {
    opacity: 0;
    z-index: -1;
  }
}
.compact1-module__hover {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
}
.compact1-module__horizontalGrid {
  width: 500px;
}
@media (max-width: 992px) {
  .compact1-module__horizontalGrid {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .compact1-module__horizontalGrid {
    width: 150px;
  }
}
.compact1-module__verticalGrid.compact1-module__columns2 {
  width: 259px;
}
.compact1-module__verticalGrid.compact1-module__columns3 {
  width: 379px;
}
.compact1-module__verticalGrid.compact1-module__columns4 {
  width: 499px;
}
.compact1-module__pick {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  flex: 1;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  display: flex;
  height: 100%;
}
.compact1-module__verticalGrid .compact1-module__pick {
  margin-right: 5px;
}
.compact1-module__verticalGrid .compact1-module__pick:last-child {
  margin-right: 0;
}
.compact1-module__horizontalGrid .compact1-module__pick {
  margin-bottom: 5px;
}
.compact1-module__horizontalGrid .compact1-module__pick:last-child {
  margin-bottom: 0;
}
.compact1-module__pick:not([disabled]):hover .compact1-module__hover {
  opacity: 0.15;
}
.compact1-module__pick.compact1-module__isStopped:not(.compact1-module__highlightedChoice)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.5);
}
.compact1-module__roundedBorders .compact1-module__pick.compact1-module__isStopped:not(.compact1-module__highlightedChoice)::before {
  border-radius: 10px;
}
.compact1-module__activePick {
  content: "";
  position: absolute;
  border-radius: 9px;
  top: -6px;
  bottom: -6px;
  left: -6px;
  right: -6px;
  border: 6px solid transparent;
  z-index: 10;
}
.compact1-module__roundedBorders .compact1-module__voteBtn {
  border-radius: 10px;
}
.compact1-module__pickBody {
  position: relative;
  width: 115px;
}
.compact1-module__horizontalGrid .compact1-module__pickBody {
  width: 100%;
  height: 46px;
}
.compact1-module__pickContainer {
  flex: 1;
}
.compact1-module__roundedBorders .compact1-module__pickContainer {
  border-radius: 10px;
  overflow: hidden;
}
.compact1-module__enabledGradient .compact1-module__pickContainer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.05);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4));
}
.compact1-module__pickContent {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-align: right;
  padding: 10px;
  font-weight: 500;
}
.compact1-module__horizontalGrid .compact1-module__pickContent {
  width: 20%;
}
.compact1-module__result {
  font-size: inherit;
  position: relative;
  z-index: 3;
}
.compact1-module__label {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 10px;
  position: absolute;
  padding: 3px 10px;
  color: #ffffff;
  opacity: 0;
  border-radius: 15px;
  bottom: -11px;
  z-index: 1;
}
.compact1-module__label i {
  padding-left: 5px;
}
.compact1-module__activeLabel {
  opacity: 1;
}
.compact1-module__legend {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  padding: 5px 10px;
  align-items: center;
}
.compact1-module__verticalGrid .compact1-module__legend {
  height: 80px;
  justify-content: center;
  width: 100%;
}
.compact1-module__horizontalGrid .compact1-module__legend {
  flex: 1;
  padding: 10px 20px;
}
.compact1-module__legendContent {
  font-size: inherit;
  word-break: break-word;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.compact1-module__horizontalGrid .compact1-module__legendContent {
  text-align: left;
}
.compact1-module__pickImage, .compact1-module__choiceListStyle {
  width: 115px;
  height: 115px;
  position: relative;
}
.compact1-module__horizontalGrid .compact1-module__pickImage, .compact1-module__horizontalGrid .compact1-module__choiceListStyle {
  width: 46px;
  height: 46px;
}
.compact1-module__choiceListStyle {
  line-height: 115px;
  font-size: 30px;
  font-weight: 600;
}
.compact1-module__horizontalGrid .compact1-module__choiceListStyle {
  line-height: 46px;
}
.compact1-module__icon {
  position: absolute;
  z-index: 10;
  display: none;
}
.compact1-module__horizontalGrid .compact1-module__icon {
  right: -15px;
  top: 8px;
}
.compact1-module__verticalGrid .compact1-module__icon {
  bottom: -12px;
  left: calc(50% - 8px);
}
.compact1-module__correctType.compact1-module__userCorrectChoice .compact1-module__icon.compact1-module__correct, .compact1-module__correctType.compact1-module__correctChoice .compact1-module__icon.compact1-module__correct {
  display: block;
}
.compact1-module__correctType.compact1-module__userIncorrectChoice .compact1-module__icon.compact1-module__incorrect {
  display: block;
}
.compact1-module__messageWrapper {
  border-radius: 10px;
}
@media (max-height: 600px), (max-width: 1600px) {
  .compact1-module__layout {
    padding: 6px;
  }

  .compact1-module__header, .compact1-module__subheader {
    padding: 3px 10px;
  }

  .compact1-module__subheader {
    margin-bottom: 2px;
  }

  .compact1-module__headerWrapper {
    margin-bottom: 2px;
  }

  .compact1-module__horizontalGrid .compact1-module__pick {
    margin-bottom: 2px;
  }
  .compact1-module__horizontalGrid .compact1-module__pick:last-child {
    margin-bottom: 0;
  }

  .compact1-module__title {
    font-size: 12px;
  }
}
@media (max-height: 600px) and (max-width: 992px), (max-width: 1600px) and (max-width: 992px) {
  .compact1-module__title {
    font-size: 10px;
  }
}
@media (max-height: 600px), (max-width: 1600px) {
  .compact1-module__subtitle {
    font-size: 12px;
  }
}
@media (max-height: 600px) and (max-width: 992px), (max-width: 1600px) and (max-width: 992px) {
  .compact1-module__subtitle {
    font-size: 10px;
  }
}
@media (max-height: 600px), (max-width: 1600px) {
  .compact1-module__pickBody {
    width: 75px;
  }
  .compact1-module__horizontalGrid .compact1-module__pickBody {
    height: 23px;
  }
}
@media (max-height: 600px), (max-width: 1600px) {
  .compact1-module__pickImage, .compact1-module__choiceListStyle {
    width: 75px;
    height: 75px;
  }
  .compact1-module__horizontalGrid .compact1-module__pickImage, .compact1-module__horizontalGrid .compact1-module__choiceListStyle {
    width: 23px;
    height: 23px;
  }
}
@media (max-height: 600px), (max-width: 1600px) {
  .compact1-module__choiceListStyle {
    line-height: 75px;
    font-size: 14px;
  }
  .compact1-module__horizontalGrid .compact1-module__choiceListStyle {
    line-height: 23px;
    font-size: 18px;
  }
}
@media (max-height: 600px), (max-width: 1600px) {
  .compact1-module__legend {
    line-height: 1;
  }
  .compact1-module__horizontalGrid .compact1-module__legend {
    padding: 0 10px;
  }
  .compact1-module__verticalGrid .compact1-module__legend {
    height: 50px;
  }
}
@media (max-height: 600px), (max-width: 1600px) {
  .compact1-module__pickContent {
    padding: 0 10px;
  }
}
@media (max-height: 600px), (max-width: 1600px) {
  .compact1-module__verticalGrid.compact1-module__columns2 {
    width: 167px;
  }
  .compact1-module__verticalGrid.compact1-module__columns3 {
    width: 247px;
  }
  .compact1-module__verticalGrid.compact1-module__columns4 {
    width: 327px;
  }
}
@media (max-height: 600px), (max-width: 1600px) {
  .compact1-module__activePick {
    content: "";
    position: absolute;
    border-radius: 5px;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    border: 2px solid transparent;
    z-index: 10;
  }
}
@media (max-height: 600px), (max-width: 1600px) {
  .compact1-module__horizontalGrid .compact1-module__icon {
    right: -8px;
    top: 5px;
  }
}
@media (max-height: 500px) {
  .compact1-module__header, .compact1-module__subheader {
    padding: 2px 3px;
  }

  .compact1-module__title {
    font-size: 11px;
  }
}
@media (max-height: 500px) and (max-width: 992px) {
  .compact1-module__title {
    font-size: 9px;
  }
}
@media (max-height: 500px) {
  .compact1-module__subtitle {
    font-size: 11px;
  }
}
@media (max-height: 500px) and (max-width: 992px) {
  .compact1-module__subtitle {
    font-size: 9px;
  }
}
@media (max-height: 500px) {
  .compact1-module__verticalGrid.compact1-module__columns2 {
    width: 127px;
  }
  .compact1-module__verticalGrid.compact1-module__columns3 {
    width: 187px;
  }
  .compact1-module__verticalGrid.compact1-module__columns4 {
    width: 247px;
  }
}
@media (max-height: 500px) {
  .compact1-module__pickBody {
    width: 55px;
  }
  .compact1-module__horizontalGrid .compact1-module__pickBody {
    height: 11px;
  }
}
@media (max-height: 500px) {
  .compact1-module__pickImage, .compact1-module__choiceListStyle {
    width: 55px;
    height: 55px;
  }
  .compact1-module__horizontalGrid .compact1-module__pickImage, .compact1-module__horizontalGrid .compact1-module__choiceListStyle {
    width: 11px;
    height: 11px;
  }
}
@media (max-height: 500px) {
  .compact1-module__choiceListStyle {
    line-height: 55px;
    font-size: 10px;
  }
  .compact1-module__horizontalGrid .compact1-module__choiceListStyle {
    line-height: 11px;
    font-size: 14px;
  }
}
@media (max-height: 500px) {
  .compact1-module__pickContent {
    padding: 0 3px;
  }
}
@media (max-height: 500px) {
  .compact1-module__legend {
    padding: 3px 5px;
  }
  .compact1-module__horizontalGrid .compact1-module__legend {
    padding: 0 3px;
  }
  .compact1-module__verticalGrid .compact1-module__legend {
    height: 40px;
  }
}
@media (max-height: 500px) {
  .compact1-module__horizontalGrid .compact1-module__icon {
    right: -8px;
    top: 5px;
  }
}
.compact1-module__eliminationWrapper {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -25px;
  z-index: -2;
}
.compact1-module__predictorHeaderInfo {
  height: 30px;
}