/*
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.
*/

body
{
font-family: 'VT323', monospace !important;
background-color: #212529!important;
}

.btn{
font-size:3rem !important;
padding: 0.375rem 1.75rem !important;
border-radius: 1.25rem !important;
}

/* Sets the background image for the wheel */
.the_wheel
{
    background-image: url(./wheel_back.png);
    background-position: center;
    background-repeat: no-repeat;
}

/* Do some css reset on selected elements */
h1
{
    font-size: 3rem !important;
}

#quote {
font-style: italic;
font-size: 2.5rem;
}

#your_club {
    font-size: 3rem;
    color:#e7d7ff !important;
    }

#credits {
font-size: 2.5rem !important;
}

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;
}

/* Modale window */
/* The Modal (background) */
.modal {
    display: flex; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 0px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #212529 !important;
    margin: auto;
    padding: 20px;
    border: 10px dashed #5b3e89 !important;
    width: 80%;
    font-size: 2.8rem !important;
    color: #e7d7ff !important;
    overflow-y: auto;
    height: 70vh !important;
  }
  
  /* The Close Button */
  .closemod {
    color: #FFFFFF !important;
    position: absolute;
    right:40px;
    top: 10px;
    font-size: 4.5rem !important;
    opacity: 0.9 !important;
  }
  
  .closemod:hover,
  .closemod:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }