:root {
  --loader-background-top-color: #181221;
  --loader-background-bottom-color: #000000;
}

html {
  position: fixed;
  background: black;
  height: 100%;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  overflow-y: hidden;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-overflow-scrolling: touch;
  min-zoom: 1;
  zoom: 1;
  max-zoom: 1;
  overscroll-behavior-x: none;
}

body {
  overscroll-behavior-x: none;
  position: fixed;
  height: 100%;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  line-height: 1.2;
  width: 100%;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  overflow: hidden;
  vertical-align: baseline;
  -webkit-overflow-scrolling: touch;
  min-zoom: 1;
  zoom: 1;
  max-zoom: 1;
}

* {
  overscroll-behavior-x: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  zoom: 1;
  max-zoom: 1;
}

#ui {
  /* if its relative then it sometimes goes out of screen to top */
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 1999;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
#ui #canvasArea {
  position: relative;
  display: flex;
  flex: 1;
}
#ui .bettingBar {
  touch-action: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #171A46;
  align-items: stretch;
  box-sizing: border-box;
  z-index: 100;
}
#ui .bettingBar .iosSafeAreaBar {
  height: env(safe-area-inset-bottom);
}
#ui .bettingBar .iosSafeAreaBar.iosFullscreen {
  padding-bottom: 15px;
}

#gameCanvas {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

#stats {
  position: fixed;
  z-index: 2000;
  zoom: 0.5;
  opacity: 0.8;
  user-select: none;
}

#preloader-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 10000;
}

.spinner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border-top: 3px solid white;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body {
  background: linear-gradient(to bottom, var(--loader-background-top-color), var(--loader-background-bottom-color));
}

.popupContainer {
  position: relative;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  background: rgba(70, 51, 108, 0.26);
  z-index: 10;
}
.popupContainer .interationArea {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: all;
}
.popupContainer .popup {
  background: rgba(4.6, 5.2, 14, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  position: absolute;
  max-width: 420px;
  max-height: calc(100% - 16px - 4vmin);
  width: 90%;
  border: 2px rgba(24.7806451613, 28.0129032258, 75.4193548387, 0.6);
  border-radius: 8px;
  box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.2);
  overflow: auto;
  opacity: 1;
  transition: transform 0.3s ease;
}
.popupContainer .popup.showing {
  transform: scale(0);
  opacity: 0;
}
.popupContainer .popup .header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(4.6, 5.2, 14, 0.4);
  text-transform: uppercase;
  height: 40px;
  min-height: 40px;
}
@media (max-height: 460px) {
  .popupContainer .popup .header {
    height: 24px;
    min-height: 24px;
  }
}
.popupContainer .popup .header .closeButton {
  pointer-events: all;
  position: absolute;
  right: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  color: white;
  cursor: pointer;
}
.popupContainer .popup .header .closeButton .icon {
  width: 16px;
}
.popupContainer .popup .body {
  display: flex;
  flex-direction: column;
  overflow: auto;
}
@media (hover: hover) {
  .popupContainer .popup .body::-webkit-scrollbar-thumb {
    background-color: rgba(42.4387096774, 47.9741935484, 129.1612903226, 0.6);
  }
  .popupContainer .popup .body::-webkit-scrollbar-track {
    background-color: transparent;
  }
}

.ErrorPopup .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  padding: 16px 0;
}
.ErrorPopup__text_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ErrorPopup__description {
  padding: 0 8px;
  text-align: center;
  user-select: all;
}
.ErrorPopup__correlation-id {
  padding: 16px 0 0 0;
  text-align: center;
  user-select: all;
}
.ErrorPopup--notDismissable .ErrorPopup__text_container {
  margin-top: -20px;
}
.ErrorPopup .noYesSection {
  margin: 24px 8px 0 8px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(4.6, 5.2, 14, 0.6);
  color: #d3d3d3;
  height: 40px;
  border-radius: 7px;
  padding: 0 12px;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: all;
  border: none;
  font-family: inherit;
  outline: none;
}
@media (max-height: 460px) {
  .button {
    height: 32px;
    border-radius: 6px;
    padding: 0 12px;
  }
}

.toggle-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(22, 16, 37, 0.8);
  height: 40px;
  border-radius: 7px;
  padding: 0 16px;
  font-size: 21px;
  font-weight: normal;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  color: #d3d3d3;
}
@media (max-height: 460px) {
  .toggle-button {
    height: 32px;
    border-radius: 6px;
    padding: 0 12px;
  }
}
.toggle-button--active {
  box-shadow: 0px 0px 3px 1px rgb(149.2516129032, 155.6663006177, 249.7483870968), inset 0px 0px 3px 1px rgb(149.2516129032, 155.6663006177, 249.7483870968);
  font-weight: bold;
  background: rgba(53.7547169811, 39.0943396226, 90.4056603774, 0.8);
  color: #fff;
}
.toggle-button--non-interactive {
  pointer-events: none;
}

.typography {
  color: #d3d3d3;
  font-size: 16px;
  text-transform: uppercase;
  white-space: pre-wrap;
}
.typography--not-interactive {
  color: rgb(144.7, 144.7, 144.7);
}
.typography--big-heading {
  font-size: 22px;
  line-height: 25px;
  letter-spacing: 2px;
}
.typography--heading {
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 2px;
}
.typography--small-heading {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1.5px;
}
.typography--text-small {
  font-size: 11px;
}
.typography--bold {
  font-weight: bold;
}

.noYesSection {
  display: flex;
  justify-content: center;
  user-select: none;
}
.noYesSection .iconContainer {
  user-select: none;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  margin: 0 20px;
  box-shadow: 0px 3px 1px 1px rgba(25, 25, 25, 0.2);
}
@media (max-height: 460px) {
  .noYesSection .iconContainer {
    width: 50px;
    height: 50px;
    border-radius: 25px;
  }
}
.noYesSection .close {
  background-color: #b34d0d;
}
.noYesSection .close svg {
  width: 24px;
}
.noYesSection .accept {
  background-color: #748c1c;
}
.noYesSection .accept.disabled {
  opacity: 0.5;
}
.noYesSection .accept svg {
  width: 44px;
}

* {
  font-family: "Open Sans", sans-serif;
}

#preloader-container {
  flex-direction: column;
}
#preloader-container .Typography {
  padding-top: 16px;
}

/*# sourceMappingURL=index.css.map */
