body {
  background: black;
  overflow: hidden;
  font-family: impact;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#game {
  background-color: white;
  overflow: hidden;
  background-image: url(src/images/background.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 16 / 9;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  transition: transform 0.6s ease;
  display: none;
  box-shadow: 0vh 0vh 1vh 0.1vh black inset;
}

#loadingWindow {
  z-index: 9999;
  background-color: white;
  overflow: hidden;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 16 / 9;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  transition: transform 0.6s ease;
  background-color: rgb(22, 22, 29);
}

#ageCheck {
  border-radius: 5vh;
  border: 1vh solid #414141;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: linear-gradient(135deg, #ac99db, #2f1472);
  text-align: center;
  color: white;
  font-size: 7vh;
  -webkit-text-stroke: 0.2vh black;
  padding: 7vh;
  width: 69vh;
}

#ageCheck > p {
  padding: 0;
  margin: 0;
  margin-bottom: 4vh;
}
.adult {
  width: 33vh;
  height: 9vh;
  border: 0.1vh solid black;
  align-items: center;
  appearance: none;
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(59 161 71) 0%,
    rgb(0 255 43) 90%
  );
  border-radius: 5vh;
  box-shadow: rgba(45, 35, 66, 0.4) 0 0.4vh 0.5vh,
    rgba(45, 35, 66, 0.3) 0 1vh 1vh -1vh,
    rgba(58, 65, 111, 0.5) 0 -0.5vh 0 inset;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  line-height: 1;
  position: relative;
  transition: box-shadow 0.1s, transform 0.1s;
  font-size: 5vh;
  float: left;
  filter: drop-shadow(0vh 1vh 0vh black);
}

#notAdult {
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(245, 39, 39) 0%,
    rgb(180, 0, 0) 90%
  );
  float: right;
  filter: drop-shadow(0vh 1vh 0vh black);
}
.adult:active,
#notAdult:active,
#back:active {
  box-shadow: #000000 0 0.4vh 1vh inset;
  filter: drop-shadow(0vh 0vh 0vh black);
}
#loading {
  display: none;
  left: 50%;
  top: 45%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 71vh;
  height: 29vh;
  background: url(src/images/loading.png);
  background-size: 100% 100%;
  filter: drop-shadow(0vh 0vh 1vh black);
}

#loadingBar {
  background-size: 1vh;
  background: linear-gradient(to bottom, #ffffff 50%, #9a9a9a 50%);
  width: 97.6%;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  height: 9%;
  position: relative;
  top: 100%;
  border-radius: 1vh;
  box-shadow: 0vh 0vh 0vh 0.4vh inset;
  border: 1vh solid #ec1a23;
  animation: loading 3s linear;
  background-size: 100% 100%;
}
@keyframes loading {
  0% {
    background-size: 0 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
#settings {
  width: 3vh;
  height: 5vh;
  position: absolute;
  left: 2vh;
  top: 43.5vh;
  border: none;
  padding: 0;
  margin: 0;
  background: url(src/images/right.png);
  background-size: 100% 100%;
  opacity: 0.7;
  transition: transform 0.3s ease-in-out;
  filter: invert(1) drop-shadow(black 0.6vh 0vh 0vh);
}
#settings:hover {
  transform: translateX(1vh);
  opacity: 1;
  cursor: pointer;
}
input[type='range'] {
  appearance: none;
  width: 24vh;
  height: 1vh;
  background: #dddddd30;
  outline: none;
  transition: opacity 0.2s;
}

input[type='range']::-moz-range-thumb {
  width: 2vh;
  height: 2vh;
  background: #4caf50;
  cursor: pointer;
  border-radius: 50%;
}

input[type='range']::-webkit-slider-thumb {
  appearance: none;
  width: 2vh;
  height: 100%;
  background: #00ff0800;
  cursor: pointer;
}

#musicVolume {
  appearance: none;
  position: relative;
  top: -0.9vh;
  left: -1.6vh;
  width: 8vh;
  height: 8vh;
  border-radius: 50%;
  outline: none;
  background: #0e000000;
  transition: opacity 0.2s;
}
#sfxVolume {
  appearance: none;
  position: relative;
  top: -0.9vh;
  left: -1.6vh;
  width: 8vh;
  height: 8vh;
  border-radius: 50%;
  outline: none;
  background: #0e000000;
  transition: opacity 0.2s;
}
#sfxVolume:hover,
#musicVolume:hover {
  cursor: pointer;
}
#coinSwitcher {
  appearance: none;
  position: relative;
  top: 5.3vh;
  left: -2.1vh;
  width: 10vh;
  height: 0.5vh;
  background: linear-gradient(to right, #9c0000 50%, #179c00 50%);
  border: 0.1vh solid;
  outline: none;
  transition: opacity 0.2s;
}

