/*
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: arial;
    background-image: url('../assets/images/bgwheel.jpg');
    background-size: cover;
    color: #f0f0f0;
    font-family: 'Custom', arial, helvetica;
    padding: 0;
    margin: 0;
    zoom: 1;
}

/* Sets the background image for the wheel */
.card{
    position:fixed!important;
    bottom:10%;
    left:64%;
}
.inner{
    grid-area:inner-div;
    position:absolute;
    top:14%;
    left:15%;
    width:30%;
}
#canvas
{
    position:absolute;
    top:14.5%;
    left:15%;
    width:30%;
}

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

h1 {
    font-size: 1.5em;
}

p {
    font-size: 0.8em;
}

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

/* Styles for the power selection controls */

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

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

.box {
  background-color: lightgrey;
  width: 300px;
  border: 15px solid #00f923;
  padding: 25px;
  margin: 10px;
  border-radius: 25px;
  text-align: center;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* 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: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#outputhadiah{
  color: red;
  text-align: center;
  font-size: 18px;
}

#gambar{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}
@media only screen and (max-width: 1000px) {
  .card{
        bottom:10%;
        left:25%;
        max-width:50rem;
        font-size:40px;
    }
    #canvas {
        top:9%;
        width:850px;
        height:850px;
        left:8%;
    }
    .inner{
        top:9%;
        width:850px;
        height:850px;
        left:8%;
    }
    .form-control-lg{
        font-size:3.5rem!important;
    }
    body{
        background-image: url('../assets/images/bgmobile.jpg');
    }
}