@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@900&display=swap");
:root {
  --gradient-color: 24, 255, 255;
}

* {
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

.hidden {
  opacity: 0;
}

#boost-spin-button.theme-pink {
  cursor: pointer;
  transition: all 0.3s ease;
}

#boost-spin-button .btn-background {
  fill: #011454;
  fill-opacity: 0.5;
}

#boost-spin-button .btn-stroke {
  stroke: #bfffff;
  stroke-width: 3.64376;
  fill: none;
}

#boost-spin-button .btn-glow {
  fill: url(#paint0_radial_982_2518);
  fill-opacity: 0.6;
}

#boost-spin-button .btn-inner-glow {
  fill: #A175FF;
  fill-opacity: 0.6;
}

#boost-spin-button .btn-icon {
  fill: #77FFFF;
}

#boost-spin-button .btn-accent {
  fill: #00CCFF;
  fill-opacity: 0.44;
}

#boost-spin-button.theme-pink .btn-stroke {
  stroke: #bfffff !important;
}

#boost-spin-button.theme-pink .btn-accent {
  fill: #00CCFF !important;
}

#boost-spin-button.theme-pink .btn-background {
  fill: #011454 !important;
  fill-opacity: 0.5 !important;
}

#button-sound #sound-on {
  display: none;
}
#button-sound #sound-off-one,
#button-sound #sound-off-two {
  display: block;
}
#button-sound.is-off #sound-on {
  display: block;
}
#button-sound.is-off #sound-off-one,
#button-sound.is-off #sound-off-two {
  display: none;
}
#button-sound.is-on #sound-on {
  display: none;
}
#button-sound.is-on #sound-off-one,
#button-sound.is-on #sound-off-two {
  display: block;
}

.menu-overlay {
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.button-close {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 10px);
  right: var(--console-pad-x);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(100% 100% at 50% 0%, #B7C9E9 0%, #92A6CA 57.77%, #717FA9 100%);
  place-items: center;
  pointer-events: auto;
}

.bg-popup-general {
  width: min(90svw, 520px);
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  border-radius: 18px;
  background: radial-gradient(100% 100% at 50% 0%, #A5AFDC 0%, #434F87 67.57%, #2E3866 100%);
  box-shadow: 0 0.7px 0 0 rgba(255, 255, 255, 0.55) inset, 0 -1px 5px 0 rgba(210, 220, 239, 0.17) inset, 0 2px 2px 0 rgba(1, 19, 42, 0.8);
  backdrop-filter: blur(20px);
  padding: 20px;
}

.uiOverlayShadow {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, rgba(21, 55, 91, 0.55) 0, rgba(21, 55, 91, 0) 100px), linear-gradient(to top, rgba(21, 55, 91, 0.7) 0, rgba(21, 55, 91, 0) 150px);
  z-index: 0;
  pointer-events: none;
}

.menu-label, .menu-list2 {
  font-weight: 800;
}

.dockPanel__complexity-plus:after, .dockPanel__complexity-plus:before, .dockPanel__bet-plus:after, .dockPanel__bet-plus:before, .dockPanel__complexity-minus:after, .dockPanel__bet-minus:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 4px;
  border-radius: 2px;
  background: #303A69;
}

