/**
 * use example 
 * @include UIFrame.keyframes(move-the-object) {
 * 0%   { left: 100px; }
 * 100% { left: 200px; }
 * }
 */
canvas {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
}

/**
 *  _                 _   
 * | |               | |  
 * | |__   ___   ___ | |_ 
 * | '_ \ / _ \ / _ \| __|
 * | |_) | (_) | (_) | |_ 
 * |_.__/ \___/ \___/ \__|                     
 *
 */
/* UIFrame.scss */
#boot {
  position: absolute;
  top: 0px;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFFFFF;
  will-change: opacity;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
}
#boot.fadeOut {
  -webkit-animation-name: fadeout;
  animation-name: fadeout;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

#bootCentralBar {
  height: 60%;
  background-repeat: no-repeat;
  background-position: center;
  width: 1280px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
}
#bootCentralBar #bootCentralBarMain {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  height: 500px;
  position: relative;
}
#bootCentralBar .bootCentralBarSidePanel {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  width: 390px;
  height: 100%;
}
#bootCentralBar #bootCentralBarLogo > div {
  width: 184px;
  height: 100%;
}

@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-ms-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/**
 *   _____                        _____        __      
 *  / ____|                      |_   _|      / _|     
 * | |  __  __ _ _ __ ___   ___    | |  _ __ | |_ ___  
 * | | |_ |/ _` | '_ ` _ \ / _ \   | | | '_ \|  _/ _ \ 
 * | |__| | (_| | | | | | |  __/  _| |_| | | | || (_) |
 *  \_____|\__,_|_| |_| |_|\___| |_____|_| |_|_| \___/ 
 *                                                                                                       
 */
/* UIFrame.scss */
#gameInfo {
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  width: 100%;
  font-size: 14px;
  height: 0;
  top: 0;
}
#gameInfo > div {
  padding: 0 10px;
}
#gameInfo .btnClose {
  background-image: url("/launch/frameworks/typescript/images/btn_x_close.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 12px;
  right: 7px;
}
#gameInfo .btnClose:hover {
  background-image: url("/launch/frameworks/typescript/images/btn_x_close-hover.png");
}
#gameInfo .handsAndTime {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  min-width: 0;
  min-height: 0;
  position: absolute;
  top: 7px;
  right: 52px;
  width: 140px;
}
#gameInfo .sessionTimer {
  background-color: rgba(0, 0, 0, 0.6);
  margin-top: -7px;
  position: absolute;
  left: -380px;
  width: 430px;
  text-align: center;
  height: auto;
  z-index: 5000;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  -ms-transform: scale(0.8);
  top: -5px;
}
#gameInfo .clearBoth {
  display: block;
}
#gameInfo .time {
  align-self: flex-end;
  -webkit-align-self: flex-end;
  line-height: 20px;
  text-align: right;
  width: 100%;
}
#gameInfo .handsData {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  min-width: 0;
  min-height: 0;
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  /* Chrome/Safari */
  -moz-user-select: text;
  /* Firefox */
  -ms-user-select: text;
  /* IE10+ */
  user-select: text;
  text-align: right;
  width: 100%;
}
#gameInfo .handsData div {
  width: 100%;
  text-align: right;
}
#gameInfo #frReminder {
  position: absolute;
  left: 0;
  display: none;
  padding: 0;
  top: 0;
}
#gameInfo #frReminder img {
  width: 85px;
  height: 85px;
}

.iframeContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.iframeContainer .closeButton {
  background-image: url("/launch/frameworks/typescript/images/btn_x_close.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 12px;
  right: 7px;
}
.iframeContainer .closeButton:hover {
  background-image: url("/launch/frameworks/typescript/images/btn_x_close-hover.png");
}

.juegoSeguro {
  background-image: url(/launch/components/es/seguro.png);
  display: none;
  width: 125px;
  height: 21px;
  margin-left: 20px;
  vertical-align: middle;
}

.jugar {
  background-image: url(/launch/components/es/jugar.png);
  display: none;
  width: 55px;
  height: 20px;
  margin-left: 20px;
  vertical-align: middle;
}

.ma {
  background-image: url(/launch/components/es/ma.png);
  display: none;
  width: 22px;
  height: 22px;
  margin-left: 20px;
  vertical-align: middle;
}

._18 {
  background-image: url(/launch/components/es/18.png);
  display: none;
  width: 22px;
  height: 22px;
  margin-left: 20px;
  vertical-align: middle;
}

.sessionTimerIcon {
  background-image: url(/launch/components/es/iconos.png);
  background-position: 0px -49px;
  display: none;
  height: 16px;
  width: 16px;
  display: none;
  vertical-align: middle;
  margin-left: 20px;
}

.lossLimitIcon {
  background-image: url(/launch/components/es/iconos.png);
  background-position: 0px -1px;
  height: 16px;
  width: 18px;
  display: none;
  vertical-align: middle;
  margin-left: 20px;
}

.betIcon {
  background-image: url(/launch/components/es/iconos.png);
  background-position: 0px -17px;
  height: 16px;
  width: 17px;
  display: none;
  vertical-align: middle;
  margin-left: 20px;
}

.winIcon {
  background-image: url(/launch/components/es/iconos.png);
  background-position: 0px -33px;
  height: 16px;
  width: 16px;
  display: none;
  vertical-align: middle;
  margin-left: 20px;
}

.sessionTimerVal {
  display: none;
}

.lossLimitVal {
  display: none;
}

.betVal {
  display: none;
}

.winVal {
  display: none;
}

.depositLink {
  background-color: transparent;
  font-size: 13px;
  color: white;
  border: 1px solid white;
  border-radius: 5px;
  margin-left: 20px;
  padding: 3px;
  vertical-align: middle;
  display: none;
  text-decoration: none;
  line-height: 13px;
}

.depositLink:hover {
  color: lightgrey;
}

/**
 *  _                 _
 * | |               | |
 * | | ___   __ _  __| | ___ _ __
 * | |/ _ \ / _` |/ _` |/ _ \ '__|
 * | | (_) | (_| | (_| |  __/ |
 * |_|\___/ \__,_|\__,_|\___|_|
 *
 */
/* UIFrame.scss */
#loader {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  position: absolute;
  top: 278px;
}
#loader #progressBarGameType {
  font-size: 30px;
  margin-top: 20px;
  color: #dae1e1;
  top: 75px;
  position: absolute;
  width: 500px;
  left: -250px;
}
#loader #progressBarGameDescType {
  font-size: 22px;
  margin-top: 20px;
  color: #dae1e1;
  top: 118px;
  position: absolute;
  width: 500px;
  left: -250px;
}
#loader #newLoader {
  background-size: contain;
  width: 100%;
  height: 75%;
  display: block;
  position: absolute;
  top: 20px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: center;
}
#loader .loaderBg {
  background-image: url(/launch/frameworks/typescript/images/newLoaderDesktopBg.png);
  width: 500px;
  height: 500px;
  display: block;
  top: -280px;
  left: -250px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}
#loader #progressBarWrapper .progressValue {
  font-size: 0em;
  color: rgba(242, 242, 242, 0);
  text-align: center;
}
#loader #progressBarWrapper .progressBar {
  display: inline-block;
  width: 324px;
  height: 10px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  background: transparent;
  overflow: hidden;
  position: absolute;
  left: 89px;
  top: 281px;
}
#loader #progressBarWrapper .progressBarInner {
  float: left;
  width: 100%;
  height: 50px;
  background: #dae1e1;
}

#gameFeatures {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}
#gameFeatures > div {
  font-size: 16px;
  color: rgb(242, 242, 242);
  text-align: right;
}

#loaderClient {
  position: absolute;
  width: 240px;
  height: 100px;
  top: 490px;
  left: -120px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*
 *   _____
 *  |  __ \
 *  | |__) |__  _ __  _   _ _ __  ___
 *  |  ___/ _ \| '_ \| | | | '_ \/ __|
 *  | |  | (_) | |_) | |_| | |_) \__ \
 *  |_|   \___/| .__/ \__,_| .__/|___/
 *             | |         | |
 *             |_|         |_|
 *
 */
