/**
 * xdialog.3.4.0.css
 * https://github.com/xxjapp/xdialog
 */

/* General styles for dialogs */

/*
Styles for the html/body for special dialog where we want 3d effects
Note that we need a xd-container wrapping all content on the page for the
perspective effects (not including the dialogs and the overlay).
*/

.xd-perspective,
.xd-perspective body {
  height: 100%;
  overflow: hidden;
}

.xd-perspective body {
  background: #222;
  perspective: 600px;
}

.xd-container {
  background: #fffffe;
  min-height: 100%;
}

.xd-dialog {
  position: fixed;
  width: auto;
  max-width: 100%;
  min-width: 320px;
  height: auto;
  visibility: hidden;
  backface-visibility: hidden;
}

.xd-center {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.xd-center-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.xd-show {
  visibility: visible;
}

.xd-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.xd-show-overlay {
  opacity: 1;
  visibility: visible;
}

.xd-spin-overlay {
  transition: all 0.1s ease-in-out;
}

/* Content styles */

.xd-content {
  color: #000;
  background: #fffffe;
  position: relative;
  border-radius: 3px;
  margin: 0 auto;
  box-shadow: 0px 0px 40px 0 rgba(0, 0, 0, 0.8);
}

.xd-content .xd-title {
  margin: 0;
  padding: 0.6em;
  text-align: center;
  font-size: 1.25em;
  font-weight: 300;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px 3px 0 0;
  border-bottom: #ccc 1px solid;
}

.xd-content .xd-body {
  padding: 1em 2em;
  font-weight: 300;
}

.xd-content .xd-body .xd-body-inner {
  line-height: initial;
  overflow: auto;
  max-height: calc(100vh - 11em);
}

.xd-content .xd-buttons {
  padding: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.xd-content .xd-body + .xd-buttons {
  padding-top: 0em;
}

.xd-content .xd-button {
  border: none;
  padding: 0.6em 1.2em;
  background: #9e9e9e;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 10em;
  margin: 0.2em 1em;
  border-radius: 2px;
  outline: none;
}

.xd-content .xd-button.xd-ok {
  background: #4caf50;
}

.xd-content .xd-button.xd-delete {
  background: #f44336;
}

.xd-content .xd-button:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* info styles */

.xd-info.xd-dialog {
  top: 12px;
}

.xd-info .xd-content {
  background: #73b573;
  color: white;
  opacity: 0.9;
  box-shadow: 0 0 12px #999;
}

/* warn styles */

.xd-warn.xd-dialog {
  top: 12px;
}

.xd-warn .xd-content {
  background: #f89406;
  color: white;
  opacity: 0.9;
  box-shadow: 0 0 12px #999;
}

/* error styles */

.xd-error .xd-title {
  background: #670000;
  color: white;
  border-bottom: #c46258 1px solid;
  opacity: 1;
}

.xd-error .xd-content {
  color: black;
  opacity: 0.9;
}

.xd-error .xd-content .xd-button {
  background: #a44238;
}

/* fatal styles */

.xd-fatal.xd-dialog {
  width: 100%;
}

.xd-fatal .xd-title {
  background: #430000;
  color: white;
  border-bottom: #c46258 1px solid;
  opacity: 1;
  border-radius: 0;
}

.xd-fatal .xd-content {
  background: #580000;
  color: white;
  opacity: 0.9;
}

.xd-fatal ~ .xd-overlay {
  background: rgba(0, 0, 0, 0.8);
}

/* Individual dialog styles with animations/transitions */

/* Effect 1: Fade in and scale up */

.xd-effect-1 .xd-content {
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s;
}

.xd-show.xd-effect-1 .xd-content {
  transform: scale(1);
  opacity: 1;
}

/* Effect 2: Slide from the right */

.xd-effect-2 .xd-content {
  transform: translateX(20%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.xd-show.xd-effect-2 .xd-content {
  transform: translateX(0);
  opacity: 1;
}

/* Effect 3: Slide from the bottom */

.xd-effect-3 .xd-content {
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s;
}

.xd-show.xd-effect-3 .xd-content {
  transform: translateY(0);
  opacity: 1;
}

/* Effect 4: Newspaper */

.xd-effect-4 .xd-content {
  transform: scale(0) rotate(360deg);
  opacity: 0;
}

.xd-show.xd-effect-4 ~ .xd-overlay,
.xd-effect-4 .xd-content {
  transition: all 0.5s;
}

.xd-show.xd-effect-4 .xd-content {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

/* Effect 5: fall */

.xd-effect-5.xd-dialog {
  perspective: 1300px;
}

.xd-effect-5 .xd-content {
  transform-style: preserve-3d;
  transform: translateZ(600px) rotateX(20deg);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.xd-show.xd-effect-5 .xd-content {
  transform: translateZ(0px) rotateX(0deg);
  opacity: 1;
}

/* Effect 6: side fall */

.xd-effect-6.xd-dialog {
  perspective: 1300px;
}

.xd-effect-6 .xd-content {
  transform-style: preserve-3d;
  transform: translate(30%) translateZ(600px) rotate(10deg);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.xd-show.xd-effect-6 .xd-content {
  transform: translate(0%) translateZ(0) rotate(0deg);
  opacity: 1;
}

/* Effect 7:  slide and stick to top */

.xd-effect-7 {
  top: 0;
  transform: translateX(-50%);
}

.xd-effect-7 .xd-content {
  transform: translateY(-200%);
  transition: all 0.3s;
  opacity: 0;
}

.xd-show.xd-effect-7 .xd-content {
  transform: translateY(0%);
  border-radius: 0 0 3px 3px;
  opacity: 1;
}

/* Effect 8: 3D flip horizontal */

.xd-effect-8.xd-dialog {
  perspective: 1300px;
}

.xd-effect-8 .xd-content {
  transform-style: preserve-3d;
  transform: rotateY(-70deg);
  transition: all 0.3s;
  opacity: 0;
}

.xd-show.xd-effect-8 .xd-content {
  transform: rotateY(0deg);
  opacity: 1;
}

/* Effect 9: 3D flip vertical */

.xd-effect-9.xd-dialog {
  perspective: 1300px;
}

.xd-effect-9 .xd-content {
  transform-style: preserve-3d;
  transform: rotateX(-70deg);
  transition: all 0.3s;
  opacity: 0;
}

.xd-show.xd-effect-9 .xd-content {
  transform: rotateX(0deg);
  opacity: 1;
}

/* Effect 10: 3D sign */

.xd-effect-10.xd-dialog {
  perspective: 1300px;
}

.xd-effect-10 .xd-content {
  transform-style: preserve-3d;
  transform: rotateX(-60deg);
  transform-origin: 50% 0;
  opacity: 0;
  transition: all 0.3s;
}

.xd-show.xd-effect-10 .xd-content {
  transform: rotateX(0deg);
  opacity: 1;
}

/* Effect 11: Super scaled */

.xd-effect-11 .xd-content {
  transform: scale(2);
  opacity: 0;
  transition: all 0.3s;
}

.xd-show.xd-effect-11 .xd-content {
  transform: scale(1);
  opacity: 1;
}

/* Effect 12:  Just me */

.xd-effect-12 .xd-content {
  box-shadow: none;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s;
}

.xd-show.xd-effect-12 ~ .xd-overlay {
  background: #fffffe;
}

.xd-effect-12 .xd-content .xd-title,
.xd-effect-12 .xd-content {
  background: transparent;
}

.xd-show.xd-effect-12 .xd-content {
  transform: scale(1);
  opacity: 1;
}

/* Effect 13: 3D slit */

.xd-effect-13.xd-dialog {
  perspective: 1300px;
}

.xd-effect-13 .xd-content {
  transform-style: preserve-3d;
  animation: slit2 0.7s forwards ease-in;
  transition: all 0.7s;
}

.xd-show.xd-effect-13 .xd-content {
  animation: slit 0.7s forwards ease-out;
}

.xd-effect-13 ~ .xd-overlay {
  transition: all 0.3s 0.4s;
}

.xd-show.xd-effect-13 ~ .xd-overlay {
  transition: all 0.3s;
}

@keyframes slit {
  0% {
    transform: translateZ(-3000px) rotateY(90deg);
    opacity: 0;
  }
  50% {
    transform: translateZ(-250px) rotateY(89deg);
    opacity: 0.5;
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateZ(0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes slit2 {
  0% {
    transform: translateZ(0) rotateY(0deg);
    opacity: 1;
  }
  50% {
    transform: translateZ(-250px) rotateY(89deg);
    opacity: 0.5;
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateZ(-3000px) rotateY(90deg);
    opacity: 0;
  }
}

/* Effect 14:  3D Rotate from bottom */

.xd-effect-14.xd-dialog {
  perspective: 1300px;
}

.xd-effect-14 .xd-content {
  transform-style: preserve-3d;
  transform: translateY(100%) rotateX(90deg);
  transform-origin: 0 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.xd-show.xd-effect-14 .xd-content {
  transform: translateY(0%) rotateX(0deg);
  opacity: 1;
}

/* Effect 15:  3D Rotate in from left */

.xd-effect-15.xd-dialog {
  perspective: 1300px;
}

.xd-effect-15 .xd-content {
  transform-style: preserve-3d;
  transform: translateZ(100px) translateX(-30%) rotateY(90deg);
  transform-origin: 0 100%;
  opacity: 0;
  transition: all 0.3s;
}

.xd-show.xd-effect-15 .xd-content {
  transform: translateZ(0px) translateX(0%) rotateY(0deg);
  opacity: 1;
}

/* Effect 16:  Blur */

.xd-show.xd-effect-16 ~ .xd-container {
  -moz-filter: blur(3px);
  filter: blur(3px);
}

.xd-effect-16 .xd-content {
  transform: translateY(-5%);
  opacity: 0;
}

.xd-show.xd-effect-16 ~ .xd-container,
.xd-effect-16 .xd-content {
  transition: all 0.3s;
}

.xd-show.xd-effect-16 .xd-content {
  transform: translateY(0);
  opacity: 1;
}

/* Effect 17:  Slide in from bottom with perspective on xd-container */

.xd-effect-17 ~ .xd-container {
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s 0.2s;
}

.xd-effect-17 ~ .xd-container,
.xd-effect-17 ~ .xd-overlay {
  transform: rotateX(0deg);
  transform-origin: 50% 0%;
  transform-style: preserve-3d;
}

.xd-effect-17 .xd-content {
  opacity: 0;
  transform: translateY(200%);
  transition: all 0.3s;
}

.xd-show.xd-effect-17 ~ .xd-overlay {
  transition: all 0.3s 0.2s;
}

.xd-show.xd-effect-17 ~ .xd-container {
  transition: transform 0.3s;
}

.xd-show.xd-effect-17 ~ .xd-container,
.xd-show.xd-effect-17 ~ .xd-overlay {
  transform: rotateX(-2deg);
}

.xd-show.xd-effect-17 .xd-content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s 0.2s;
}

/* Effect 18:  Slide from right with perspective on xd-container */

.xd-effect-18 ~ .xd-container {
  height: 100%;
  overflow: hidden;
}

.xd-effect-18 ~ .xd-overlay {
  transition: all 0.5s 0.1s;
}

.xd-show.xd-effect-18 ~ .xd-overlay {
  transition: all 0.5s;
}

.xd-effect-18 ~ .xd-container,
.xd-effect-18 ~ .xd-overlay {
  transform-style: preserve-3d;
  transform-origin: 0% 50%;
  animation: rotateRightSideFirst2 0.5s 0.1s backwards ease-out;
}

.xd-show.xd-effect-18 ~ .xd-container,
.xd-show.xd-effect-18 ~ .xd-overlay {
  animation: rotateRightSideFirst 0.5s forwards ease-in;
}

.xd-effect-18 .xd-content {
  transform: translateX(200%);
  opacity: 0;
  transition: all 0.5s;
}

.xd-show.xd-effect-18 .xd-content {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.5s 0.1s;
}

@keyframes rotateRightSideFirst {
  0% {
    transform: translateZ(0px) rotateY(0deg);
  }
  50% {
    transform: translateZ(-50px) rotateY(5deg);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateZ(-200px);
  }
}

@keyframes rotateRightSideFirst2 {
  0% {
    transform: translateZ(-200px);
    animation-timing-function: ease-in;
  }
  50% {
    transform: translateZ(-50px) rotateY(5deg);
  }
  100% {
    transform: translateZ(0px) rotateY(0deg);
  }
}

/* Effect 19:  Slip in from the top with perspective on xd-container */

.xd-effect-19 ~ .xd-container {
  height: 100%;
  overflow: hidden;
}

.xd-effect-19 ~ .xd-overlay {
  transition: all 0.5s;
}

.xd-show.xd-effect-19 ~ .xd-overlay {
  transition: all 0.5s;
}

.xd-effect-19 ~ .xd-container,
.xd-effect-19 ~ .xd-overlay {
  transform-style: preserve-3d;
  transform-origin: 50% 100%;
  animation: OpenTop2 0.5s backwards ease-out;
}

.xd-show.xd-effect-19 ~ .xd-container,
.xd-show.xd-effect-19 ~ .xd-overlay {
  animation: OpenTop 0.5s forwards ease-in;
}

.xd-effect-19 .xd-content {
  transform: translateY(-200%);
  opacity: 0;
  transition: all 0.5s 0.1s;
}

.xd-show.xd-effect-19 .xd-content {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s 0.1s;
}

@keyframes OpenTop {
  50% {
    transform: rotateX(10deg);
    animation-timing-function: ease-out;
  }
}

@keyframes OpenTop2 {
  0% {
    animation-timing-function: ease-in;
  }
  50% {
    transform: rotateX(10deg);
    animation-timing-function: ease-out;
  }
}

@media screen and (max-width: 32em) {
  body,
  button {
    font-size: 75%;
  }
}

/*
 * loading animation
 * SEE: http://tobiasahlin.com/spinkit/
 */

.sk-fading-circle {
  width: 100px;
  height: 100px;
  position: relative;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
  transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
  transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
  transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
  transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
  transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
  transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
  transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
  transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
  transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
  transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
  transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
  animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
  animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
  animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
  animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
  animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
  animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
  animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
  animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
  animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
  animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
  animation-delay: -0.1s;
}

@keyframes sk-circleFadeDelay {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

html {
  background-color: #000;
}
body.chronos-loading {
  overflow: hidden;
}
body {
  margin: 0;
  height: 100%;
  width: 100%;
  min-height: -webkit-fill-available;
  -moz-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.chronos-loading #chronos-menu-bar {
  display: none;
}
.chronos-loading #game {
  display: none;
}
.preloader {
  position: absolute;
  background-color: #000;
  height: 100%;
  width: 100%;
  z-index: 2401;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1s;
}
.preloader .preloader-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  width: 362px;
  height: 362px;
}
.preloader .preloader-image-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.preloader .preloader-background {
  margin: 2vh auto;
  width: 30%;
  text-align: center;
  padding: 4px;
  border-radius: 20px;
  background: #006378;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}
.preloader .preloader-background .preloader-progress {
  height: 15px;
  border-radius: 20px;
  transition: 0.1s linear;
  transition-property: width, background-color;
  width: 0%;
  background-color: #0099cc;
  animation: progressAnimation 0.1s;
}
.chronos-menu-bar {
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 501;
  white-space: nowrap;
  overflow: hidden;
  background-color: #000;
  align-items: center;
  height: 28px;
}
.chronos-menu-bar .chronos-menu-btn {
  color: white;
  margin-left: 10px;
  font-size: 1em;
  border: none;
  background-color: #000;
}
.chronos-bet-history-view {
  position: fixed;
  top: 28px;
  width: 100%;
  height: calc(100% - 28px);
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  color: white;
  overflow: auto;
}
.chronos-display-none {
  display: none;
}
/* CSS for responsive table */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
}
.responsive-table th,
.responsive-table td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: center;
}
@media (max-width: 768px) {
  .responsive-table th,
  .responsive-table td {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .responsive-table th,
  .responsive-table td {
    font-size: 10px;
  }
}
@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (orientation: portrait) {
  .preloader .preloader-background {
    width: 70%;
  }
}