#easyMode {
  background: url(src/images/easyMode.png) 0% 0% / 100%,
    linear-gradient(to right, rgba(0, 255, 0, 0.69) 0%, transparent 0%)
      rgba(255, 0, 0, 0.65);
  background-size: 100% 100%;
}
#coinSwitcher::-webkit-slider-thumb {
  appearance: none;
  width: 50%;
  height: 2vh;
  background: #00ff08;
  border: 0.1vh solid black;
  cursor: pointer;
  border-radius: 1vh;
}
#settingsMenu {
  transform: translateX(-11vh);
  position: absolute;
  padding: 1vh;
  height: 46vh;
  top: 22vh;
  display: grid;
  align-content: space-between;
  transition: transform 0.3s ease-in-out;
}
#payoutWindow {
  transform: translateX(26vh);
  position: absolute;
  width: 22vh;
  height: 40vh;
  top: 22vh;
  right: 0;
  display: grid;
  background: url(src/images/payout.png);
  background-size: 100% 100%;
  align-content: space-between;
  transition: transform 0.3s ease-in-out;
}

#menuText {
  position: absolute;
  color: white;
  top: 25vh;
  left: 11vh;
  font-size: 2.6vh;
  padding: 0;
  margin: 0;
  -webkit-text-stroke: 0.15vh black;
  display: none;
  z-index: 1000;
}
#sfxControl {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background: url(src/images/sfxIcon.png) 0% 0% / 100%,
    linear-gradient(
        to right,
        rgba(0, 255, 0, 0.69) 50%,
        black 0vh,
        black 55%,
        transparent 0vh
      )
      rgba(255, 0, 0, 0.65);
}
#musicControl {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background: url(src/images/musicIcon.png) 0% 0% / 100%,
    linear-gradient(
        to right,
        rgba(0, 255, 0, 0.69) 50%,
        black 0vh,
        black 55%,
        transparent 0vh
      )
      rgba(255, 0, 0, 0.65);
}
#coinControl {
  background: url(src/images/coinIcon.png) 0% 0% / 100%,
    linear-gradient(to right, rgba(0, 255, 0, 0.69) 100%, transparent 100%)
      rgba(255, 0, 0, 0.65);
  background-color: rgba(0, 255, 0, 0.69);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

#payoutMenu {
  background: url(src/images/infoIcon.png) 0% 0% / 100%,
    linear-gradient(to right, rgba(0, 255, 0, 0.69) 100%, transparent 100%)
      rgba(255, 0, 0, 0.65);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.settingsBtn {
  width: 8vh;
  height: 8vh;
  border: none;
  border-radius: 50%;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  border: 0.5vh solid #3d3d3d;
}

.settingsBtn:hover {
  border: 0.5vh solid #7f7d7d;
  cursor: pointer;
}

#blurWindow {
  overflow: hidden;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 16 / 9;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  transition: transform 2s ease;
  z-index: 1000;
  display: none;
}

#slotMachine {
  width: 128vh;
  height: 100%;
  margin: 0 auto;
}

#spinningWindow {
  border-radius: 4vh;
  box-shadow: 0vh 0vh 3vh 2vh #000000 inset;
  display: flex;
  padding: 2vh;
  width: 84vh;
  height: 34vh;
  background-color: #00000038;
  margin: 6vh auto 0 auto;
  justify-content: space-between;
  align-items: center;
}

#winningSectorsWindow {
  transform: perspective(50vh) rotateX(-6deg);
  width: 93%;
  background-size: 100% 100%;
  margin: 0 auto;
  height: 14vh;
  border-radius: 2vh 2vh 6vh 6vh;
  background-image: url(src/images/metall.png);
  position: relative;
  z-index: 100;
  top: 0vh;
}