/* UIFrame.scss */
.popup-modal {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
}
.popup-modal.popup-bg {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999999999;
  opacity: 1;
  width: 100vw;
  height: 100vh;
}
.popup-modal.popup-bg.show-instantly {
  opacity: 1;
}
.popup-modal.popup-bg.show-fade {
  will-change: opacity;
  -webkit-animation-name: show-popup;
  animation-name: show-popup;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.popup-modal #inputField {
  margin: 0 auto;
}
.popup-modal .popup {
  min-width: 640px;
  max-width: 640px;
  position: relative;
  margin: 0 auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #f2f2f2;
}
.popup-modal .popup > div {
  padding: 10px 15px;
}
.popup-modal .popup .popup-header {
  text-align: left;
}
.popup-modal .popup.error .popup-header {
  display: none;
  background: -moz-linear-gradient(#ff473d, #ff8181);
  background: -webkit-linear-gradient(#ff473d, #ff8181);
  background: -o-linear-gradient(#ff473d, #ff8181);
}
.popup-modal .popup.confirm .popup-header {
  display: none;
  background: -moz-linear-gradient(#b0ff21, #ddffb1);
  background: -webkit-linear-gradient(#b0ff21, #ddffb1);
  background: -o-linear-gradient(#b0ff21, #ddffb1);
}
.popup-modal .popup.info .popup-header {
  display: none;
  background: -moz-linear-gradient(#1b44ff, #a1e4ff);
  background: -webkit-linear-gradient(#1b44ff, #a1e4ff);
  background: -o-linear-gradient(#1b44ff, #a1e4ff);
}
.popup-modal .popup.warning .popup-header {
  display: none;
  background: -moz-linear-gradient(#ffe732, #ffffb2);
  background: -webkit-linear-gradient(#ffe732, #ffffb2);
  background: -o-linear-gradient(#ffe732, #ffffb2);
}
.popup-modal .popup .popup-content {
  color: #f2f2f2;
  text-align: center;
  padding: 20px 40px 10px 40px;
  word-wrap: break-word;
}
.popup-modal .popup .popup-reminder {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
}
.popup-modal .popup .popup-reminder .reminderLabel {
  margin-right: 10px;
  color: #6b6868;
}
.popup-modal .popup .popup-reminder .customCheckBox {
  cursor: pointer;
  transform: scale3d(0.7, 0.7, 1);
  -webkit-transform: scale3d(0.7, 0.7, 1);
  -moz-transform: scale3d(0.7, 0.7, 1);
  -o-transform: scale3d(0.7, 0.7, 1);
  -ms-transform: scale3d(0.7, 0.7, 1);
}
.popup-modal .popup .popup-footer {
  text-align: center;
}

@-webkit-keyframes show-popup {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes show-popup {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes show-popup {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show-popup {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* UIFrame.scss */
.realityCheck-modal {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
  display: none;
}
.realityCheck-modal.realityCheck-bg {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: -1px;
  right: 0;
  bottom: 0;
  left: -1px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999999999;
  opacity: 1;
  width: 102%;
  height: 100%;
}
.realityCheck-modal .mdl-menu__container.is-visible {
  background: white !important;
  max-height: 350px !important;
  overflow: auto;
  border: solid 2px #c3c3c3;
  border-radius: 5px;
}
.realityCheck-modal .mdl-menu__container.is-visible .mdl-menu__outline.mdl-menu--bottom-left {
  background: transparent !important;
  display: none;
}
.realityCheck-modal .mdl-menu__container.is-visible .mdl-menu__outline.mdl-menu--top-left {
  background: transparent !important;
  display: none;
}
.realityCheck-modal .mdl-menu__container.is-visible .mdl-js-menu {
  background: white !important;
}
.realityCheck-modal .mdl-textfield__input::placeholder {
  color: #c3c3c3;
  font-size: 20px;
}
.realityCheck-modal ul {
  clip: auto !important;
}
.realityCheck-modal #menuNoticeInterval {
  clip: auto !important;
}
.realityCheck-modal .greyLabel {
  color: #cccccc !important;
  font-size: 16px !important;
  top: -2px !important;
  visibility: visible !important;
}
.realityCheck-modal .leftLabel {
  margin-left: 134px !important;
  text-align: left;
}
.realityCheck-modal .left {
  float: left;
}
.realityCheck-modal .right {
  float: right;
}
.realityCheck-modal .noMarginTop {
  margin-top: 0 !important;
}
.realityCheck-modal .noMargin {
  margin: 0;
}
.realityCheck-modal .mdl-menu__outline {
  max-width: 100%;
}
.realityCheck-modal .noMarginBottom {
  margin-bottom: 0 !important;
}
.realityCheck-modal .mdl-textfield__input:disabled {
  background: #c4c4c4;
  color: #777777;
  margin-top: 0;
}
.realityCheck-modal .mdl-textfield__input:enabled {
  background: #ffffff;
  color: #333333;
  margin-top: 0;
}
.realityCheck-modal .mdl-textfield__input {
  background: red;
  color: #777777;
  margin-top: 0;
}
.realityCheck-modal .realityCheck {
  width: 600px;
  height: 600px;
  position: relative;
  margin: 60px auto;
  -webkit-box-shadow: inset 2px 2px 49px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: inset 2px 2px 49px -3px rgba(0, 0, 0, 0.75);
  box-shadow: inset 2px 2px 49px -3px rgba(0, 0, 0, 0.75);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  border-radius: 1px;
  background-color: rgba(47, 47, 48, 0.95);
  overflow: hidden;
  color: #f2f2f2;
  border: solid 2px #4f4f4f;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
.realityCheck-modal .realityCheck > div {
  padding: 5px 15px;
}
.realityCheck-modal .realityCheck .realityCheck-header {
  text-align: center;
  text-shadow: 1px 2px 2px #000000;
}
.realityCheck-modal .mdl-textfield__input {
  cursor: text;
  background: white;
  color: #333333;
  padding: 10px;
  font-size: 20px;
  /* margin: 10px; */
  margin-top: 10px;
}
.realityCheck-modal .labelPl10 {
  padding-left: 10%;
}
.realityCheck-modal select {
  width: 320px;
  height: 45px;
  border-radius: 0px;
  border: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  padding: 10px;
  margin-top: 5px;
  margin-left: 20px;
  margin-bottom: 17px;
  font-size: 20px;
  cursor: pointer;
}
.realityCheck-modal select:disabled {
  cursor: default;
}

/*
 *   _____            __ _ _         _____      _           _
 *  |  __ \          / _(_) |       / ____|    | |         | |
 *  | |__) | __ ___ | |_ _| | ___  | (___   ___| | ___  ___| |_ ___  _ __
 *  |  ___/ '__/ _ \|  _| | |/ _ \  \___ \ / _ \ |/ _ \/ __| __/ _ \| '__|
 *  | |   | | | (_) | | | | |  __/  ____) |  __/ |  __/ (__| || (_) | |
 *  |_|   |_|  \___/|_| |_|_|\___| |_____/ \___|_|\___|\___|\__\___/|_|
 *
 */
/* UIFrame.scss */
#profileSelector {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  width: 1280px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url(/launch/frameworks/typescript/images/newLoaderDesktopBgFull.png);
  background-repeat: no-repeat;
  background-position: center;
}
#profileSelector .profileSelectorGameName {
  color: #f2f2f2;
  font-size: 1.4em;
  height: 25px;
}
#profileSelector .profileSelectorFeatures {
  color: rgba(242, 242, 242, 0.5);
  font-size: 1.3em;
}
#profileSelector .profileSelectorCoinProp {
  color: #f2f2f2;
  font-size: 1em;
  margin: 10px auto 15px;
}
#profileSelector div {
  padding-bottom: 5px;
}
#profileSelector table {
  margin: 0 auto;
  width: 250px;
  text-align: center;
}
#profileSelector table tr td {
  padding: 2px 0;
}
#profileSelector table tr td .button {
  padding-top: 4px;
  padding-bottom: 4px;
}

/* UIFrame.scss */
#statusBar #statusBarBalance {
  text-align: left;
  flex-basis: 20%;
}
#statusBar #statusBarBalance #playRealMoney,
#statusBar #statusBarBalance #registerNow {
  width: 225px;
  height: 100%;
  background-color: #191919;
  color: #f2f2f2;
  cursor: pointer;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
}
#statusBar #statusBarBalance #playRealMoney:hover,
#statusBar #statusBarBalance #registerNow:hover {
  background-color: #191919;
  color: #6b6868;
}
#statusBar #statusBarBalance #balance {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  white-space: nowrap;
  overflow: hidden;
}
#statusBar #statusBarBalance #balance .padding {
  display: block;
  width: 10px;
  height: 10px;
}
#statusBar #statusBarBalance #balance #btnBalance #balancePanel.genericPanelWrapper {
  color: #f2f2f2;
}
#statusBar #statusBarBalance #balance #btnBalance #balancePanel.genericPanelWrapper .genericPanel {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  min-width: 0;
  min-height: 0;
  padding: 10px;
  width: 250px;
}
#statusBar #statusBarBalance #balance #btnBalance #balancePanel.genericPanelWrapper .genericPanel .balancePanelField {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  min-width: 0;
  min-height: 0;
  width: 100%;
  padding: 5px 0;
}

