/*** COPYRIGHT (c) MICROGAMING 2021 ***/
/*** VERSION: 0.0.2 ***/
/*** SHA: a57344b3fda9f1f45e439bd37eb5d5dfebeca2a8 ***/
/* --- Temp fix for bootstrap --- */
body {
  background: none !important;
}

/* --- Fix visuallyhidden class so the game does not move up when reg markets items are hidden --- */
.visuallyhidden {
  display: none;
}

#gameCanvas{
  -webkit-user-select : none !important;
  user-select : none !important ;
  -ms-user-select : none !important;
  -moz-user-select : none !important;
  -o-user-select : none !important;
}


/* --- Complete and utter override of V's clock --- */
#inGameClock.default-clock {
    width: auto !important;
    height: auto !important;
    line-height: 12px !important;
    font-size: 12px !important;
    position: fixed;
    top: 0;
    right: 1px;
    /* CLOCK STAYS ALWAY ON SCREEN */
    visibility:visible!important;
    clip:auto!important;
    display:block!important;
    margin:0!important;
    -webkit-user-select: none!important;
    -khtml-user-select: none!important;
    -moz-user-select: none!important;
    -ms-user-select: none!important;
    -o-user-select: none!important;
    user-select: none!important;
    -webkit-touch-callout: none!important;
    -webkit-user-select: none!important;
}



/* --- Go home loading bar... --- */
.meter-wrap-bg-container { visibility: hidden; }
.meter-wrap-bg-left, .meter-wrap-bg-bar, .meter-wrap-bg-right { visibility: hidden; }
.meter-wrap-bg-left { visibility: hidden; }
.meter-wrap-bg-bar { visibility: hidden; }
.meter-wrap-bg-right { visibility: hidden; }
.meter-value { visibility: hidden; }
.meter-bg-container { visibility: hidden; }
.meter-bg-bar, .meter-bg-left, .meter-bg-right { visibility: hidden; }
.meter-bg-bar { visibility: hidden; }
.meter-bg-left { visibility: hidden; }
.meter-bg-right { visibility: hidden; }


/* --- Override the preloader background --- */
#preloaderBackground {
  position: fixed;
  z-index: 9999;
  background-repeat: no-repeat;
  background-size: contain !important;
  background-position: 50% 0% !important;
  transform: translate(0px, 0px);
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin: auto;
  height: auto !important;
  width: auto !important;
}

@media screen and (orientation: portrait) {
    .preloaderBackground {
        transform-origin: 0 0;
        transform: rotate(90deg);
    }
}


/* --- The shiny new spin loader --- */
.meter-wrap {
    background-image: url("loader.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 44%;
    height: 44%;
    top: 64.5%;
    margin-left: auto;
    margin-right: auto;
    animation: spin 1s infinite steps(12);
}

@keyframes spin {
    0% { transform: rotate(0deg) scale(0.4,0.4); }
    100% { transform: rotate(360deg) scale(0.4,0.4); }
}


.meter-text-value {
  display: inline !important;
  visibility: visible !important;
    position: absolute;
    top: 79.8%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    font-size: 1.4vmax;
    font-style: bold;
    font-family: "arial", Arial, serif;
    color: white;
    text-align: center;
}

