* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 600px) {
    body {
        background-color: red;
    }
}
@media (max-width: 599px) {
    body {
        background-color: blue;
    }
}

/* body contains two parts, constant #menuBar at the top and the rest is replaceable #pageContent */
body {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding-top: 50px; /* nav-bar height */
/*    min-width: 600px;
    min-height: 600px;*/
    background-color: #c5d9e3;
    overflow-x: hidden;
/*    overflow   : hidden;*/
}
.heading
{
    margin: 0;
    padding: 1rem 1rem 1rem 2rem;
    background-color: rgb(49, 46, 42);
    color: rgb(255, 207, 149);
}
.heading-mark{
    color: rgb(255, 244, 230);
    font-weight: bold;
    padding: 3px;
;}

/* 1: Menu Specifics: */

#menuBar {
    position: fixed;
    width: 100%;
    height: 50px; /* nav-bar height */
    top: 0;
    left: 0;
}

nav {
    position: fixed;
    width: 100%;
    height: 50px; /* nav-bar height */
    top: 0;
    left: 0;
    background-color: #888;
    border-bottom-color: black;
    opacity: 1;
}

/* this bar is embedded in the menuBar */
#statusBar {
    position: fixed;
    height: 40px;
    top: 5px;
    margin: 0;
    padding: 2px;
    left: 10px;
    right: 170px; /* cuz, bar buttons */
    color: #d5d7e8;
    font-size: 26px;
    align-self: center;
    text-align: center;
}

#newGameModalBtn {
    position: fixed;
    width: 40px;
    height: 40px;
    right: 120px;
    top: 5px;
    display: block
    color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
}

#newGame {
}

#appsModalBtnImg {
    position: fixed;
    width: 40px;
    height: 40px;
    right: 120px;
    top: 5px;
    display: block
    color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
}

#avatar {
    position: fixed;
    right: 65px;
    top: 5px; /* nav-bar height 50 - 40, half */
    padding: 0px;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    horizontal-align: middle;
    display: block
    color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
  /*
    color: rgb(226, 226, 226);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 14px;*/
}

.burger {
    position: fixed;
    top: 5px;
    right: 5px;
    padding: 5px; /* nav-bar height 50 */
    vertical-align: middle;
    horizontal-align: middle;
    display: block;
    cursor: pointer;
}

.burger div {
    background-color: rgb(226, 226, 226);
    width: 25px;
    height: 3px;
    margin: 5px;
    transition: all 0.2s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.list-group .list-group-flush {
    top: 400px;
}


@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slidingMenu {
    background-color: rgba(127, 127, 127, 0.5);
    position: fixed;
    right: 0px;
    top: 50px; /* nav-bar height 50 */
    width: 200px;
    height: 100vh;
    display: flex;
    z-index: 1; /* Sit on top */
    flex-direction: column;
    align-items: bottom;
    text-align: right;
    justify-content: stretch;
    transform: translateX(100%);
}

.slidingMenu-top-space {
    margin-top: 50px; /* to breathing room */
}

.slidingMenu-top-space2 {
    margin-top: 200px; /* separation between apps and legals */
}

.slidingMenu li {
    list-style: none;
    opacity: 0; /* for smooth animation */
    padding: 10px;
    margin: 5px;
    line-height: 20px;/*Add this*/
}

.slidingMenu a {
    text-decoration: none;
/*
    letter-spacing: 4px;
*/
    font-weight: bold;
}

.slidingMenu-active {
    transform: translateX(0%);
}

.slidingMenu-general {
    color:#eee;
    font-size:22px;
}

.slidingMenu-legals {
    color:#ccc;
    font-size:16px;
}

/* the buttons inside of the card products modal view.*/
.productBtn {
    width: 80px;
    height: 80px;
    color: rgba(0, 126, 126, 1);
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
}

/* 2: Page Specifics: */

#pageContent {
    position: fixed;
    top: 50px;
    width: 100%;
/*
    height: 100%;
*/
}

.page-title {
    position: relative;
    top: 80px;
    align-self: center;
    text-align: center;
    color: #414463;
}