#slotWindow {
  transform: perspective(60vh) rotateX(5deg);
  box-shadow: 0vh 4vh 1vh 0vh #000000c2 inset, 0vh -4vh 1vh 0vh #000000c2 inset;
  position: relative;
  background-image: url(src/images/metall.png);
  background-size: 100% 100%;
  top: -2vh;
  width: 87%;
  margin: 0 auto;
  height: 52vh;
  display: flex;
}

.spinWindow {
  width: 33%;
  z-index: 1;
  height: 90%;
  border-radius: 2vh;
  box-shadow: 0vh 0vh 1vh 1vh black;
  background-color: white;
  flex: 1;
  margin: 0 1vh;
  height: 100%;
  z-index: 12;
}

#spinningWindow .spinWindow:first-child {
  margin-left: 0;
  border-top-left-radius: 5vh;
  border-bottom-left-radius: 5vh;
  z-index: 10;
}

#spinningWindow .spinWindow:last-child {
  margin-right: 0;
  border-top-right-radius: 5vh;
  border-bottom-right-radius: 5vh;
  z-index: 10;
}

#betSector {
  background-size: 100% 100%;
  border-radius: 1vh 1vh 5vh 5vh;
  margin: 0 auto;
  z-index: 2;
  width: 96%;
  position: relative;
  height: 22%;
  bottom: 1vh;
  bottom: 4vh;
  transform: perspective(6.4vh) rotateX(2deg);
  background-image: url(src/images/metall.png);
}

#betSector2 {
  width: 93%;
  height: 83%;
  margin: 0 auto;
  position: relative;
  top: 1vh;
  background-size: 110% 100%;
  border-radius: 4vh;
  background-position: center;
  box-shadow: 0vh 2vh 1vh 2vh #000000 inset;
  background-image: url(src/images/sx.png);
}

#display {
  width: 35vh;
  height: 14vh;
  margin-top: 2vh;
  float: right;
}

#payoutSector {
  background-image: url(src/images/sx2.png);
  background-size: 100% 100%;
  transform: perspective(11.4vh) rotateX(-4deg);
  box-shadow: 0vh 4vh 2vh 1vh black inset;
  width: 91.5%;
  height: 18%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  bottom: 10vh;
  z-index: 0;
}
#texture {
  background-image: url(src/images/sx2.png);
  background-size: 100% 144%;
  border-radius: 1vh 1vh 2vh 3vh;
  width: 99.6%;
  height: 9%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  bottom: 8vh;
  z-index: 1;
}

.betBtn {
  border: 0.7vh solid #292929;
  box-shadow: 0.1vh 0.2vh 0vh 0.2vh #000000, -0.3vh -0.7vh 1vh 0.5vh black inset;
  background-position: center;
  width: 11.9vh;
  height: 4.9vh;
  top: 10.4vh;
  -webkit-text-stroke: 0.2vh black;
  border-radius: 0vh 0vh 1.3vh 1.3vh;
  position: absolute;
  filter: drop-shadow(0.5vh 0.6vh 0.3vh black);
  transition: all 0.1s ease-in-out;
  border-left: 0.5vh solid #292929;
  border-top: 0.3vh solid #292929;
}
#betPlus:active,
#betMinus:active {
  box-shadow: 0.1vh 0.2vh 0vh 0.2vh black, 0.1vh 0.6vh 1vh 0.5vh black inset,
    1.4vh 1vh 1vh 0vh black inset;
  border-left: 0.7vh solid #292929;
  border-top: 0.7vh solid #292929;
  width: 11.6vh;
  height: 4.4vh;
}

#betMinus {
  border-radius: 0vh 0vh 0vh 2vh;
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(245, 39, 39) 0%,
    rgb(180, 0, 0) 90%
  );
  left: 5.1vh;
  transition: box-shadow 0.1s ease-in-out;
}

#betPlus {
  border-radius: 0vh 0vh 2vh 0vh;
  z-index: 1;
  left: 18.3vh;
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(59 161 71) 0%,
    rgb(0 255 43) 90%
  );
  transition: box-shadow 0.1s ease-in-out;
}

#maxBet {
  background-size: 100% 90%;
  background-position: 0.5vh 0.1vh;
  -webkit-text-stroke: 0.2vh black;
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(30, 100, 210) 0%,
    rgb(0, 60, 140) 90%
  );
  background-size: 100% 100%;
  width: 12vh;
  height: 10vh;
  left: 80vh;
  top: 5vh;
  border: 1vh solid #292929;
  border-top: 0.5vh solid #292929;
  border-right: 0.6vh solid #292929;
  box-shadow: -0.4vh 0.3vh 0vh 0.1vh black, 1vh -0.9vh 1.5vh 0.5vh black inset;
  border-radius: 2vh;
  position: absolute;
  filter: drop-shadow(0vh 0.6vh 0.3vh black);
  transition: box-shadow 0.1s ease-in-out;
}