/* UIFrame.scss */
#statusBar #statusBarMessage {
  text-align: center;
  flex-basis: 60%;
}
#statusBar #statusBarMessage #messages {
  width: 100%;
  text-align: center;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
}

#volumePanel.genericPanelWrapper {
  margin-left: -5px;
}
#volumePanel.genericPanelWrapper .genericPanel {
  float: left;
  padding: 5px 0;
  width: 30px;
}

#volumeSlider {
  display: block;
  height: 110px;
  margin: 0 auto;
  width: 5px;
  background: #808080;
  box-shadow: none;
  border-color: #c9c4c1;
}
#volumeSlider .noUi-origin.noUi-connect {
  background: #F0F0F0;
}
#volumeSlider .noUi-handle {
  cursor: pointer;
  width: 22px;
  height: 12px;
  left: -10px;
  top: -5px;
  border: 0;
  background: #808080;
  box-shadow: none;
  transition-property: background-color;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  -ms-transition-property: background-color;
  -o-transition-property: background-color;
  transition-duration: 0.1s !important;
  -webkit-transition-duration: 0.1s !important;
  -moz-transition-duration: 0.1s !important;
  -o-transition-duration: 0.1s !important;
  -ms-transition-duration: 0.1s !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
#volumeSlider .noUi-handle:hover {
  will-change: background-color;
}
#volumeSlider .noUi-handle:active {
  background-color: #F0F0F0;
}
#volumeSlider .noUi-handle::before {
  display: none;
}
#volumeSlider .noUi-handle::after {
  display: none;
}
#volumeSlider .noUi-base > .noUi-connect {
  box-shadow: none;
}
#volumeSlider .noUi-connect {
  width: 100%;
  background-color: #FFFFFF;
}