/*#privacyPolicy {
    color:#ccc;
    font-size:15px;
}
#termsAndConditions {
    color:#ccc;
    font-size:15px;
}
#disclaimer,  {
    color:#ccc;
    font-size:15px;
}*/

#handicapCounts {

}

.options {
  border: 1px solid #e5e5e5;
  padding: 10px;
}

option {
  font-size: 17px;
  background-color: #ddd;
}

option:before {
  content: ">";
  font-size: 17px;
  display: none;
  padding-right: 10px;
  padding-left: 5px;
  color: #fff;
}

option:hover:before {
  display: inline;
}

/*select {
  position:
  font-size: 18px;
  border: none;
  background: #eee;
      color: #555;
    margin: 0;
    overflow: hidden;
    padding-top: 2px;
}*/


select {
  position: absolute;
  margin: 10px;
  top: 100px;
  right: 100px;
  width: 200px;
  font: 400 17px/1.3 sans-serif;
  -webkit-appearance: none;
  appearance: none;
  color: #222 /*var(--baseFg);*/
  border: 1px solid var(--baseFg);
  line-height: 1;
  outline: 0;
  padding: 0.65em 2.5em 0.55em 0.75em;
  border-radius: var(--radius);
  background-color: var(--baseBg);
  background-image: linear-gradient(var(--baseFg), var(--baseFg)),
    linear-gradient(-135deg, transparent 50%, var(--accentBg) 50%),
    linear-gradient(-225deg, transparent 50%, var(--accentBg) 50%),
    linear-gradient(var(--accentBg) 42%, var(--accentFg) 42%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 1px 100%, 20px 22px, 20px 22px, 20px 100%;
  background-position: right 20px center, right bottom, right bottom, right bottom;
}
select:hover {
  background-image: linear-gradient(var(--accentFg), var(--accentFg)),
    linear-gradient(-135deg, transparent 50%, var(--accentFg) 50%),
    linear-gradient(-225deg, transparent 50%, var(--accentFg) 50%),
    linear-gradient(var(--accentFg) 42%, var(--accentBg) 42%);
}
select:active {
  background-image: linear-gradient(var(--accentFg), var(--accentFg)),
    linear-gradient(-135deg, transparent 50%, var(--accentFg) 50%),
    linear-gradient(-225deg, transparent 50%, var(--accentFg) 50%),
    linear-gradient(var(--accentFg) 42%, var(--accentBg) 42%);
  color: var(--accentBg);
  border-color: var(--accentFg);
  background-color: var(--accentFg);
}
.theme-1 {
  top: 100px;
  --radius: 2em;
  --baseBg: #f0f0f0;
  --baseFg: #a3a3a3;
  --accentBg: #adadad;
  --accentFg: #888;
}
.theme-2 {
  top: 200px;
  --radius: 2em;
  --baseBg: #f0f0f0;
  --baseFg: #a3a3a3;
  --accentBg: #adadad;
  --accentFg: #888;
}
.theme-3 {
  top: 300px;
  --radius: 2em;
  --baseBg: #f0f0f0;
  --baseFg: #a3a3a3;
  --accentBg: #adadad;
  --accentFg: #888;
}

#startGameBtn {
  position: absolute;
  width: 42px;
  height: 42px;
  margin: 0;
  top: 5px;
  right: 10px;
  border: 1px solid transparent;
  border-radius: 20px;
}
#startGameBtn img{
  float: center;
  margin-left: 0;
}
#startGameBtn:hover{
  border-color: rgba(0, 255, 0, 1);
}

#PlayWithKatago {
/*
    background: #73AD21;
*/
    width: 500px;
    height: 340px;
    -webkit-border-radius: 50px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 50px;
    -moz-background-clip: padding;
    border-radius: 50px;
    background-clip: padding-box;
    margin: 30px 0 0 5px;
    float: center;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
}

#AppStoreDownloadIcon {
    margin: 50px 0 0 50px;
    width: 140px;
    height: 44px;
    cursor: pointer;
}