#spin {
  -webkit-text-stroke: 0.3vh black;
  background-position: center;
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(19, 170, 82) 0%,
    rgb(0, 102, 43) 90%
  );
  width: 14vh;
  height: 11vh;
  left: 96vh;
  top: 4.4vh;
  border: 1vh solid #292929;
  box-shadow: -0.4vh 0.3vh 0vh 0.1vh black, 1vh -0.9vh 2vh 0.5vh black inset;
  border-radius: 50%;
  position: absolute;
  filter: drop-shadow(0vh 0.6vh 0.3vh black);
  transition: box-shadow 0.1s ease-in-out;
  border-top: 0.5vh solid #292929;
  border-right: 0.6vh solid #292929;
}
#spin:active:hover {
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(14, 140, 67) 0%,
    rgb(0, 82, 34) 90%
  );
  cursor: default;
}

#maxBet:active {
  cursor: default;
  box-shadow: -0.4vh 0.3vh 0vh 0.1vh black, -1.4vh 1vh 1vh 0.5vh black inset,
    0vh 0vh 3vh 1vh black inset;
  border-top: 1vh solid #292929;
  border-right: 1vh solid #292929;
  width: 11.6vh;
  height: 9.6vh;
}
#spin:active {
  cursor: default;
  box-shadow: -0.4vh 0.3vh 0vh 0.1vh black, -1.4vh 1vh 1vh 0.5vh black inset,
    0vh 0vh 3vh 1vh black inset;
  border-top: 1vh solid #292929;
  border-right: 1vh solid #292929;
  width: 13.7vh;
  height: 10.5vh;
}

#spin:hover {
  cursor: pointer;
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(30, 210, 100) 0%,
    rgb(0, 140, 60) 90%
  );
}

#spin:hover p,
#maxBet:hover p,
#betPlus:hover p,
#betMinus:hover p {
  color: #fade52;
}
#betPlus:hover {
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(79, 181, 91) 0%,
    rgb(20, 255, 63) 90%
  );
  cursor: pointer;
}
#betMinus:hover {
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(250, 59, 59) 0%,
    rgb(190, 20, 20) 90%
  );
  cursor: pointer;
}
#maxBet:hover {
  background: radial-gradient(
    circle at -1% 57.5%,
    rgb(50, 120, 230) 0%,
    rgb(20, 80, 160) 90%
  );
  cursor: pointer;
}
#playerBetDisplay {
  display: flex;
  justify-content: center;
  -webkit-text-stroke: 0.2vh black;
  border-left: 0.5vh solid #000000;
  border-right: 0.5vh solid #000000;
  box-shadow: 0vh 0.7vh 0.5vh 0.2vh inset, 0.3vh 0.7vh 0vh 0vh black;
  filter: drop-shadow(0.5vh 0.6vh 0.3vh black);
  border: 1vh solid #292929;
  width: 24.5vh;
  height: 4.5vh;
  position: absolute;
  left: 5vh;
  top: 4vh;
  background: #ac99db;
  background: linear-gradient(135deg, #ac99db, #2f1472);
  border-radius: 2vh 2vh 0vh 0vh;
}

#back {
  left: 50%;
  top: 4vh;
  transform: translate(-50%, -50%);
  display: none;
  filter: drop-shadow(0vh 1vh 0vh black);
}

#winDisplay {
  top: 56%;
  left: 50%;
  -webkit-text-stroke: 0.2vh black;
  transform: translate(-50%, -50%);
  width: 39.5vh;
  border-radius: 2vh;
  height: 9.7vh;
  position: absolute;
  filter: drop-shadow(0vh 0.6vh 0.3vh black);
  box-shadow: 0vh 1vh 1vh 0.3vh inset, 0vh 1vh 0vh 0vh black;
  background: #292929;
  background: linear-gradient(135deg, #ac99dba6, #2f1472);
  border-radius: 12% / 100%;
  border: 1vh solid #292929;
}

