#gameMenu {
    width: 90vmin;
    height: 76vmin;
    padding: 0;
    border: 0.441vmin solid black;
    display: block;
    /*margin: 2.5vmin auto;*/
    border-radius: 4.412vmin;
    /*position: relative;*/
    box-shadow: 20px 10px 10px rgba(0,0,0,0.8);
    background-color: none;
    transition: background 1s;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -38vmin 0 0 -45vmin;
}
#gameMenu:after {
    content: "";
    background: url(../pictures/wood.jpg);
    background-size: cover;
    border-radius: 4vmin;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    z-index: -1;
    transition: opacity 1s;
}

#gameMenu table {
    width: -moz-max-content; /* otherwise text was wrapped inside Button & Labels in FF */
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 5.882vmin; /* 40px */
}
#gameMenu td {
    padding: 0.735vmin; /* 5px; */
    color: black;
    font-family: 'Arial';
    font-weight: bold;
    font-size: 5vmin;
    text-transform: uppercase;
    vertical-align: middle;
}

#gameMenu button {
    background-color: transparent;
    border: 0.441vmin solid black; /* 3px */
    padding: 1.912vmin; /* 13px; */
    border-radius: 1.471vmin; /* 10px; */
    color: black;
    font-family: 'Arial';
    font-weight: bold;
    font-size: 5vmin;
    text-transform: uppercase;
    cursor: pointer;
}
#gameMenu button:hover  {
    background-color: rgba(238, 154, 77, 0.3);
    outline:0;
}
#gameMenu button:focus  {
    background-color: rgba(238, 154, 77, 0.3);
    outline:0;
}
#gameMenu button:active {
    background-color: rgba(238, 154, 77, 1);
}

#gameMenu input[type="number"] {
    background-color: transparent;
    border: 0.441vmin solid black; /* 3px */
    padding: 0.294vmin; /* 2px; */
    border-radius: 1.471vmin; /* 10px; */
    color: black;
    font-family: 'Arial';
    font-weight: bold;
    font-size: 5vmin; /* 34px */
    text-transform: uppercase;
    text-align: center;
    -moz-appearance:textfield;
}
#gameMenu input[type="number"]:hover {
    background-color: rgba(238, 154, 77, 0.3);
}
#gameMenu input[type="number"]:focus  {
    background-color: rgba(238, 154, 77, 1);
    outline:0;
}
#gameMenu input[type=number]::-webkit-inner-spin-button, 
#gameMenu input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}


/* The switch - the box around the slider */
.switch {
    vertical-align: text-bottom;
    position: relative;
    display: inline-block;
    width: 9vmin;
    height: 5vmin;
}
.switch:focus  {
    background-color: rgba(238, 154, 77, 0.3);
    border-radius: 5vmin;
    outline: 0;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    -webkit-transition: .4s;
    transition: .4s;
    border: 0.45vmin solid black; /* 3px */
    border-radius: 5vmin;
}
.slider:hover {
    background-color: rgba(238, 154, 77, 0.3);
}

.slider:before {
    position: absolute;
    content: "";
    width: 3.5vmin;
    left:  0.3vmin;
    top: 0.3vmin;
    bottom: 0.3vmin;
    background-color: black;
    -webkit-transition: transform .4s;
    transition: transform .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(238, 154, 77, 1);
}

input:checked + .slider:before {
    -webkit-transform: translateX(4vmin);
    -ms-transform: translateX(4vmin);
    transform: translateX(4vmin);
}


.dropbtn {
    min-width: 28vmin;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdownButtonShow {
    background-color: rgba(238, 154, 77, 1);
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(238, 154, 77, 1);
    width: 100%;
    border-radius: 1.471vmin;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 0.5vmin;
    text-decoration: none;
    font-weight: normal;
    display: block;
    border-radius: 1.471vmin;
    cursor: pointer;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.3); /* lightens up background */
    }

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}


#infoOverlay {
    margin: 0 0 -0.4vmin -0.4vmin;
    padding: 0;
    width:90.8vmin;
    height: 76.8vmin;
    border: none;
    display: table;
    overflow: hidden;
    border-radius: 4.2vmin;
    position: absolute;
    background-color: rgba(0,0,0,0.8);
    z-index: 5;
    display: none;

    color: white;
    font-family: 'Arial';
    font-size: 4.6vmin;
    text-align: center;
    transition: 0.4s;
}
#infoOverlay div {
    display: table-cell; 
    vertical-align: middle;
}
#infoOverlay span {
    font-weight: bold;
    font-size: 8.5vmin;
    text-transform: uppercase;
}
#infoOverlay p {
    margin: 4vmin;
}