#btnAutoplay.outerWrapper {
  /* AUTOPLAY PANEL */
  /* AUTOPLAY SETTINGS PANEL */
}
#btnAutoplay.outerWrapper.panelEnabled:hover #autoplaySettingsPanel.genericPanelWrapper .genericPanel {
  transform: translate3d(345px, 0, 0);
  -webkit-transform: translate3d(345px, 0, 0);
  -moz-transform: translate3d(345px, 0, 0);
  -o-transform: translate3d(345px, 0, 0);
  -ms-transform: translate3d(345px, 0, 0);
}
#btnAutoplay.outerWrapper.panelEnabled.settingsOpened #autoplaySettingsPanel.genericPanelWrapper {
  transform: scale3d(0, 0, 0);
  -webkit-transform: scale3d(0, 0, 0);
  -moz-transform: scale3d(0, 0, 0);
  -o-transform: scale3d(0, 0, 0);
  -ms-transform: scale3d(0, 0, 0);
}
#btnAutoplay.outerWrapper.panelEnabled.settingsOpened #autoplaySettingsPanel.genericPanelWrapper .genericPanel {
  transform: translate3d(0, 720px, 0);
  -webkit-transform: translate3d(0, 720px, 0);
  -moz-transform: translate3d(0, 720px, 0);
  -o-transform: translate3d(0, 720px, 0);
  -ms-transform: translate3d(0, 720px, 0);
}
#btnAutoplay.outerWrapper.panelEnabled.settingsOpened:hover #autoplaySettingsPanel.genericPanelWrapper {
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
}
#btnAutoplay.outerWrapper.panelEnabled.settingsOpened:hover #autoplaySettingsPanel.genericPanelWrapper .genericPanel {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
#btnAutoplay.outerWrapper #autoplayPanel.genericPanelWrapper {
  margin-left: -25px;
}
#btnAutoplay.outerWrapper #autoplayPanel.genericPanelWrapper .genericPanel {
  width: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
}
#btnAutoplay.outerWrapper #autoplayPanel.genericPanelWrapper .genericPanel .button {
  min-width: 0;
  padding: 3px;
  margin: 2px 0;
}
#btnAutoplay.outerWrapper #autoplayPanel.genericPanelWrapper .genericPanel .button:nth-child(1) {
  /* switched because of column-reverse */
  margin-bottom: 0;
}
#btnAutoplay.outerWrapper #autoplayPanel.genericPanelWrapper .genericPanel .button:nth-last-child(1) {
  /* switched because of column-reverse */
  margin-top: 0;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper {
  margin-left: -400px;
  margin-bottom: 0;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel {
  width: 375px;
  padding: 0;
  border-right: 1px solid rgb(244, 244, 244);
  background-color: transparent;
  transform: translate3d(345px, 720px, 0);
  -webkit-transform: translate3d(345px, 720px, 0);
  -moz-transform: translate3d(345px, 720px, 0);
  -o-transform: translate3d(345px, 720px, 0);
  -ms-transform: translate3d(345px, 720px, 0);
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel > span {
  float: left;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent {
  padding: 10px;
  width: 325px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  width: 100%;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList .apSettingsInfo {
  margin-bottom: 10px;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList .apSettingsInfo .apSettingsTitle {
  color: #f2f2f2;
  text-align: right;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  min-width: 0;
  min-height: 0;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList > span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 25px;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList > span > span {
  margin: 0 2px;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList > span .apSettingLabel {
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  min-width: 0;
  flex-grow: 1;
  max-width: 155px;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList > span .apSettingInput {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  text-align: right;
  max-width: 165px;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList > span .apSettingInput span {
  vertical-align: middle;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList > span .apSettingInput input {
  outline: none;
  width: 80px;
  height: 20px;
  color: #999595;
  background-color: #f2f2f2;
  border: none;
  text-align: right;
  font-size: 14px;
  padding: 0 5px;
  margin: auto 5px;
  line-height: 20px;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList .apSetting {
  overflow: hidden;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList .apSetting.modified .apSettingCurrency,
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelContent #autoplaySettingsList .apSetting.modified .apSettingLabel {
  color: #f2f2f2;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelButton {
  width: 30px;
  height: 100%;
}
#btnAutoplay.outerWrapper #autoplaySettingsPanel.genericPanelWrapper .genericPanel .genericPanelButton .ui-button {
  position: absolute;
  left: 1px;
  top: 50%;
  margin-top: -15px;
}

#btnMenu.outerWrapper .genericPanelWrapper {
  margin-left: -165px;
}
#btnMenu.outerWrapper .genericPanelWrapper .genericPanel {
  float: left;
  width: 200px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
}
#btnMenu.outerWrapper .genericPanelWrapper .genericPanel span.button:nth-child(1) {
  margin-top: 0;
}
#btnMenu.outerWrapper .genericPanelWrapper .genericPanel span.button {
  height: 15px;
  margin: 2px 0;
  line-height: 15px;
}
#btnMenu.outerWrapper .genericPanelWrapper .genericPanel span.button:nth-child(1) {
  margin-top: 0;
}
#btnMenu.outerWrapper .genericPanelWrapper .genericPanel span.button:nth-last-child(1) {
  margin-bottom: 0;
}

#mainDiv #status-bar .status-bar-field .outer-wrapper #settingsPanel.genericPanelWrapper .genericPanel #speedControl table td.btn-speend.selected-bar-btn {
  background-color: #FFFFFF;
}

#btnSettings.outerWrapper .genericPanelWrapper {
  margin-left: -240px;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
  padding: 10px;
  width: 250px;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel > span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  color: #f2f2f2;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel > span.gameSettingsSetting {
  height: 20px;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel #gameSpeed {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel #gameSpeed hr {
  border: 1px solid #EAEAEA;
  border-bottom: 0;
  width: 95%;
  padding: 0 20px;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel #gameSpeed #speedControlsTitle {
  font-size: 1.1em;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel #gameSpeed #speedControls {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  margin-top: 10px;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel #gameSpeed #speedControls .btn-speed {
  background-color: #999595;
  width: 58px;
  height: 22px;
  margin: 0 5px;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel #gameSpeed #speedControls .btn-speed.active {
  background-color: #FFFFFF;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel #gameSpeed #speedControls .btn-speed.active:hover {
  background-color: #FFFFFF;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel #gameSpeed #speedControls .btn-speed .ui-button {
  margin-top: 4px;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel #gameSpeed #speedControls .btn-speed:hover {
  background-color: #6b6868;
}
#btnSettings.outerWrapper .genericPanelWrapper .genericPanel #gameSpeed #speedControls .btn-speed:active {
  background-color: #999595;
}

#btnGamesMenu.outerWrapper .genericPanelWrapper {
  margin-left: -1030px;
}
#btnGamesMenu.outerWrapper .genericPanelWrapper .genericPanel {
  width: 1050px;
  height: 640px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
}
#btnGamesMenu.outerWrapper .genericPanelWrapper .genericPanel iframe {
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
}