#betDisplay {
  width: 79.5vh;
  height: 11vh;
  left: -9.5vh;
  border-radius: 1vh 1vh 1vh 4.6vh;
  position: relative;
  display: flex;
  justify-content: end;
  top: 1.4vh;
  box-shadow: 0vh 1vh 1vh 0.3vh inset;
  background: linear-gradient(343deg, #ac99db, #2f1472);
  margin: 0 auto;
  border-left: 1vh solid black;
  border-right: 1vh solid black;
}

#creditsDisplay {
  width: 18vh;
  height: 11vh;
  position: absolute;
  right: 8vh;
  text-align: center;
  top: 1.4vh;
  box-shadow: 0vh 1vh 1vh 0.3vh inset;
  background: linear-gradient(343deg, #ac99db, #2f1472);
  border-radius: 1vh 1vh 4.6vh 1vh;
  margin: 0 auto;
  border-right: 1vh solid black;
}

#creditsDisplay > p {
  margin-top: 2vh;
  font-size: 3vh;
  color: white;
  -webkit-text-stroke: 0.2vh black;
}

#creditsInfo {
  color: gold;
}
#coinRain {
  transform: translate(-50%, -50%);
  top: 52%;
  left: 50%;
  width: 90%;
  height: 85%;
  background-image: url(src/images/coinsRain.gif);
  animation: coinsDrop 0.4s linear infinite;
  position: absolute;
  background-size: 40.1% 70%;
  display: none;
}

#coinRain > p {
  text-align: center;
  font-size: 8vh;
  -webkit-text-stroke: 0.4vh black;
  margin: -1vh 0 auto;
  color: #38ff00;
  animation: displayColor 1s linear infinite;
}

@keyframes coinsDrop {
  0% {
    background-position-y: 0vh;
  }
  100% {
    background-position-y: 6.5vh;
  }
}

#box {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #3c3c3c, #ffffff, #3c3c3c);
  border-radius: 5% / 100%;
  display: flex;
  justify-content: space-around;
  border-left: 0.5vh solid #8b7710;
  border-right: 0.5vh solid #8b7710;
}

#shadow {
  width: 73.9%;
  right: 14.5vh;
  height: 68%;
  z-index: 999;
  position: absolute;
  box-shadow: 0vh 4vh 1vh -2vh inset, 0vh -4vh 1vh -2vh inset;
  border-radius: 1vh;
}

#betsPayout1 {
  width: 26vh;
  background-position-y: 0vh;
  height: 9vh;
  position: relative;
  top: 2vh;
  left: 2vh;
  background-size: 14vh 8vh;
  background-repeat: no-repeat;
  background-image: url(src/images/bets2.png);
}

#betsPayout2 {
  width: 26vh;
  background-position-y: 0vh;
  height: 9vh;
  position: relative;
  top: -7vh;
  left: 32vh;
  background-size: 14vh 8vh;
  background-repeat: no-repeat;
  background-image: url(src/images/bets1.png);
}

#betsPayout3 {
  width: 26vh;
  background-position-y: 0vh;
  height: 9vh;
  position: relative;
  top: -16vh;
  left: 60vh;
  background-size: 14vh 8vh;
  background-repeat: no-repeat;
  background-image: url(src/images/bets3.png);
}

.betDisplay {
  font-size: 2.5vh;
  position: relative;
  padding: 0;
  margin: 0;
  color: gold;
}

.textInfo {
  margin: 0;
  padding: 0;
  text-shadow: 0vh 0vh 1vh black;
  font-size: 3vh;
  text-align: center;
  color: rgb(255, 255, 255);
  position: relative;
  bottom: -1vh;
}

#playerBet {
  bottom: -0.6vh;
  color: gold;
  width: 6vh;
}

#win {
  font-size: 3vh;
  bottom: -1.3vh;
}

#playerWin {
  top: 0.6vh;
  color: gold;
  font-size: 4.5vh;
}

@keyframes spinAnimation {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: 146vh;
  }
}

@keyframes arrowAnimation2 {
  from {
    transform: scaleX(-1) rotate(0deg);
  }
  to {
    transform: scaleX(-1) rotate(10deg);
  }
}
@keyframes arrowAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(10deg);
  }
}

