﻿HTML, body {
    background-color: #FFFFFF;
    overflow: hidden;
    font-family: Source Sans Pro, sans-serif;
    margin: 0px;
    padding: 0px;
    border: 0px;
}
body.waiting * {
    cursor: progress;
}
.truckImage {
    background-image: url("images/FrontImage1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.startImage {
    background-image: url("images/mainImage.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.playerImage {
    background-image: url("images/April22 048_small.JPG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.adminImage {
    background-image: url("images/ssafr-field 038_small.JPG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.button {
    width: 180px;
    background-color: #FFFFFF;
    border: 1px solid #43425D;
    color: #43425D;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: Source Sans Pro, sans-serif;
    font-size: 16px;
    margin: 10px 0px;
    padding: 12px 15px;
    border-radius: 4px;
    cursor: pointer;
}
.disabledButton {
    background-color: #FFFFFF;
    border: 1px solid lightgray;
    color: lightgray;
    cursor: default;
}
.smallButton {
    font-size: 12px;
    border: 1px solid #9695A4;
    color: #9695A4;
    padding: 8px 5px;
}
.dropDown {
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #43425D;
    color: #43425D;
    font-family: Source Sans Pro, sans-serif;
    font-size: 16px;
    margin: 10px 0px;
    padding: 6px 5px;
    border-radius: 4px;
}
.inputField {
    width: 378px;
    background-color: #FFFFFF;
    border: 1px solid #43425D;
    color: #43425D;
    font-family: Source Sans Pro, sans-serif;
    font-size: 16px;
    margin: 10px 0px;
    padding: 6px 10px;
    border-radius: 4px;
}
.inputPass {
    width: 378px;
    background-color: #FFFFFF;
    border: 1px solid #43425D;
    color: #43425D;
    font-family: Source Sans Pro, sans-serif;
    font-size: 16px;
    margin: 10px 0px;
    padding: 6px 10px;
    border-radius: 4px;
}
.radioLabel {
    font-size: 13px;
    margin: 0px 0px;
    color: #43425D;
    cursor: pointer;
}

input[type="radio"][disabled] + label {
    color: lightgray;
    cursor: default;
}


.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 */
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 23px;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 16px 16px;
    border: 2px solid #888;
    width: 230px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}