.dockPanel {
  --side-margin: max(12px, env(safe-area-inset-left), env(safe-area-inset-right));
  --box-shadow: 0 2px 2px 0 #00000080, 0 0.7px 0 0 #FFFFFF8C inset;
  position: fixed;
  bottom: calc(clamp(16px, 1.2vh + 1.2vw, 18px) * 2 + 5px);
  left: 0;
  margin: 0 var(--side-margin);
  width: calc(100% - var(--side-margin) * 2);
  background: #1C2343;
  border-radius: 20px 14px 20px 20px;
  padding: 8px 10px;
}
.dockPanel * {
  line-height: 1;
}
.dockPanel__container {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "a a b c" "d d e e";
}
@media screen and (orientation: landscape), (min-width: 768px) {
  .dockPanel__container {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
  .dockPanel {
    max-width: 1200px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.dockPanel * {
  line-height: 1;
}
.dockPanel__general {
  display: flex;
  flex-direction: row;
  align-items: end;
  grid-column: 2/2;
  grid-row: 1/2;
}
.dockPanel__complexity, .dockPanel__bet {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  background: radial-gradient(100% 100% at 50% 0%, #6A739A 0%, #404972 57.77%, #3A4269 100%);
  border-radius: clamp(14px, 2vw, 16px);
  box-shadow: var(--box-shadow);
}
@media screen and (orientation: landscape), (min-width: 768px) {
  .dockPanel__complexity, .dockPanel__bet {
    min-width: 25%;
  }
}
.dockPanel__complexity-text, .dockPanel__bet-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 4px;
  white-space: nowrap;
  overflow: hidden;
}
.dockPanel__complexity-text-up, .dockPanel__bet-text-up {
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 4px;
  font-size: clamp(10px, 0.8dvw + 0.8dvh, 16px);
  color: #C0C9F6;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}
.dockPanel__complexity-text-low, .dockPanel__bet-text-low {
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-size: clamp(14px, 1vw + 0.8vh, 18px);
}
@media screen and (orientation: landscape) and (max-width: 950px) {
  .dockPanel__complexity-text-low, .dockPanel__bet-text-low {
    font-size: 11px;
  }
}
@media screen and (orientation: landscape) and (max-width: 950px) and (min-height: 361px) {
  .dockPanel__complexity-text-low, .dockPanel__bet-text-low {
    font-size: 12px;
  }
}
@media screen and (orientation: landscape) and (max-width: 950px) and (min-height: 415px) {
  .dockPanel__complexity-text-low, .dockPanel__bet-text-low {
    font-size: 14px;
  }
}
.dockPanel__complexity-minus, .dockPanel__bet-minus {
  position: relative;
}
.dockPanel__complexity-plus, .dockPanel__bet-plus {
  position: relative;
}
.dockPanel__complexity-plus:before, .dockPanel__bet-plus:before {
  height: 16px;
  width: 4px;
}
@media screen and (orientation: landscape), (min-width: 768px) {
  .dockPanel__complexity, .dockPanel__bet {
    min-width: 25%;
  }
}
.dockPanel__complexity {
  grid-area: d;
}
.dockPanel__bet {
  grid-area: e;
}
.dockPanel__bet-text {
  cursor: pointer;
}
.dockPanel__button, .dockPanel__button--disabled {
  display: flex;
  width: clamp(35px, 5vw, 45px);
  height: 100%;
  border-radius: clamp(10px, 2.5vw, 14px);
  box-shadow: var(--box-shadow);
  transition: all 0.1s ease;
  background: radial-gradient(100% 100% at 50% 0%, #B7C9E9 0%, #92A6CA 57.77%, #717FA9 100%);
}
.dockPanel__button--disabled {
  opacity: 0.6;
}
.dockPanel__button:active, .dockPanel__button--disabled:active {
  transform: scale(0.95);
}
.dockPanel__cash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  flex: 1;
  grid-area: a;
  padding: 4px;
  height: 100%;
  border-radius: clamp(14px, 2vw, 16px);
  transition: all 0.1s ease;
  cursor: pointer;
  background: linear-gradient(180deg, #FFFF01 0%, #EED602 25%, #FFDE08 50%, #ECB203 75%, #CD8900 100%);
  box-shadow: 0.62px 1.24px 0 0 rgba(255, 255, 255, 0.5) inset, 0 3px 0 0 rgba(255, 255, 255, 0.5) inset;
}
.dockPanel__cash:hover:not(.disabled) {
  transform: scale(1.03);
}
.dockPanel__cash-name {
  color: #281A01;
  font-weight: 900;
  font-family: "Baloo 2", "Baloo-Cyrillic", "Baloo", system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(13px, 1dvw + 1dvh, 19px);
  line-height: 0.8;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  display: block;
  width: auto;
  text-align: center;
  text-shadow: 0 0 4px #FDFF79;
}
.dockPanel__cash-value {
  color: #6A4907;
  font-weight: 900;
  font-family: "Baloo 2", "Baloo-Cyrillic", "Baloo", system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", Arial, sans-serif;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 4px #FDFF79;
  margin-top: 4px;
  font-size: clamp(14px, 1vw + 0.8vh, 18px);
}
@media screen and (orientation: landscape) and (max-width: 950px) {
  .dockPanel__cash-value {
    font-size: 11px;
  }
}
@media screen and (orientation: landscape) and (max-width: 950px) and (min-height: 361px) {
  .dockPanel__cash-value {
    font-size: 12px;
  }
}
@media screen and (orientation: landscape) and (max-width: 950px) and (min-height: 415px) {
  .dockPanel__cash-value {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .dockPanel__cash-value {
    font-size: 18px;
  }
}
.dockPanel__cash.disabled {
  background: radial-gradient(100% 100% at 50% 0%, #6A739A 0%, #404972 57.77%, #3A4269 100%);
  box-shadow: var(--box-shadow);
}
.dockPanel__cash.disabled .dockPanel__cash-name {
  color: rgba(192, 201, 246, 0.8);
  text-shadow: unset;
}
.dockPanel__cash.disabled .dockPanel__cash-value {
  color: rgba(192, 201, 246, 0.8);
  text-shadow: unset;
}
@media screen and (orientation: landscape), (min-width: 768px) {
  .dockPanel__cash {
    height: auto;
    width: auto;
  }
}
.dockPanel__auto {
  position: relative;
  grid-area: b;
  width: 100%;
}
.dockPanel__auto button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: radial-gradient(100% 100% at 50% 0%, #6A739A 0%, #404972 57.77%, #3A4269 100%);
  border-radius: clamp(14px, 2vw, 16px);
  box-shadow: var(--box-shadow);
}
.dockPanel__auto button:disabled, .dockPanel__auto button.disabled {
  pointer-events: none;
}
.dockPanel__auto button svg {
  width: 40%;
  height: auto;
  max-width: 60px;
  filter: drop-shadow(0px 1.13433px 0.850746px rgba(0, 0, 0, 0.5));
}
@media screen and (orientation: landscape), (min-width: 768px) {
  .dockPanel__auto {
    min-width: 10%;
    width: auto;
  }
}
.dockPanel__auto .active:first-child {
  display: none;
}
.dockPanel__auto .active:last-child {
  display: block;
}
.dockPanel__spin {
  grid-area: c;
  position: relative;
}
.dockPanel__spin-gen {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  border-radius: 50%;
  margin-top: -50%;
  margin-bottom: -8px;
  margin-right: -10px;
  border: 8px solid #1C2343;
  background: #1C2343;
}
.dockPanel__spin-gen:before {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 20px;
  left: -14px;
  border-bottom-right-radius: 26px;
  background: transparent;
  box-shadow: 0 10px 0 -2px var(--console-bg);
  pointer-events: none;
  z-index: -1;
}
@media screen and (orientation: landscape) and (max-width: 700px) {
  .dockPanel__spin-gen {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 390px) {
  .dockPanel__spin-gen {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
  }
  .dockPanel__spin-gen:before {
    top: 14px;
    left: -17px;
    border-bottom-right-radius: 26px;
  }
}
@media screen and (orientation: portrait) and (min-width: 340px) and (max-width: 360px) {
  .dockPanel__spin-gen:before {
    top: 2px;
    width: 14px;
    height: 20px;
    left: -16px;
    border-bottom-right-radius: 26px;
  }
}
@media screen and (orientation: portrait) and (min-width: 360px) and (max-width: 375px) {
  .dockPanel__spin-gen:before {
    top: -3px;
    width: 14px;
    height: 20px;
    left: -13px;
    border-bottom-right-radius: 26px;
  }
}
@media screen and (orientation: portrait) and (min-width: 376px) and (max-width: 389px) {
  .dockPanel__spin-gen:before {
    top: -1.8px;
    width: 14px;
    height: 20px;
    left: -14px;
    border-bottom-right-radius: 26px;
  }
}
@media screen and (min-width: 390px) and (max-width: 410px) {
  .dockPanel__spin-gen:before {
    top: 13.5px;
    left: -18px;
    border-bottom-right-radius: 30px;
  }
}
@media screen and (min-width: 411px) and (max-width: 440px) {
  .dockPanel__spin-gen:before {
    top: 11px;
    left: -17px;
    border-bottom-right-radius: 30px;
  }
}
@media screen and (orientation: landscape), (min-width: 768px) {
  .dockPanel__spin-gen {
    position: relative;
  }
}
@media screen and (orientation: landscape) and (min-width: 700px) {
  .dockPanel__spin-gen {
    width: 110px;
    height: 110px;
  }
  .dockPanel__spin-gen:before {
    top: 16px;
  }
}
.dockPanel__spin-buttons {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.1s ease;
}
.dockPanel__spin-buttons:active {
  transform: scale(0.95);
}
.dockPanel__spin-buttons button {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(154deg, #09DB49 14.28%, #16B768 30.74%, #19B06E 45.35%, #03AC3C 68.44%, #06b748 87.48%, #0c7932 97.71%);
  box-shadow: 0 4px 2px rgba(0, 255, 129, 0.25) inset, 0 -2px 1px #00400C inset, 0 0 10px rgba(255, 255, 255, 0.5) inset, 1px 2px 1px #00FF81 inset;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
.dockPanel__spin-buttons button.dockPanel__spin-btn-text {
  font-family: "Baloo 2", "Baloo-Cyrillic", "Baloo", system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: #012801;
  font-size: clamp(14px, 4vw, 22px);
  white-space: nowrap;
  text-shadow: 0 0 6px rgba(143, 255, 95, 0.6);
}
.dockPanel__spin-buttons button.dockPanel__spin-btn-text#start-next-step {
  font-size: clamp(22px, 6vw, 36px);
}
html:lang(fr) .dockPanel__spin-buttons button.dockPanel__spin-btn-text {
  font-size: clamp(11px, 3.2vw, 16px);
  letter-spacing: -0.5px;
}
html:lang(uk) .dockPanel__spin-buttons button.dockPanel__spin-btn-text, html:lang(ru) .dockPanel__spin-buttons button.dockPanel__spin-btn-text, html:lang(tr) .dockPanel__spin-buttons button.dockPanel__spin-btn-text {
  font-size: clamp(16px, 4vw, 24px);
  letter-spacing: -0.5px;
}
html:lang(es) .dockPanel__spin-buttons button.dockPanel__spin-btn-text, html:lang(es-mx) .dockPanel__spin-buttons button.dockPanel__spin-btn-text, html:lang(pt) .dockPanel__spin-buttons button.dockPanel__spin-btn-text {
  font-size: clamp(13px, 3.8vw, 20px);
  letter-spacing: -0.5px;
}
html:lang(uk) .dockPanel__spin-buttons button.dockPanel__spin-btn-text#start-next-step, html:lang(ru) .dockPanel__spin-buttons button.dockPanel__spin-btn-text#start-next-step {
  font-size: clamp(14px, 3vw, 20px);
  letter-spacing: -0.5px;
}
html:lang(tr) .dockPanel__spin-buttons button.dockPanel__spin-btn-text#start-next-step {
  font-size: clamp(18px, 5vw, 28px);
}
html:lang(fr) .dockPanel__spin-buttons button.dockPanel__spin-btn-text#start-next-step, html:lang(es) .dockPanel__spin-buttons button.dockPanel__spin-btn-text#start-next-step, html:lang(es-mx) .dockPanel__spin-buttons button.dockPanel__spin-btn-text#start-next-step, html:lang(pt) .dockPanel__spin-buttons button.dockPanel__spin-btn-text#start-next-step {
  font-size: clamp(14px, 4vw, 20px);
}
.dockPanel__spin-buttons button#autoplay-stop {
  flex-direction: column;
  background: linear-gradient(160deg, #FF0101 11.47%, #EE0202 32.16%, #FF4242 50.7%, #EC0303 65.56%, #CD0000 85.1%);
  box-shadow: 0 4.629px 2.314px 0 rgba(255, 0, 0, 0.25) inset, 0 -2.314px 1.157px 0 #401900 inset, 0 0 11.572px 0 rgba(255, 255, 255, 0.5) inset, 1.157px 2.314px 1.157px 0 #FF9A9A inset;
  filter: drop-shadow(0 4.629px 4.629px rgba(0, 0, 0, 0.25));
}
.dockPanel__stop-count {
  font-family: "Baloo 2", "Baloo-Cyrillic", "Baloo", system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: #280D01;
  font-size: clamp(24px, 8vw, 36px);
  text-shadow: 0 0 6px rgba(255, 37, 64, 0.6);
}
.dockPanel__stop-label {
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  color: #640D04;
  text-shadow: 0 0 6px rgba(255, 37, 64, 0.6);
  font-size: clamp(10px, 3vw, 12px);
}
@media (orientation: portrait) {
  html:lang(de) .dockPanel__stop-label, html:lang(da) .dockPanel__stop-label {
    font-size: clamp(7px, 2.2vw, 9px);
    letter-spacing: -0.5px;
  }
  html:lang(fr) .dockPanel__stop-label, html:lang(pt) .dockPanel__stop-label, html:lang(it) .dockPanel__stop-label {
    font-size: clamp(8px, 2.5vw, 10px);
    letter-spacing: -0.3px;
  }
  html:lang(es) .dockPanel__stop-label, html:lang(es-mx) .dockPanel__stop-label, html:lang(pl) .dockPanel__stop-label, html:lang(ru) .dockPanel__stop-label, html:lang(uk) .dockPanel__stop-label {
    font-size: clamp(8px, 2.4vw, 10px);
    letter-spacing: -0.5px;
  }
}
.dockPanel__button, .dockPanel__button--disabled, .dockPanel__auto button, .dockPanel__cash, .dockPanel__spin-buttons button {
  transition: transform 0.1s ease, filter 0.1s ease;
}
.dockPanel__button:not(.disabled):not(.dockPanel__button--disabled):hover, .dockPanel__button--disabled:not(.disabled):not(.dockPanel__button--disabled):hover, .dockPanel__auto button:not(.disabled):not(.dockPanel__button--disabled):hover, .dockPanel__cash:not(.disabled):not(.dockPanel__button--disabled):hover, .dockPanel__spin-buttons button:not(.disabled):not(.dockPanel__button--disabled):hover {
  transform: scale(1.03);
  filter: brightness(1.06);
  cursor: pointer;
}
@media screen and (orientation: portrait) {
  .dockPanel__button, .dockPanel__button--disabled {
    width: clamp(30px, 8vw, 42px);
    aspect-ratio: 1/1;
    height: auto;
  }
  .dockPanel__complexity-text-low, .dockPanel__bet-text-low {
    font-size: clamp(10px, 3.4vw, 14px);
  }
}
@media screen and (orientation: portrait) and (min-width: 390px) {
  .dockPanel__complexity-text-low, .dockPanel__bet-text-low {
    font-size: clamp(14px, 3vw, 17px);
  }
}
@media screen and (orientation: portrait) {
  .dockPanel__complexity-text-up, .dockPanel__bet-text-up {
    font-size: clamp(9px, 2.8vw, 12px);
  }
}

#autoplay-stop-left {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #0B0F28;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  z-index: 10;
  font-family: var(--main-font);
  letter-spacing: -0.7px;
  font-size: clamp(13px, 3vmin, 17px);
}

.topbar-button-wrapper {
  position: absolute;
  top: -64px;
  left: -50px;
  display: flex;
  align-items: center;
}
.topbar-button-wrapper svg {
  width: 50px;
  height: 50px;
}
