/*
Description:
    Contains all the styles for the winning wheel page.
    
Verison History:
    2012-01-28, Douglas McKechie
    - Created based off earlier version.
    
    2015-09-26, Douglas McKechie
    - Minor updates for the 2.0 winwheel example.
*/
/* html,
body {
  margin: 0;
  height: 100%;
} */

body {
  font-family: arial;
  background: url() center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Sets the background image for the wheel */
td.the_wheel {
  background-image: url(./wheel_back.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 32px;
}

/* Do some css reset on selected elements */
h1,
p {
  margin: 0;
}

div.power_controls {
  margin-right: 70px;
}

div.html5_logo {
  margin-left: 70px;
}

/* Styles for the power selection controls */
table.power {
  background-color: #cccccc;
  cursor: pointer;
  border: 1px solid #333333;
}

table.power th {
  background-color: white;
  cursor: default;
}

td.pw1 {
  background-color: #6fe8f0;
}

td.pw2 {
  background-color: #86ef6f;
}

td.pw3 {
  background-color: #ef6f6f;
}

/* Style applied to the spin button once a power has been selected */
.clickable {
  cursor: pointer;
}

/* Other misc styles */
.margin_bottom {
  margin-bottom: 5px;
}

.alert-bg2.active {
  display: flex !important;
}

.alert-bg2 {
  z-index: 99999 !important;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.alert-bd2 {
  position: relative;
  background: #f1f1f1;
  color: black;
  font-weight: bold;
  padding: 20px;
  height: auto !important;
}

.alert-close2 {
  font-size: 26px;
  font-weight: bold;
  color: white;
  position: absolute;
  top: -10px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  background: rgb(255, 0, 0);
}

.alert-bd,
.alert-bd2 {
  width: 900px;
  max-width: 80%;
}

.input-form {
  width: 400px;
}
