/* Application background */
div.JoBfelt {
  background-color: #0420B0;
  width: 600px;
  height: 290px;
  padding-top: 10px;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 10px;
  position: relative;
}

/* Text output box, top center */
div.JoBdivMessage {
  width: 294px;
  height: 84px;
  overflow: scroll;
  background-color: white;
  float: left;
  border-style: inset;
  border-width: 2px;
  padding: 1px;
  white-space: nowrap;
}

/* Top left and right sections */
div.JoBtopLeftRight {
  width: 150px;
  float: left;
}

/* Deal/Draw, Advice and Statistics buttons */
button.JoBbtnAction {
  background-color: #FFE84C;
  width: 100px;
  height: 40px;
  margin-left: 25px;
  font-size:large;
  padding: 0px;
}

/* Section for displaying bankroll value */
div.JoBdivBankroll {
  Width: 90px;
  height: 50px;
  margin-left: 25px;
}

/* Digit image for bankroll values */
img.JoBimgBankroll {
  height: 20px;
  width: 15px;
  float: right;
  background: url('/wizfiles/play_ff/32/JoBdec.gif') 0px 0px; /* Adjust URL per implementation. */
}

/* Section for each card image, status line and Hold/Discard button */
div.JoBcard {
  width: 100px;
  float: left;
  text-align: center;
}

/* Image for each card */
img.JoBcard {
  opacity: 1.0;
  height: 97px;
  width: 73px;
  background: url('/wizfiles/play_ff/32/JoBcards.gif') 0px 0px; /* Adjust URL per implementation. */
  animation-name: JoBfadeOut;
  animation-duration: 1s;
  animation-play-state: paused;
}

/* Animation for card fade before dealing or drawing */
@keyframes JoBfadeOut {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}

/* Hold/Discard status for each card */
p.JoBcard {
  margin-top: 2px;
  margin-bottom: 2px;
  color: white;
  font-size: large;
  font-weight: bold;
}

/* Hold/Discard button for each card */
button.JoBcard {
  background-color: #FFE84C;
  width: 73px;
  height: 40px;
  font-size: large;
  margin-top: 10px;
  padding: 0px;
}

/* Wee small tiny text, bottom right */
span.JoBfooter {
  float:right;
  margin-right:35px;
  font-size:x-small;
  margin-top:0px;
  font-style: italic;
  line-height: 12px;
  color: #F0F0F0;
}

#confirm-message {
    display: none;
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}
#confirm-message-inner {
    background: #fff;
    border-radius: 6px;
    font-size:16px;
    height:16px;
    left:0;
    width: 260px;
    height: 110px;
    padding: 20px;
    z-index: 9999;
    position:absolute;
    text-align:center;
    transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	top:50%;
	left:50%;
}