/* UIFrame.scss */
#statusBar #statusBarSettings {
  text-align: right;
  flex-basis: 20%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  min-width: 0;
  min-height: 0;
}
#statusBar #creditsContainer {
  text-align: right;
  flex-basis: 20%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  min-width: 0;
  min-height: 0;
}
#statusBar #creditsContainer #creditsAmt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  padding-right: 10px;
  text-align: right;
}

/**
 *    _____ _        _               ____
 *   / ____| |      | |             |  _ \
 *  | (___ | |_ __ _| |_ _   _ ___  | |_) | __ _ _ __
 *   \___ \| __/ _` | __| | | / __| |  _ < / _` | '__|
 *   ____) | || (_| | |_| |_| \__ \ | |_) | (_| | |
 *  |_____/ \__\__,_|\__|\__,_|___/ |____/ \__,_|_|
 *
 */
/* UIFrame.scss */
#statusBar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  width: 100%;
  font-size: 14px;
  height: 32px;
  background-color: #191919;
  position: relative;
  z-index: 1000;
  color: #f2f2f2;
}
#statusBar .uiBarButton {
  cursor: pointer;
  margin: 0 5px;
}
#statusBar .uiBarButton.buttonDisabled .ui-button {
  opacity: 0.3;
}
#statusBar > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 33%;
  flex-basis: 33%;
  min-width: 0;
  min-height: 0;
  height: 100%;
}
#statusBar .outerWrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
}
#statusBar .outerWrapper.panelEnabled.jshover .genericPanelWrapper {
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
}
#statusBar .outerWrapper.panelEnabled.jshover .genericPanel {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transition-duration: 0.3s !important;
  -webkit-transition-duration: 0.3s !important;
  -moz-transition-duration: 0.3s !important;
  -o-transition-duration: 0.3s !important;
  -ms-transition-duration: 0.3s !important;
  transition-delay: 0.3s !important;
  -webkit-transition-delay: 0.3s !important;
  -moz-transition-delay: 0.3s !important;
  -o-transition-delay: 0.3s !important;
  -ms-transition-delay: 0.3s !important;
}
#statusBar .outerWrapper.panelEnabled:hover .genericPanelWrapper {
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
}
#statusBar .outerWrapper.panelEnabled:hover .genericPanel {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transition-duration: 0.3s !important;
  -webkit-transition-duration: 0.3s !important;
  -moz-transition-duration: 0.3s !important;
  -o-transition-duration: 0.3s !important;
  -ms-transition-duration: 0.3s !important;
  transition-delay: 0.3s !important;
  -webkit-transition-delay: 0.3s !important;
  -moz-transition-delay: 0.3s !important;
  -o-transition-delay: 0.3s !important;
  -ms-transition-delay: 0.3s !important;
}
#statusBar .outerWrapper .genericPanelWrapper {
  pointer-events: none;
  position: absolute;
  bottom: 34px;
  width: auto !important;
  height: auto !important;
  display: block;
  overflow: hidden !important;
  transform: scale3d(0, 0, 0);
  -webkit-transform: scale3d(0, 0, 0);
  -moz-transform: scale3d(0, 0, 0);
  -o-transform: scale3d(0, 0, 0);
  -ms-transform: scale3d(0, 0, 0);
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transition-property: transform;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -ms-transition-property: transform;
  -o-transition-property: transform;
  transition-duration: 0s !important;
  -webkit-transition-duration: 0s !important;
  -moz-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  -ms-transition-duration: 0s !important;
  transition-delay: 0.35s !important;
  -webkit-transition-delay: 0.35s !important;
  -moz-transition-delay: 0.35s !important;
  -o-transition-delay: 0.35s !important;
  -ms-transition-delay: 0.35s !important;
  will-change: transform;
}
#statusBar .outerWrapper .genericPanel {
  pointer-events: auto;
  position: relative;
  display: block;
  float: left;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.85);
  transform: translateY(720px);
  -webkit-transform: translateY(720px);
  -moz-transform: translateY(720px);
  -o-transform: translateY(720px);
  -ms-transform: translateY(720px);
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transition-property: transform;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -ms-transition-property: transform;
  -o-transition-property: transform;
  transition-duration: 0.3s !important;
  -webkit-transition-duration: 0.3s !important;
  -moz-transition-duration: 0.3s !important;
  -o-transition-duration: 0.3s !important;
  -ms-transition-duration: 0.3s !important;
  transition-delay: 0.3s !important;
  -webkit-transition-delay: 0.3s !important;
  -moz-transition-delay: 0.3s !important;
  -o-transition-delay: 0.3s !important;
  -ms-transition-delay: 0.3s !important;
  will-change: transform;
}

