/*Copyright &copy 2016 Joe Michael Allen and Frank Vahid at the Univ. of California, Riverside. All rights reserved.*/
/*
    Please only use the following colors in your assignments. 
    
    // Grays
    lightest-gray:             #FBFBFB;
    lighter-gray:              #D8D8D8;
    light-gray:                #CCCCCC;
    gray:                      #888888;
    darker-gray:               #666666;
    darkest-gray:              #333333;
    // Oranges
    lightest-orange:           #FFDAC1;
    lighter-orange:            #F9D8BC;
    light-orange:              #FFB789;
    pale-orange:               #E8B493;
    accent-orange:             #E68142;
    orange:                    #c60;
    dark-orange:               #AB4600;
    // Blues
    lighter-blue:              #87ADD2;
    light-blue:                #6685A8;
    dark-blue:                 #5780A6;
    darker-blue:               #576E91;
    // Greens
    green:                     #738033;
    // Reds
    light-red:                 #FF4949;
    red:                       #BB0404;
    dark-red:                  #880000;
    // Yellows
    light-yellow:              #FFD364;
    yellow:                    #EAB51F;
    dark-yellow:               #D39F0D;
    // Black & white
    black:                     #000000;
    white:                     #FFFFFF;
*/

html, body {
    font-family: HelveticaNeue-Light, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    margin: 0px;
    position: relative;
}

.total-container {
    margin: 0px;
}

.header-container {
    color: white;
    padding-bottom: 10px;
    border-bottom: 1px solid white;
    padding-top: 15px;
    background-color: #424242;
}

.headerStats-containter {
    text-align: center;
}

.headerStats-containter div {
    display: inline-block;
    margin: 0px 30px;
}

@media screen and (max-width: 768px) {
    .headerStats-containter div {
        margin: 0 10px;
    }

    .headerButtons-wrapper {
        margin-top: 12px;
    }
}

#top-logo {
    margin: auto;
    margin-left: 20px;
}

#top-logo img {
    margin-right: 10px;
}

@media screen and (min-width: 768px) {
    #scoreDiv, #timeDiv, #levelDiv {
        font-size: 19px;
    }
}

@media screen and (max-width: 768px) {
    #scoreDiv, #timeDiv, #levelDiv {
        font-size: 16px;
    }
}

.headerButtons-container {
    text-align: center;
}

.headerButtons-wrapper {
    display: inline-block;
}

.headerButtons-container span {
    display: inline-block;
    cursor: hand;
}

.headerButtons-container span:hover {
    color: #ddd;
}

.game-container {
    margin: 0px;
}

.footer-container {
    height: 5%;
    margin: 0px;
}

.footerNotes-container {
    width: 88%;
    height: 100%;
    margin: 0px;
    float: left;
}

#copyright {
    font-size: 12;
    margin: 0px 0px 0px 5px;
}

#NSF {
    font-size: 8;
    margin: 0px 0px 0px 5px;
}

.feedbackButton-container {
    width: 12%;
    height: 100%;
    margin: 0px;
    float: right;
}

.btn-default {
    background-color: #424242;
    border: 1px solid white;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    padding: 8px 8px 8px 0px;
    margin: 2px;
    width: 90%;
}

.btn-default:hover {
    background-color: #616161;
}

.header-container .fa {
    font-size: 20px;
    margin-left: 10px;
}

.cover {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 5;
    width: 100%;
    height: 100%;
}

.menu-container {
    text-align: center;
    width: 40%;
    padding: 20px 10px;
    margin: 0 auto;
    border: 1px solid lightgray;
    background-color: #ffffff;
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
}

@media screen and (max-width: 992px) {
    .menu-container {
        text-align: center;
        width: 80%;
    }
}

.menu-container .main-actions-container {
    margin-top: 15px;
}

.menu-container .main-actions-container .fa {
    margin: 0 15px;
    cursor: hand;
}

.menu-container .main-actions-container .fa:hover {
    color: midnightblue;
}

.menu-container .player-status {
    margin-top: 50px;
}

.menu-container .player-status span {
    font-size: 25px;
}

.menu-container .other-setting-container {
    margin-top: 60px;
}

.menu-container .other-setting-container .fa {
    cursor: hand;
}

.menu-container .other-setting-container .fa:hover {
    color: midnightblue;
}

.menu-container .feedback-button-container {
    margin-top: 20px;
}

.menu-container .feedback-button {
    font-size: 18px;
    cursor: hand;
    height: 50px;
    width: 100%;
}

.menu-container .copyright-container {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    margin-left: 3px;
    margin-right: 3px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

/*
  Add any additional CSS rules below
  Please avoid using !important in any rules
*/

/*.example-button {
   background-color: #c60;
   border:           none;
   color:            white;
   cursor:           pointer;
   font-size:        16px;
   height:           30px;
   margin:           0 2px 5px 0;
   width:            100px;
}*/