html, body {
  height: 100%;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

#casino_app {
  overflow: hidden;
}

#explore_app .text {
    padding: 50px;
    font: 18.0px Source Sans Pro;
    max-width: 800px;
}

#explore_app {
    display: flex;
    justify-content: space-around;
}

#explore_app .gameContent {
    position: relative;
    height: 500px;
    border: solid 1px #ccc;
    margin: 5px;
    padding: 5px;
    max-width: 1100px;
}

#explore_app .text p {
    margin-bottom: 14px;
}

body:after{
    display:none;
    content: url(../assets/slot_machine.png) url(../assets/light_slot_machine.png) url(../assets/active_slot_machine.png);
}

.footer {
    display: flex;
    position: absolute;
    justify-content: space-around;
    left: 0;
    right: 0;
    bottom: 0;
}

#explore_app .footer {
    bottom: 20px;
}

#explore_app .advance {
    border-bottom: solid 1px #555;
    font-size: 45px;
}

.advance {
    color: #333;
    background-color: #EBEBEB;
    border: solid 1px #555;
    border-bottom: none;
    padding: 20px 60px;
    font-size: 70px;
    box-shadow: 0 0 20px #555;
    white-space: nowrap;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    transition: all 1s;
}

.advance.hidden {
    display: none;
}

.advance:hover {
    box-shadow: 0 0 50px #FFD436;
}

.advance:active {
    background-color: #BBB;
    transition: all 0s;
}

.advance:focus {
    outline:0;
}

.info {
    margin: 10px;
    padding: 5px;
    border-bottom: solid 1px #eee;
    font-size: 20px;
}

.counter {
  float:right;
}

.machine {
  height:150px;
  width:150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../assets/slot_machine.png);
  transition: all 1s;
  border: none;
  background-color: white;
  padding: 0;
}

.machine:hover:not(.revealed) {
  background-image: url(../assets/light_slot_machine.png);
  transition: all 0s;
}

.machine:active:not(.revealed) {
  background-image: url(../assets/active_slot_machine.png);
}

.machine:focus {
    outline:0;
}

.machine.revealed {
  background-image: url(../assets/light_slot_machine.png);
}

.average {
  margin-top: -4px;
  font-size: 160px;
  color: #FFD436;
  text-shadow: 0 0 20px #555;
    user-select: none;
    transition: all 3s;
    padding: 0;
    line-height: 1;
}

.average.highRisk {
    color: #ee6b3f;
}

.info {
  display:flex;
  justify-content: space-between;
}

.casino {
  display:flex;
  flex-direction:row;
  justify-content: space-around;
  margin-top:20px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.bandit {
    margin: 0 15px;
}

.number {
    font-size: 28px;
    margin-left: 5px;
    margin-top: -5px;
}

.histogram {
  color: #555;
  display:flex;
  flex-direction:row;
  margin-top: 5px;
  width: 100%;
  min-height: 50px;
  padding-left:1px;
}

.histogram .history {
    padding: 2px;
    min-width:10px;
    text-align: center;
    font-size: 14px;
}

.histogram .bar {
    background-color: #FFD436;
    border-radius: 0 0 2px 2px;
    width: 100%;
}