@keyframes textAnimation {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

#roller2 {
  width: 38.3%;
  height: 100%;
  z-index: 100;
  filter: drop-shadow(0vh -0.3vh 0vh black);
  border-left: 0.5vh solid #8b7710;
  border-right: 0.5vh solid #8b7710;
  background-image: url(src/images/line.png);
  background-size: 13vh 139vh;
  background-repeat: no-repeat repeat;
  background-position-x: center;
  border-radius: 13% / 100%;
  box-shadow: 0vh 0vh 0.5vh 0vh black;
  background-position-y: 120.4%;
}

#roller1 {
  width: 33.3%;
  height: 100%;
  z-index: 100;
  filter: drop-shadow(0.2vh -0.3vh 0vh black);
  background-image: url(src/images/line.png);
  background-size: 13vh 139vh;
  background-repeat: no-repeat repeat;
  background-position-x: center;
  left: 15%;
  background-position-y: 120.4%;
}

#roller3 {
  filter: drop-shadow(-0.2vh -0.3vh 0vh black);
  width: 33.3%;
  height: 100%;
  z-index: 100;
  background-image: url(src/images/line.png);
  background-size: 13vh 139vh;
  background-repeat: no-repeat repeat;
  background-position-x: center;
  right: 15%;
  background-position-y: 120.4%;
}

#winningLine {
  width: 76%;
  height: 0.5%;
  position: absolute;
  z-index: 999;
  top: 48%;
  left: 12%;
}

#gameOverWindow {
  margin: 25vh auto 0 auto;
  padding: 5vh;
  font-size: 5vh;
  width: 55vh;
  text-align: center;
  border-radius: 3vh;
  background-color: #3a3a3aa1;
  border: 1vh solid black;
  color: white;
  text-shadow: 0vh 1vh 0.5vh black;
  transition: transform 0.5s ease;
  transform: scale(0);
}

#restart {
  width: 13vh;
  height: 13vh;
  margin-top: 3vh;
  border-radius: 50%;
  border: none;
  background: url(src/images/restart.png),
    radial-gradient(
      circle at 10.6% 22.1%,
      rgb(206, 18, 18) 0%,
      rgb(122, 21, 21) 100.7%
    );
  background-size: 100%;
  border: 1vh solid black;
  transition: box-shadow 0.1s, transform 0.05s ease;
}

#restart:active {
  box-shadow: 0vh 0vh 1vh 0.2vh black inset;
  transform: scale(0.95);
}

#restart:hover {
  background: url(src/images/restart.png),
    radial-gradient(
      circle at 10.6% 22.1%,
      rgb(18, 206, 43) 0%,
      rgb(21, 122, 41) 100.7%
    );
  background-size: 100%;
  cursor: pointer;
}

#totalBetText {
  bottom: -0.6vh;
  width: 14vh;
  font-size: 3vh;
}

#maxBet > p {
  text-align: center;
  filter: drop-shadow(0.4vh 0vh 1vh black);
  width: 6vh;
  height: 8vh;
  font-size: 3.2vh;
  margin: 0 auto;
  color: gold;
  position: relative;
  text-shadow: -0.3vh 0.1vh 0vh black;
  padding: 0;
  position: absolute;
  top: 0.5vh;
  left: 3.6vh;
  transition: font-size 0.1s ease-in-out, top 0.1s ease-in-out,
    left 0.1s ease-in-out;
}
#spin > p {
  filter: drop-shadow(0.4vh 0vh 1vh black);
  width: 9vh;
  height: 5vh;
  font-size: 4.4vh;
  margin: 0 auto;
  color: gold;
  position: relative;
  text-shadow: -0.3vh 0.4vh 0vh black;
  padding: 0;
  position: absolute;
  top: 1.8vh;
  left: 3.3vh;
  transition: font-size 0.1s ease-in-out, top 0.1s ease-in-out,
    left 0.1s ease-in-out;
}

#maxBet:active p {
  font-size: 3vh;
  top: 2vh;
  left: 1.9vh;
  color: #a78d00;
}

#spin:active p {
  font-size: 4vh;
  top: 3vh;
  left: 1.9vh;
  color: #a78d00;
}

#betPlus > p,
#betMinus > p {
  filter: drop-shadow(0.4vh 0vh 1vh black);
  width: 7vh;
  height: 4vh;
  font-size: 3vh;
  margin: 0 auto;
  color: gold;
  position: relative;
  text-shadow: 0.3vh 0.2vh 0vh black;
  padding: 0;
  position: absolute;
  top: -0.3vh;
  left: 2.4vh;
  transition: font-size 0.1s ease-in-out, top 0.1s ease-in-out,
    left 0.1s ease-in-out;
}

