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

:root {
    --white: #fff;
    --max-width: 1080px;
    --n-space: min(max(12px, 3.5vmin), 30px);
    --n-space-s: min(max(8px, 2vmin), 20px);
    --n-space-xs: min(max(4px, 1vmin), 10px);
    --base: #0d131c;
    --primary: #161f2c;
    --secondary: #202a39;
    --secondary-hover: #263041;
    --tertiary: #93acd3;
    --red: #ed1d49;
    --blue: #2283f6;
    --radius: 12px;
    /* --h1: calc(32px + (42 - 32) * ((100vw - 360px) / (1920 - 360))); */
    --green-dark2: #101d1d;
    --green-dark: #1c2d2c;
    --green: #384a49;
    --green-hover: #254340;
    --green-light: #40d1c7;
}

body {
    font-family: arial;
    /* background-image: url(../images/bg.webp); */
    background-image: url(../images/4884273.jpg);
    background-position: center;
    background-repeat: none;
    background-size: cover;
}

/* Sets the background image for the wheel */
td.the_wheel {
    background-image: url(../images/wheel_background.png);
    background-position: center;
    background-repeat: none;
}

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

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

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

.form-control {
    font-family: 'Courier New', Courier, monospace;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--green-light);
    font-size: 18px;
    font-weight: bold;
    color: var(--green-dark);
}