@charset "UTF-8";
html,
body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  background-color: black;
  width: 100%;
}

@media screen and (orientation: portrait) {
  /*
  html {
    transform: rotate3d(0, 0, 1, 90deg);
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -moz-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    width:100vh;
    height:100vw;
    transform-origin: top left;
    overflow-x: visible;
    position: absolute;
    top: 0;
    left: 100vw;
  }
  */
}
.unselectable {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-drag: none;
  user-select: none;
  -webkit-user-drag: none;
}

.selected {
  background-color: #171727;
  border-color: #171727;
}

.unstable-connection-blinker {
  visibility: hidden;
  position: absolute;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgba(0, 0, 0, 0.438);
  padding-top: 5px;
  padding-bottom: 5px;
  color: white;
  font-size: 1.5em;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  z-index: 1;
  width: 100%;
}

.void-warning {
  /*
  position: absolute;
  font-family: $font-with-fallback;
  padding-top: 5px;
  padding-bottom: 5px;
  color: white;
  font-size: 1.5em;
  z-index: 1;
  width: 100%;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.438);
  */
  position: absolute;
  font-family: Arial, Helvetica, sans-serif;
  padding-top: 0px;
  padding-bottom: 0px;
  color: white;
  font-size: 1.5em;
  z-index: 1;
  width: 75%;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.438);
  border-top-right-radius: 90px;
  border-top-left-radius: 90px;
  /*left: 13%;*/
  font-weight: bold;
  left: 50%;
  /*transform: translate(-50%, 0%); */
  /* Disappearance bug fix on Chrome */
  transform: translate3d(-50%, 0%, 0);
  /*top: -14px;*/
  /*
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-right: 1px solid black;
  */
}

.void-warning-canvas-player-fix {
  transform: translate3d(-50%, -18%, 0);
}

.handpay-lock-info {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  background-color: black;
  padding: 20px;
}

.collapsible:after {
  /*content: '\02795\fe0e';*/
  /* Unicode character for "plus" sign (+) */
  /*  font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
    -webkit-text-fill-color: white;
    -webkit-text-fill-color: rgb(255, 255, 255);
    -webkit-opacity: 1; */
}

.active:after {
  content: "➖︎";
  /* Unicode character for "minus" sign (-) */
  /*color: #403d3d;*/
  color: white;
  -webkit-text-fill-color: white;
  -webkit-text-fill-color: white;
  -webkit-opacity: 1;
  /*background: white;*/
}

.chatbox-window {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0), #0f3600);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom-right-radius: 5px;
  padding-bottom: 5px;
  border: 0.2em solid #ffffff28;
  overflow: hidden;
  position: relative;
  display: none;
  min-width: 100px;
  min-height: 100px;
  width: 40vw;
  height: 30vh;
  border-radius: 5px;
  touch-action: none;
}

.chatbox-window .ui-resizable-se {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(50px, 2vw, 100px);
  height: clamp(50px, 2vw, 100px);
  touch-action: all;
}

.chatbox-close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: clamp(50px, 2vw, 100px);
  height: clamp(50px, 2vw, 100px);
  touch-action: all;
}

.chatbox-close-button img {
  width: clamp(50px, 2vw, 100px);
  height: clamp(50px, 2vw, 100px);
  filter: grayscale(1) invert(1) brightness(0.7);
  touch-action: all;
}

.chatbox-input {
  --widthIkonce: clamp(50px, 2vw, 100px);
  --widthInPadding: calc(var(--widthIkonce) + 15px);
  bottom: 43px;
  width: calc(100% - var(--widthInPadding));
  margin-left: 5px;
  margin-bottom: 20px;
  margin-right: 20px;
  padding-left: 5px;
  background-color: #ffffff28;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: calc(10px + 1.25em);
  pointer-events: all;
  overflow: hidden;
  position: relative;
  touch-action: all;
}

@media only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
  .chatbox-window .ui-resizable-se {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(100px, 2vw, 150px);
    height: clamp(100px, 2vw, 150px);
    touch-action: all;
  }

  .chatbox-close-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: clamp(100px, 2vw, 150px);
    height: clamp(100px, 2vw, 150px);
    touch-action: all;
  }

  .chatbox-close-button img {
    width: clamp(100px, 2vw, 150px);
    height: clamp(100px, 2vw, 150px);
    filter: grayscale(1) invert(1) brightness(0.7);
    touch-action: all;
  }

  .chatbox-input {
    --widthIkonce: clamp(100px, 2vw, 150px);
    --widthInPadding: calc(var(--widthIkonce) + 15px);
    bottom: 43px;
    width: calc(100% - var(--widthInPadding));
    margin-left: 5px;
    margin-bottom: 20px;
    margin-right: 20px;
    padding-left: 5px;
    background-color: #ffffff28;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: calc(10px + 1.25em);
    pointer-events: all;
    overflow: hidden;
    position: relative;
    touch-action: all;
  }
}
.chatbox-input:focus {
  outline-style: none;
  box-shadow: none;
  border-color: transparent;
}

.chatbox-input::-webkit-input-placeholder {
  color: white;
}

.chatbox-input:-ms-input-placeholder {
  color: white;
}

.chatbox-input::placeholder {
  color: white;
}

.chatbox-input:focus::placeholder {
  color: transparent;
}

.chatbox-inputinput:focus::-webkit-input-placeholder {
  color: transparent;
}

.chatbox-inputinput:focus:-moz-placeholder {
  color: transparent;
}

/* FF 4-18 */
.chatbox-inputinput:focus::-moz-placeholder {
  color: transparent;
}

/* FF 19+ */
.chatbox-inputinput:focus:-ms-input-placeholder {
  color: transparent;
}

/* IE 10+ */
.chatbox-messages {
  color: #ffd000;
  font-size: calc(9px + 1em);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  width: calc(100% - 60px);
  height: 100%;
  bottom: 50px;
  padding-left: 10px;
  text-shadow: 0 0 10px black;
  touch-action: none;
}

.chatbox-users-message {
  padding: 2px;
  padding-left: 5px;
  touch-action: none;
}

.win-report-window {
  font-family: Arial, Helvetica, sans-serif;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 1rem, #000 calc(100% - 1rem), transparent);
  mask-image: linear-gradient(180deg, transparent 0, #000 1rem, #000 calc(100% - 1rem), transparent);
  /*background-color: rgba(26, 26, 26, 0.20);*/
  /*background-color: gray;*/
  overflow: hidden;
  position: absolute;
  display: -webkit-flex;
  display: flex;
  left: 0;
  top: 0;
  /*bottom: 5.3rem;
  top: 4.5rem;*/
  width: 38rem;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  height: 350px;
}

.win-report-inner-wrap {
  position: absolute;
  left: 0;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  font-weight: 500;
  -webkit-flex-direction: column;
  flex-direction: column;
  max-width: 42rem;
  padding-left: 1rem;
}

.win-report-outer {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  opacity: 1;
  overflow: hidden;
  margin-left: -1rem;
  /*
  -webkit-mask-image: linear-gradient(180deg,transparent 0,#000 1rem,#000 calc(100% - 1rem),transparent);
  mask-image: linear-gradient(180deg,transparent 0,#000 1rem,#000 calc(100% - 1rem),transparent);
  */
  transition: opacity 1s ease-in-out;
}

#win-report-scrollable {
  will-change: transform;
  position: absolute;
  top: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-size: 1.5rem;
  /*line-height:1.3;*/
  text-shadow: 0.1rem 0.1rem 0.1rem #000;
  /* Set this to increase the time it takes for the header of win report window to show up */
  padding-top: 5px;
  /*white-space:pre;*/
}

#win-report-scrollable p {
  margin: 0;
  padding-top: 3px;
}

.win-report-total-header {
  font-size: 95%;
  color: white;
  margin-bottom: 0px;
  text-shadow: 1px 1px #000000;
}

.win-report-total-players {
  font-size: 95%;
  color: white;
  font-weight: bold;
  font-size: 94%;
}

.win-report-total-won {
  font-size: 95%;
  color: yellow;
  font-weight: bold;
  font-size: 94%;
}

.win-report-top-players {
  font-size: 75% !important;
  color: yellow;
  text-shadow: 1px 1px #000000;
  font-size: 94%;
}

.win-report-normal-players {
  font-size: 75% !important;
  color: white;
  text-shadow: 1px 1px #000000;
  font-size: 75%;
}

::-webkit-scrollbar {
  width: 12px !important;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px !important;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5) !important;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #41617D !important;
}

.lds-roller {
  z-index: 1;
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  left: 41%;
  top: 35%;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.warning-indicator {
  width: 27px;
  vertical-align: text-top;
  opacity: 1;
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.blinking-element {
  animation: blinker 0.8s linear infinite;
}

@keyframes blinker {
  80% {
    opacity: 0;
  }
}

/*# sourceMappingURL=main.155bb2df.css.map */