#betPlus:active p,
#betMinus:active p {
  font-size: 2.7vh;
  top: 1vh;
  left: 3.4vh;
  color: #a78d00;
}

.payoutInfo {
  -webkit-text-stroke: 0.1vh black;
  background-size: 47% 79%;
  background-position: left;
  background-repeat: no-repeat;
  width: 30%;
  filter: drop-shadow(0vh -0.2vh 0vh black);
  margin-top: 0.5vh;
  height: 100%;
  background-image: url(src/images/bets3.png);
}
.payoutInfo:nth-child(2) {
  background-image: url(src/images/bets1.png);
}
.payoutInfo:nth-child(3) {
  width: 33%;
  background-image: url(src/images/bets2.png);
}

.payout {
  display: grid;
  float: right;
  width: 41%;
  margin-top: 0.8vh;
  height: 82%;
}

#coinSector {
  transform: skewX(10deg);
  width: 12.5vh;
  height: 10vh;
  bottom: 5vh;
  box-shadow: 0vh 0.8vh 1vh 0vh black inset, 0vh -0.5vh 0.6vh 0.3vh black;
  border-radius: 50%;
  position: absolute;
  right: 6.1%;
  background-image: url(src/images/coiner3.png);
  background-size: 100% 100%;
  filter: brightness(0.6);
}

#coin {
  transform: skewX(10deg) scaleX(0.5);
  filter: contrast(200%) saturate(85%) sepia(67%);
  width: 2vh;
  height: 7vh;
  bottom: 7vh;
  position: absolute;
  right: 10.5%;
  background-image: url(src/images/coin.png);
  background-size: 100% 100%;
  display: none;
  animation: enterCoin 0.6s ease-in-out forwards;
}

@keyframes enterCoin {
  0% {
    bottom: 5vh;
    transform: skewX(10deg) scaleX(0.6);
    box-shadow: 0vh 0vh 0vh 0vh black inset;
  }
  50% {
    bottom: 7vh;
    transform: skewX(10deg) scaleX(0.5);
    box-shadow: 2.4vh 4vh 1vh -2vh black inset, -2.4vh 4vh 1vh -2vh black inset;
  }
  100% {
    box-shadow: 2.4vh 10vh 1vh -2vh black inset,
      -2.4vh 10vh 1vh -2vh black inset;
  }
}

#diamond1 {
  filter: drop-shadow(0.3vh 0vh 0vh black);
  width: 5vh;
  height: 4vh;
  background: url(src/images/diamond.png);
  position: relative;
  left: 24.4vh;
  bottom: 1.3vh;
  background-size: 100% 100%;
}

#diamond2 {
  filter: drop-shadow(-0.3vh 0vh 0vh black);
  width: 5vh;
  height: 4vh;
  background: url(src/images/diamond.png);
  position: relative;
  left: 55.4vh;
  bottom: 5.3vh;
  background-size: 100% 100%;
}

#arrow {
  width: 7vh;
  height: 7vh;
  background: url(src/images/arrow.png);
  position: absolute;
  left: -3.6vh;
  bottom: -3.4vh;
  background-size: 100% 100%;
  transition: transform 0.5s ease-in-out;
  filter: drop-shadow(0.5vh 0vh 0.2vh black);
}

#arrow2 {
  transform: scaleX(-1);
  filter: drop-shadow(0.5vh 0vh 0.2vh black);
  width: 7vh;
  height: 7vh;
  background: url(src/images/arrow.png);
  position: absolute;
  transition: transform 0.5s ease-in-out;
  right: -3.6vh;
  bottom: -3.4vh;
  background-size: 100% 100%;
}

.goodLuck {
  font-size: 5vh;
  bottom: -2vh;
}

@keyframes glColor {
  0% {
    color: white;
  }
  50% {
    color: rgb(0, 250, 33);
  }
  100% {
    color: white;
  }
}

@keyframes displayColor {
  from {
    filter: drop-shadow(0vh 0.6vh 0.3vh black) hue-rotate(0deg);
  }
  to {
    filter: drop-shadow(0vh 0.6vh 0.3vh black) hue-rotate(360deg);
  }
}

