@charset "utf-8";
/* CSS Document */

/* MEDIA */
@media screen and (max-width: 1000px) {
    input[type=text], select {
        font-size: 24px; 
    }
}
@media screen and (max-width: 600px) {
    input[type=text], select {
        font-size: 16px; 
    }
}
@media screen and (max-width: 400px) {
    input[type=text], select {
        font-size: 12px; 
    }
}

/* Main */

body {
	max-width: 1200px;
	margin: auto;
	background-color: #f2f2f2;
}

h1 {
	font-family: "Poppins", Helvetica, Arial, sans-serif;
	font-size: 20px;
	font-weight: 300;
	color: #666666;
	text-transform: uppercase;
}
h2 {
	font-family: "Poppins", Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: #666666;
}

/* INPUT */

input[type=text], select {
  width: 100%;
  height: 100px;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 30px; 
}

/* CLASS */

.textBlock {
	padding: 20px;
}

/* CLASS BUTTON */
.btn-play
{
width: 100%;
  height: 100px;
  font-size: 30px;
  background-color: #77be34;
  color: white;
  border: none;
  cursor: pointer; 
}

.btn-play[disabled]
{
    border: none;
	background-color: #969696;
}
.btn-play:hover[disabled]
{
    background-color: #969696;
}

.btn-play > .glyphicon {
    font-size: 50px;
}
.btn-play:not([disabled])
{
    background-color: #77be34;
    color: white;
    border: none;
}
.btn-play:hover:not([disabled])
{
    background-color: #5ea021;
    color: white;
    border: none;
}

/* CLASS CHECKBOX */
/* Checkbox The container */
.cb-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.cb-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.cb-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a green background */
.cb-container input:checked ~ .checkmark {
  background-color: #77be34;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cb-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cb-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ID */
#wrapper {
	border-radius: 8px;
	margin-top: 50px;
	padding-top: 20px;
	background-color: #ffffff;
}

#gameInput {
	/* */
}

#inputname {
  border-radius: 5px;
  padding: 20px;
}
#exampleText {
	padding: 24px;
	
}
#noBrowser {
  border-radius: 5px;
  padding: 20px;
}

#errorhandler{
margin: 10px 0px;
padding:12px;
color: #9F6000;
background-color: #FEEFB3;
}

#warningbrowser{
    margin: 10px 0px;
    padding:12px;
    color: #9F6000;
    background-color: #FEEFB3;
}

#androidMessage{
    margin: 10px 0px;
    padding:12px;

}
#ioMessage{
    margin: 10px 0px;
    padding:12px;

}
