@font-face {
  font-family: "Roboto";
  src: url(./styleAssets/fonts/Roboto-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "RubikBold";
  src: url(./styleAssets/fonts/Rubik-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "ArialBold";
  src: url(./styleAssets/fonts/arial_bold.ttf) format("truetype");
}
html,
body {
  height: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  overflow: hidden;
  background: #333333;
  overscroll-behavior: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Roboto";
}
html ::-webkit-scrollbar,
body ::-webkit-scrollbar {
  width: 10px;
}
html ::-webkit-scrollbar-track,
body ::-webkit-scrollbar-track {
  background: transparent;
}
html ::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb {
  right: 10px;
  background: rgba(255, 255, 255, 0.1);
  background-clip: content-box;
  border-radius: 5px;
  border: 2px solid transparent;
}

.appVersion {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12px;
  color: #333;
  opacity: 0.5;
  pointer-events: none;
}

#app_view {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#ui_view {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#app_list {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  overflow-x: hidden;
}
#app_list .appListItem {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 30%;
  height: 100px;
  margin: 20px;
  cursor: pointer;
  transition: transform 0.5s;
}
#app_list .appListItem:hover {
  transform: scale(1.2);
}
#app_list.coloumn_list {
  flex-direction: column;
}

#login_form {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #333;
  flex-direction: column;
  overflow-x: hidden;
}
#login_form #login {
  width: 158px;
  height: 20px;
  background-color: #ccc;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.5s;
}
#login_form #login:hover {
  background-color: #1f1f1f;
  color: #fff;
}
#login_form .logo {
  background-image: url(./styleAssets/images/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 158px;
  height: 80px;
}
#login_form .row {
  display: flex;
  margin-bottom: 10px;
  color: #fff;
}
#login_form .row .label {
  width: 50px;
}
#login_form .row input {
  width: 100px;
}