/* UIFrame.scss */
body {
  background-color: #000000;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
  /* Rules below not implemented in browsers yet */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #FFFFFF;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
  user-select: none;
}

#bottomGameBg {
  display: none !important;
}

#upGameBg {
  display: none !important;
}

#mainDivWrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  height: 100%;
  width: 100%;
}
#mainDivWrapper #mainDiv {
  background-color: #000000;
  width: 1280px !important;
  height: 752px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
  min-height: 752px;
  max-height: 752px;
}
#mainDivWrapper #mainDiv #wrapper {
  display: none;
  width: 1280px;
}
#mainDivWrapper #mainDiv #wrapper #game {
  width: 1280px;
  display: inline-block;
}
#mainDivWrapper #mainDiv #introWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #901b0a;
}

.anti-alias-zoom {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ellipsedText {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.button {
  background: #999595;
  border: 0;
  font-size: 1em;
  font-family: Arial;
  min-width: 120px;
  text-align: center;
  color: #f2f2f2;
  padding: 5px;
  text-decoration: none;
  outline: none;
  margin: 0;
  cursor: pointer;
}
.button:hover {
  background: #6b6868;
}
.button.selected {
  background: #f2f2f2;
  color: #6b6868;
}

#gameFeatures {
  display: none !important;
}

.ui-button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 0.25rem solid rgba(255, 255, 255, 0.2);
  border-top-color: #FFFFFF;
  -webkit-animation-name: spin;
  animation-name: spin;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
.loading--double {
  border-style: double;
  border-width: 0.5rem;
}

#ammsDataContainer {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: left;
  padding: 10px 10px 0px 10px;
  left: 180px;
  width: 920px;
  height: auto;
  top: 0px;
  display: none;
  z-index: 100000;
  color: white !important;
}
#ammsDataContainer .responsibleLinkContainer {
  position: absolute;
  left: 120px;
  top: 5px;
  width: 200px;
}
#ammsDataContainer .link_legal_18 {
  background-image: url(/launch/components/it/link_legal_18.png);
  width: 30px;
  height: 28px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#ammsDataContainer .link_legal_aams {
  background-image: url(/launch/components/it/link_legal_aams.png);
  width: 40px;
  height: 28px;
  display: inline-block;
  background-size: contain;
  margin-left: 3px;
  background-repeat: no-repeat;
  background-position: center;
}
#ammsDataContainer .link_legal_half {
  background-image: url(/launch/components/it/link_legal_half.png);
  width: 55px;
  height: 28px;
  display: inline-block;
  background-size: contain;
  margin-left: 3px;
  background-repeat: no-repeat;
  background-position: center;
}
#ammsDataContainer .link_responsible {
  background-image: url(/launch/components/it/link_responsible.png);
  width: 60px;
  height: 28px;
  display: inline-block;
  background-size: contain;
  margin-left: 3px;
  background-repeat: no-repeat;
  background-position: center;
}
#ammsDataContainer .btnAddMoneyToTheTable {
  margin: 10px auto;
  width: 220px;
  text-align: center;
  font-size: 18px;
  background-color: #333333;
  white-space: nowrap;
  position: absolute;
  left: 670px;
  top: 0px;
  border-radius: 3px;
}
#ammsDataContainer .btnAddMoneyToTheTable:hover {
  background-color: gray;
}
#ammsDataContainer .participationCodeDiv {
  position: absolute;
  left: 350px;
  width: 360px;
  text-align: left;
  top: 2px;
}
#ammsDataContainer .admCodeDiv {
  position: absolute;
  left: 350px;
  width: 360px;
  text-align: left;
  top: 18px;
}

#extSessionTimerContainer {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: left;
  padding: 10px;
  left: 10px;
  height: auto;
  display: none;
  top: 0px;
  z-index: 100000;
  color: white !important;
}

.btnAddMoneyToTheTable {
  margin: 10px auto;
  width: 220px;
  text-align: center;
  font-size: 15px;
  background-color: #333333;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 3px;
}

.btnAddMoneyToTheTable:hover {
  background-color: lightgrey;
}