#foglayer_01 {
  -webkit-animation: foglayer_01_opacity 10s linear infinite,
    foglayer_moveme 15s linear infinite;
  -moz-animation: foglayer_01_opacity 10s linear infinite,
    foglayer_moveme 15s linear infinite;
  animation: foglayer_01_opacity 10s linear infinite,
    foglayer_moveme 15s linear infinite;
}

#foglayer_01 .image01,
#foglayer_01 .image02 {
  background: url('https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog1.png')
    center center/cover no-repeat transparent;
}

#foglayer_01 .image01,
#foglayer_01 .image02,
#foglayer_02 .image01,
#foglayer_02 .image02,
#foglayer_03 .image01,
#foglayer_03 .image02 {
  float: left;
  height: 100%;
  width: 50%;
}

#foglayer_01,
#foglayer_02,
#foglayer_03 {
  height: 100%;
  position: absolute;
  width: 200%;
}

#foglayer_02 .image01,
#foglayer_02 .image02,
#foglayer_03 .image01,
#foglayer_03 .image02 {
  background: url('https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog2.png')
    center center/cover no-repeat transparent;
}

#foglayer_02,
#foglayer_03 {
  -webkit-animation: foglayer_02_opacity 21s linear infinite,
    foglayer_moveme 13s linear infinite;
  -moz-animation: foglayer_02_opacity 21s linear infinite,
    foglayer_moveme 13s linear infinite;
  animation: foglayer_02_opacity 21s linear infinite,
    foglayer_moveme 13s linear infinite;
}

@-webkit-keyframes foglayer_01_opacity {
  0% {
    opacity: 0.1;
  }
  22% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.28;
  }
  58% {
    opacity: 0.4;
  }
  80% {
    opacity: 0.16;
  }
  100% {
    opacity: 0.1;
  }
}
@-moz-keyframes foglayer_01_opacity {
  0% {
    opacity: 0.1;
  }
  22% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.28;
  }
  58% {
    opacity: 0.4;
  }
  80% {
    opacity: 0.16;
  }
  100% {
    opacity: 0.1;
  }
}
@-o-keyframes foglayer_01_opacity {
  0% {
    opacity: 0.1;
  }
  22% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.28;
  }
  58% {
    opacity: 0.4;
  }
  80% {
    opacity: 0.16;
  }
  100% {
    opacity: 0.1;
  }
}
@keyframes foglayer_01_opacity {
  0% {
    opacity: 0.1;
  }
  22% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.28;
  }
  58% {
    opacity: 0.4;
  }
  80% {
    opacity: 0.16;
  }
  100% {
    opacity: 0.1;
  }
}

@-webkit-keyframes foglayer_02_opacity {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.1;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}
@-moz-keyframes foglayer_02_opacity {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.1;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}
@-o-keyframes foglayer_02_opacity {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.1;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes foglayer_02_opacity {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.1;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}

@-webkit-keyframes foglayer_03_opacity {
  0% {
    opacity: 0.8;
  }
  27% {
    opacity: 0.2;
  }
  52% {
    opacity: 0.6;
  }
  68% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}
@-moz-keyframes foglayer_03_opacity {
  0% {
    opacity: 0.8;
  }
  27% {
    opacity: 0.2;
  }
  52% {
    opacity: 0.6;
  }
  68% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}
@-o-keyframes foglayer_03_opacity {
  0% {
    opacity: 0.8;
  }
  27% {
    opacity: 0.2;
  }
  52% {
    opacity: 0.6;
  }
  68% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes foglayer_03_opacity {
  0% {
    opacity: 0.8;
  }
  27% {
    opacity: 0.2;
  }
  52% {
    opacity: 0.6;
  }
  68% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}

@-webkit-keyframes foglayer_moveme {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@-moz-keyframes foglayer_moveme {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@-o-keyframes foglayer_moveme {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes foglayer_moveme {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@media only screen and (min-width: 280px) and (max-width: 767px) {
  #foglayer_01 .image01,
  #foglayer_01 .image02,
  #foglayer_02 .image01,
  #foglayer_02 .image02,
  #foglayer_03 .image01,
  #foglayer_03 .image02 {
    width: 100%;
  }
}

#copyright {
  font-size: 1.5vh;
  position: absolute;
  left: 2vh;
  bottom: 0;
  -webkit-text-stroke: 0.1vh black;
  color: white;
}