.adminPanel {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.adminPanel .admin_left {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  height: 100%;
  left: 0;
  pointer-events: all;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 300px;
  transition: left 0.5s;
}
.adminPanel .admin_left.closed {
  left: -300px;
}
.adminPanel .admin_left .admin_left_close {
  position: absolute;
  width: 20px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  top: 30px;
  right: -20px;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transition: opacity 0.5s;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.adminPanel .admin_left .admin_left_close:hover {
  opacity: 0.5;
}
.adminPanel .admin_right {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  height: 100%;
  right: 0;
  pointer-events: all;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 300px;
  transition: right 0.5s;
}
.adminPanel .admin_right.closed {
  right: -300px;
}
.adminPanel .admin_right .admin_right_close {
  position: absolute;
  width: 20px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  top: 30px;
  left: -20px;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transition: opacity 0.5s;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.adminPanel .admin_right .admin_right_close:hover {
  opacity: 0.5;
}
.adminPanel .admin_grid_container {
  width: 90%;
  height: 24%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.adminPanel .admin_grid_container .admin_grid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.adminPanel .admin_grid_container .admin_grid .admin_grid_coloumn .admin_grid_cell {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: solid 1px #ccc;
  border-radius: 3px;
  cursor: pointer;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.adminPanel .admin_grid_container .admin_grid .admin_grid_coloumn .admin_grid_cell .admin_symbol_variations {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.adminPanel .admin_grid_container .admin_grid .admin_grid_coloumn .admin_grid_cell .admin_symbol_variations .admin_cell_select_option {
  width: 100px;
  height: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80% auto;
  background-color: #333;
  border-bottom: solid 1px #222;
  transition: all 0.5s;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: solid 1px;
  border-bottom-color: rgba(255, 255, 255, 0.5058823529);
}
.adminPanel .admin_grid_container .admin_grid .admin_grid_coloumn .admin_grid_cell .admin_symbol_variations .admin_cell_select_option:last-child {
  border-bottom: none;
}
.adminPanel .admin_grid_container .admin_grid .admin_grid_coloumn .admin_grid_cell .admin_symbol_variations .admin_cell_select_option .admin_cell_select_option_cont {
  margin-left: 2px;
  width: calc(100% - 32px);
  height: 30px;
  font-size: 12px;
  pointer-events: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.adminPanel .admin_grid_container .admin_grid .admin_grid_coloumn .admin_grid_cell .admin_symbol_variations .admin_cell_select_option .admin_cell_select_option_cont div {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.adminPanel .admin_grid_container .admin_grid .admin_grid_coloumn .admin_grid_cell .admin_symbol_variations .admin_cell_select_option .admin_cell_select_option_cont div:first-child {
  border-bottom: solid 1px;
  border-bottom-color: rgba(255, 255, 255, 0.168627451);
}
.adminPanel .admin_grid_container .admin_grid .admin_grid_coloumn .admin_grid_cell .admin_symbol_variations .admin_cell_select_option .admin_cell_select_option_icon {
  width: 30px;
  height: 30px;
  pointer-events: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80% auto;
  position: relative;
}
.adminPanel .admin_grid_container .admin_grid .admin_grid_coloumn .admin_grid_cell .admin_symbol_variations .admin_cell_select_option:hover {
  background-color: white;
  color: #222;
}
.adminPanel .admin_grid_container .admin_grid_buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.adminPanel .admin_grid_container .admin_grid_buttons .admin_grid_buttons_button {
  width: 30%;
  height: 25px;
  background-color: #ccc;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 3px;
}
.adminPanel .admin_grid_container .admin_grid_buttons .admin_grid_buttons_button:hover {
  background-color: #333;
  color: #fff;
}
.adminPanel .admin_audio_container {
  width: 90%;
  height: 63%;
  display: flex;
  flex-direction: column;
}
.adminPanel .admin_audio_container .admin_audio_container_search {
  background: transparent;
  border: solid 2px #323232;
  border-radius: 5px;
  color: #fff;
  width: calc(100% - 25px);
}
.adminPanel .admin_audio_container .admin_audio_container_files {
  height: calc(100% - 25px);
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item {
  width: 98%;
  height: 40px;
  flex-shrink: 0;
  background-color: #323232;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.5s;
  justify-self: right;
  cursor: pointer;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item:hover, .adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item.dragOver {
  background-color: #999999;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item.disabled {
  pointer-events: none;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item.old_updated {
  background-color: #003f65;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item.old_updated.dragOver {
  background-color: #0067a7;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item.updated {
  background-color: #00775d;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item.updated.dragOver {
  background-color: #00c59a;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item .admin_audio_item_top {
  display: flex;
  border-bottom: solid 2px #ccc;
  pointer-events: none;
  margin: 5px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 12px;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item .admin_audio_item_delete {
  pointer-events: all;
  font-weight: bold;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -1px;
  margin-right: 4px;
  cursor: pointer;
  color: #ff0000;
  transition: all 0.5s;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item .admin_audio_item_delete:hover {
  color: #ffffff;
}
.adminPanel .admin_audio_container .admin_audio_container_files .admin_audio_item .admin_audio_item_fileName {
  pointer-events: none;
  margin: 5px;
  margin-top: 0px;
  color: #fff;
  font-size: 12px;
  width: 96%;
  justify-self: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  text-align: right;
  display: flex;
  justify-content: end;
}
.adminPanel .admin_functions {
  width: 90%;
  height: 12%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  color: #fff;
  font-size: 16px;
}
.adminPanel .admin_functions .button {
  width: 100%;
  height: 25px;
  background-color: #ccc;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 3px;
  margin-bottom: 10px;
}
.adminPanel .admin_functions .button:hover {
  background-color: #333;
  color: #fff;
}
.adminPanel .admin_logger_highlighter {
  background: transparent;
  border: solid 2px #323232;
  border-radius: 5px;
  color: #fff;
  width: 90%;
}
.adminPanel .admin_logger_clear {
  background-color: rgba(255, 255, 255, 0.5);
  width: 90%;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
  margin-top: 10px;
  margin-bottom: 10px;
}
.adminPanel .admin_logger_clear:hover {
  opacity: 0.5;
}
.adminPanel .admin_logger {
  background-color: rgba(0, 0, 0, 0.5);
  width: 90%;
  height: calc(100% - 100px);
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  color: #fff;
  font-size: 18px;
}
.adminPanel .admin_logger .log_item {
  line-height: 20px;
  line-height: 20px;
  display: flex;
  align-items: center;
  transition: color 0.5s;
}
.adminPanel .admin_logger .log_item .log_symbol {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.preload, .loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  background: #1c1c1c;
  pointer-events: all;
  transition: all 1s;
  z-index: 1000;
}
.preload.disabled, .disabled.loading {
  opacity: 0;
}
.preload .preload_background, .loading .preload_background {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 1s;
}
.preload .preload_cont, .loading .preload_cont, .loading .loading_cont {
  width: 50%;
  min-width: 100px;
  max-width: 400px;
  height: 200px;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preload .preload_cont .preload_logo, .loading .preload_cont .preload_logo, .loading .loading_cont .preload_logo, .loading .loading_cont .loading_logo {
  background-image: url(./styleAssets/images/logo.svg);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 150px;
  top: 0;
  left: 0;
  position: absolute;
}
.preload .preload_cont .preloader_mask, .loading .preload_cont .preloader_mask, .loading .loading_cont .preloader_mask {
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20538.061%20236.902%22%3E%3Cpolygon%20fill%3D%22%23070707%22%20points%3D%2219.986%2C209.206%2010.568%2C218.139%20527.491%2C218.139%20518.074%2C209.206%20%22%2F%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20538.061%20236.902%22%3E%3Cpolygon%20fill%3D%22%23070707%22%20points%3D%2219.986%2C209.206%2010.568%2C218.139%20527.491%2C218.139%20518.074%2C209.206%20%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center bottom;
          mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 100%;
  height: 150px;
  top: 0;
  left: 0;
  position: absolute;
}
.preload .preload_cont .preloader_mask .preloader_bounds, .loading .preload_cont .preloader_mask .preloader_bounds, .loading .loading_cont .preloader_mask .preloader_bounds {
  top: 0;
  left: 6%;
  position: absolute;
  width: 88%;
  height: 100%;
}
.preload .preload_cont .preloader_mask .preloader_bounds .preload_bar, .preload .preload_cont .preloader_mask .preloader_bounds .loading .loading_cont .loading_bar, .loading .preload_cont .preloader_mask .preloader_bounds .preload_bar, .loading .preload_cont .preloader_mask .preloader_bounds .loading_cont .loading_bar, .loading .loading_cont .preloader_mask .preloader_bounds .preload_bar, .loading .loading_cont .preloader_mask .preloader_bounds .loading_bar {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  left: -100%;
  top: 0%;
  position: relative;
  background: #C4A26D;
  background: linear-gradient(90deg, rgb(196, 162, 109) 0%, rgb(39, 91, 81) 100%);
}
.preload .preload_cont .preloader_mask .preloader_bounds .preload_bar .preload_bar_progress, .preload .preload_cont .preloader_mask .preloader_bounds .loading .loading_cont .loading_bar .preload_bar_progress, .loading .preload_cont .preloader_mask .preloader_bounds .preload_bar .preload_bar_progress, .loading .preload_cont .preloader_mask .preloader_bounds .loading_cont .loading_bar .preload_bar_progress, .loading .loading_cont .preloader_mask .preloader_bounds .preload_bar .preload_bar_progress, .loading .loading_cont .preloader_mask .preloader_bounds .loading_bar .preload_bar_progress {
  position: absolute;
  right: 5px;
  bottom: 9px;
  font-size: 5px;
  color: #000000;
}
.preload .preload_cont .preload_message, .loading .preload_cont .preload_message, .loading .loading_cont .preload_message {
  text-align: center;
  font-size: 12px;
  color: #ff0000;
  height: 20px;
  width: 100%;
  margin-top: 160px;
}

.loading {
  z-index: 1000;
}
.autoplayView {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.autoplayView .autoplay-cont {
  width: 100%;
  max-width: 1000px;
}
.autoplayView .autoplayCont {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.autoplayView .autoplayCont .row {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.autoplayView .autoplayCont .row .label {
  color: #fff;
  font-size: 16px;
}
.autoplayView .autoplayCont .row .field {
  width: 200px;
  height: 40px;
  color: #cdcdcd;
  background-color: #262626;
  border: solid 1px;
  border-radius: 5px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.autoplayView .autoplayCont .row .field .field_input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  color: #c9c9c9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.settingsView {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.settingsView .settings-cont {
  width: 100%;
  max-width: 1000px;
}
.settingsView .settingsCont {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.settingsView .settingsCont .row {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.settingsView .settingsCont .row .label {
  color: #fff;
  font-size: 16px;
  width: 200px;
}
.settingsView .settingsCont .row .field {
  width: 100px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.settingsView .settingsCont .row .field .field_input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
.settingsView .settingsCont .row .field .field_label {
  cursor: pointer;
  text-indent: -9999px;
  width: 100%;
  height: 100%;
  background: #03121f;
  display: block;
  border: solid 1px #b49118;
  border-radius: 100px;
  position: relative;
}
.settingsView .settingsCont .row .field .field_label:after {
  content: "";
  position: absolute;
  left: 0px;
  width: 40px;
  height: 40px;
  background: #008018;
  border-radius: 50%;
  transition: 0.3s;
}
.settingsView .settingsCont .row .field .field_input:checked + .field_label:after {
  left: calc(100% - 0px);
  transform: translateX(-100%);
  background: #1ecf3f;
}
.settingsView .settingsCont .row .field .field_input:active:after {
  width: 130px;
}

.creditsView {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.creditsView .bet-cont {
  width: 100%;
  max-width: 1000px;
}
.creditsView .linesCont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}
.creditsView .linesCont .button {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  border-radius: 10px;
  border: solid 1px #949494;
  margin: 10px;
  flex-shrink: 0;
  background-color: #262626;
  color: #b2b2b2;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.creditsView .linesCont .button.selected {
  background-color: #c9c9c9;
  color: #fff;
}
.creditsView .betsCont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 30px;
}
.creditsView .betsCont .button {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  border-radius: 10px;
  border: solid 1px #b49118;
  margin: 10px;
  flex-shrink: 0;
  background-color: #031f28;
  cursor: pointer;
  transition: all 1s;
}
.creditsView .betsCont .button.selected {
  background-color: #c9c9c9;
}
.creditsView .betsCont .button:hover {
  opacity: 0.5;
}
.creditsView .betsCont .button .buttonLabel {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  pointer-events: none;
}
.creditsView .betsCont .button .buttonAmount {
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  pointer-events: none;
}
.creditsView .creditsCont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}
.creditsView .creditsCont .button {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  border-radius: 10px;
  border: solid 1px #b49118;
  margin: 10px;
  flex-shrink: 0;
  background-color: #031f28;
  cursor: pointer;
  transition: all 1s;
}
.creditsView .creditsCont .button.selected {
  background-color: #c9c9c9;
  pointer-events: none;
}
.creditsView .creditsCont .button:hover {
  opacity: 0.5;
}
.creditsView .creditsCont .button .buttonLabel {
  color: #999999;
  font-size: 16px;
  text-align: center;
  pointer-events: none;
}
.creditsView .creditsCont .button .buttonAmount {
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  pointer-events: none;
}

.rulesView {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 70px;
}
.rulesView .bigWildContainer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 60px !important;
}
.rulesView .bigWildContainer .symbol_image {
  transform: scale(1.4) !important;
}
.rulesView .bigScatterContainer {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 60px !important;
  margin-bottom: 60px !important;
  margin-top: 45px;
}
.rulesView .bigScatterContainer .symbol_image {
  transform: scale(1.2);
}
.rulesView .wildFlexContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 40px !important;
  margin-bottom: 40px !important;
}
.rulesView .wildFlexContainer .symbol_image {
  transform: scale(1.2);
}
.rulesView .scaledSymbol .symbol_image {
  transform: scale(1.3);
}
.rulesView .payoutsMarginTop-20 .symbol_payouts {
  margin-top: 20px;
}
.rulesView .bigScatter .symbol_image {
  width: 260px !important;
  height: 260px !important;
  margin-top: -12px !important;
}
.rulesView .bigScatter .symbol_title {
  height: 40px !important;
}
.rulesView .firstSymbol {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column-reverse !important;
  margin-top: -40px;
}
.rulesView .firstSymbol .bullet {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.rulesView .ml- {
  margin-left: 22px;
}
.rulesView .flexContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rulesView .flexContainer .symbol_image {
  margin-top: -13px !important;
  width: 248px !important;
  height: 250px !important;
}
.rulesView .flexContainer .symbol_title {
  height: 40px !important;
}
.rulesView .stackedWild {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.rulesView .minus-mt-20 {
  margin-top: -20px;
}
.rulesView .pb-10 {
  padding-bottom: 10px !important;
}
.rulesView .pb-50 {
  padding-bottom: 50px !important;
}
.rulesView .pd-30 {
  padding-top: 30px !important;
}
.rulesView .pt-15 {
  padding-top: 15px !important;
}
.rulesView .pt-20 {
  padding-top: 20px !important;
}
.rulesView .ml-15 {
  margin-left: 15px;
}
.rulesView .mt-15 {
  margin-top: 15px;
}
.rulesView .mt-20 {
  margin-top: 20px;
}
.rulesView .mt-30 {
  margin-top: 30px;
}
.rulesView .mt-35 {
  margin-top: 35px;
}
.rulesView .mb-40 {
  margin-bottom: 40px !important;
}
.rulesView .paytables_logo {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
  width: 100%;
  max-width: 600px;
  height: 100px;
  display: block;
  flex-shrink: 0;
}
.rulesView .section_1 {
  max-width: 600px;
  width: 95%;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 2px #fff;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: rgba(0, 0, 0, 0.65);
}
.rulesView .section_1 .paytables {
  margin-top: 10%;
  width: 80%;
  display: block;
}
.rulesView .section_1 .paytables .symbolElement .symbol_image_block {
  width: 96%;
  height: auto;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: contain;
     object-fit: contain;
}
.rulesView .section_1 .paytables .borderTop {
  -o-border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent) 1;
     border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent) 1;
  border-top: solid 2px;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  margin-top: 20px;
  padding-top: 20px;
}
.rulesView .section_1 .paytables .borderBottom {
  -o-border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent) 1;
     border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent) 1;
  border-bottom: solid 2px;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.rulesView .section_1 .paytables .symbol {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.rulesView .section_1 .paytables .symbol .symbol_image {
  width: 100px;
  height: 100px;
  margin-left: 10px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.rulesView .section_1 .paytables .symbol .symbol_cont {
  width: calc(100% - 130px);
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.rulesView .section_1 .paytables .symbol .symbol_cont .symbol_payouts {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}
.rulesView .section_1 .paytables .symbol .symbol_cont .symbol_payouts .text .content {
  font-family: "ArialBold";
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.rulesView .section_1 .paytables .symbol .symbol_cont .symbol_payouts .bullet {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex-direction: row;
  align-items: flex-end;
  font-size: 25px;
}
.rulesView .section_1 .paytables .symbol .symbol_cont .symbol_payouts .bullet .mult {
  color: #e2be24;
  font-family: "RubikBold" !important;
  font-weight: bold;
}
.rulesView .section_1 .paytables .symbol .symbol_cont .symbol_payouts .bullet .value {
  font-family: "RubikBold" !important;
  margin-left: 10px;
  color: #fff;
  font-weight: bold;
}
.rulesView .section_1 .paytables .symbol .symbol_cont .symbol_payouts .bullet .currency {
  margin-left: 5px;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
  font-family: "ArialBold" !important;
}
.rulesView .section_1 .paytables .wild {
  position: relative;
}
.rulesView .section_1 .paytables .wild .symbol_title {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(./styleAssets/images/rules_wild_title.png);
  width: 100%;
  height: 30px;
  transform: scale(1.4);
}
.rulesView .section_1 .paytables .wild .symbol .symbol_image {
  width: 200px;
  height: 200px;
}
.rulesView .section_1 .paytables .wild .symbol .subSymbol {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  width: 40px;
  height: 40px;
  position: relative;
  top: 10px;
}
.rulesView .section_1 .paytables .stackedWild {
  position: relative;
}
.rulesView .section_1 .paytables .stackedWild .symbol_title {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(./styleAssets/images/rules_stacked_wild_title.png);
  width: 100%;
  height: 30px;
  transform: scale(1.4);
}
.rulesView .section_1 .paytables .stackedWild .symbol .symbol_image {
  width: 200px;
  height: 200px;
}
.rulesView .section_1 .paytables .stackedWild .symbol .subSymbol {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  width: 40px;
  height: 40px;
  position: relative;
  top: 10px;
}
.rulesView .section_1 .paytables .scatter {
  position: relative;
}
.rulesView .section_1 .paytables .scatter .symbol_title {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(./styleAssets/images/rules_scatter_title.png);
  width: 100%;
  height: 30px;
  transform: scale(1.4);
}
.rulesView .section_1 .paytables .scatter .symbol .symbol_image {
  width: 200px;
  height: 200px;
}
.rulesView .section_1 .paytables .scatter .symbol .bullet .mult,
.rulesView .section_1 .paytables .scatter .symbol .bullet .value {
  font-size: 30px !important;
}
.rulesView .section_1 .paytables .scatter .symbol .bullet .currency {
  margin-left: 5px;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
  font-family: "ArialBold" !important;
}
.rulesView .section_1 .paytables .stackedScatter {
  position: relative;
}
.rulesView .section_1 .paytables .stackedScatter .symbol_title {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(./styleAssets/images/rules_stacked_scatter_title.png);
  width: 100%;
  height: 30px;
  transform: scale(1.4);
}
.rulesView .section_1 .paytables .stackedScatter .symbol .symbol_image {
  width: 200px;
  height: 200px;
}
.rulesView .section_1 .paytables .reversed .symbol {
  flex-direction: row-reverse;
}
.rulesView .section_1 .paytables .symbols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-around;
}
.rulesView .section_1 .paytables .symbols .symbolElement {
  width: 45%;
  margin-bottom: 20px;
}
.rulesView .section_1 .paytables .symbols .symbolElement .symbol_image_block {
  width: 96%;
  height: auto;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: contain;
     object-fit: contain;
}
.rulesView .section_1 .paytables .symbols .symbolElement .symbol {
  flex-direction: column;
}
.rulesView .section_1 .paytables .symbols .symbolElement .symbol .symbol_image {
  width: 180px;
  height: 180px;
}
.rulesView .section_1 .paytables .symbols .symbolElement .symbol .symbol_cont {
  margin-top: 10px;
}
.rulesView .section_1 .paytables .symbols .wide .symbol_image {
  width: 220px !important;
}
.rulesView .section_1 .paytables .symbols .small_payouts .bullet .mult {
  width: 32%;
  flex-shrink: 0;
  font-size: 16px !important;
  text-wrap-mode: nowrap;
  margin-right: 1%;
}
.rulesView .section_1 .paytables .symbols .small_payouts .bullet .value,
.rulesView .section_1 .paytables .symbols .small_payouts .bullet .currency {
  flex-shrink: 0;
  font-size: 16px !important;
  text-wrap-mode: nowrap;
}
.rulesView .section_1 .paytables .bigSymbolOnly .symbol_image {
  width: 220px !important;
  height: 220px !important;
  margin-bottom: -40px;
  margin-top: -50px;
}
.rulesView .section_1 .paytables .bigWideSymbolOnly .symbol_image {
  width: 230px !important;
  height: 220px !important;
  margin-bottom: -70px;
  margin-top: -50px;
}
.rulesView .section_1 .paytables .combined {
  display: flex;
  width: 124%;
  margin-left: -12%;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
.rulesView .section_1 .paytables .combined .symbolElement {
  width: 100%;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol {
  justify-content: center;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol .symbol_image {
  width: 50%;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont {
  width: 60%;
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont .symbol_payouts {
  margin-right: 5%;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont .mult {
  font-size: 16px;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont .value {
  font-size: 16px;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont .currency {
  font-size: 10px !important;
  margin-bottom: 1px !important;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont .alt_symbol {
  flex-grow: 1;
  width: 50%;
  display: flex;
  border-left: solid 1px #fff;
  align-content: center;
  justify-content: space-between;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont .alt_symbol .mult,
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont .alt_symbol .value,
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont .alt_symbol .currency {
  color: #e2be24 !important;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont .alt_symbol .symbol_payouts {
  width: 50%;
  margin-left: 5%;
  margin-right: 0%;
}
.rulesView .section_1 .paytables .combined .symbolElement .symbol_cont .alt_symbol .symbol_image {
  width: 80px !important;
  flex-shrink: 0;
}
.rulesView .section_1 .paytables .combined.red {
  background-color: rgba(25, 19, 16, 0.65);
  border-top: solid 1px #9d784a;
  border-bottom: solid 1px #9d784a;
}
.rulesView .section_1 .paytables .combined.red .alt_symbol {
  background-color: rgba(119, 24, 23, 0.65);
  border-left: solid 1px #9d784a !important;
}
.rulesView .section_1 .block_inner {
  -o-border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent) 1;
     border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent) 1;
  border-top: solid 2px;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 96%;
  height: auto;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: contain;
     object-fit: contain;
}
.rulesView .block {
  max-width: 600px;
  width: 96%;
  height: auto;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: contain;
     object-fit: contain;
  padding-top: 5px;
  padding-bottom: 5px;
}

.menu {
  position: absolute;
  background-color: black;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: all;
  display: flex;
  transition: top 0.3s, opacity 0.3s, filter 0.3s;
}
.menu .menu_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.menu .tabs {
  position: absolute;
  background-color: #03121f;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-evenly;
}
.menu .tabs div {
  width: 50px;
  height: 50px;
  background-size: 60% auto;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s;
}
.menu .tabs div:hover {
  opacity: 0.5;
}
.menu .menuContent {
  top: 50px;
  left: 0px;
  position: absolute;
  width: 100%;
  height: calc(100% - 130px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu .menuContent::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.menu .menuContent .title {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 80%;
  max-width: 500px;
  display: block;
  flex-shrink: 0;
}
.menu .menuContent .sub-title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  margin-top: 30px;
  margin-left: 20px;
  width: calc(100% - 20px);
  display: block;
  flex-shrink: 0;
}
.menu.hidden {
  pointer-events: none;
  top: 100%;
  opacity: 0;
  filter: blur(20px);
}

.footer {
  bottom: 0px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.footer .footer-button {
  width: 80px;
  height: 80px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  cursor: pointer;
  transition: all 1s;
}
.footer .footer-button:hover {
  opacity: 0.5;
}
.footer .footer-button .footer-button-icon {
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}
.footer .more-games {
  top: 8px;
  left: 25px;
}
.footer .audio {
  top: 8px;
  left: 108px;
}
.footer .menuButton {
  top: 8px;
  left: calc(100% - 107.5px);
}/*# sourceMappingURL=style.css.map */