
.inputstyle{
    float: left;
    clear: both;
}

.MyGameBoy {
 width: 80%;   
 padding-top: 15px;
 padding-bottom: 15px; 
 margin: 0px 0px 0px 15px;
} 

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffff00;
  opacity: 1; /* Firefox */
}

input[type=text], input[type=password], input[type=email] {
  padding:10px;
  margin:10px 0px; 
  width: 90%;
  border: 0;
  border-radius: 10px;
  line-height: 28px;
  background-color: #0040ff;
  color: white;
  box-shadow: 5px 10px #ffa64d;
  font-size:24px;
}

 input[type=submit] {
        padding: 12px;
        background: #009900;
        color: #fff;
        margin: 10px; 
        font-size: 20px;
        border: 0 none;
        cursor: pointer;
        -webkit-border-radius: 5px;
        border-radius: 5px;
      }
      
input[type=reset] {
        padding: 12px;
        background: #ffff00;
        color: #000;
        margin: 10px; 
        font-size:20px;
        border: 0 none;
        cursor: pointer;
        -webkit-border-radius: 5px;
        border-radius: 5px;
      }      

#ZipCode {
  width: 45%;
}

#StartOver {
 background: #c23232;
 color: #FFF;
}

#StartOver:hover {
 background: #fc0303;
 color: #000; 
}
   
#Lambo {
 background: #009900;
        color: #fff;
}

#Lambo:hover {
 background: #4dff4d;
    color: #000; 
}

input[type=submit]:hover {
    background: #4dff4d;
    color: #000;
}

input[type=reset]:hover {
    background: #ffd480;
    color: #000;
}

select {
  width: 85%;
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;
  color: darkred;
  background-color: papayawhip;
  border-radius: 5px;
  box-shadow: 4px 6px violet;
} 

.grecaptcha-badge { 
  visibility: hidden;
  opacity: 0;
}


/* RadioButton CSS */
/* The container for radio buttons */
.radiotainer {
  display: inline;
  position: relative;
  padding-left: 35px;
  margin: 20px;
  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 radio button */
.radiotainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmarkYES {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #26c718;
  border-radius: 50%;
}

.checkmarkNO {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #bf2222;
  border-radius: 50%;
}

/* On mouse-over, change background color */
.radiotainer:hover input ~ .checkmarkYES {
  background-color: #b833e8;
}

/* On mouse-over, change background color */
.radiotainer:hover input ~ .checkmarkNO {
  background-color: #b833e8;
}

/* When the radio button is checked, change background */
.radiotainer input:checked ~ .checkmarkYES {
  background-color: #27fa14;
}

/* When the radio button is checked, change background */
.radiotainer input:checked ~ .checkmarkNO {
  background-color: #fa2f2f;
}


/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmarkYES:after {
  content: "";
  position: absolute;
  display: none;
  color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmarkNO:after {
  content: "";
  position: absolute;
  display: none;
  color: #fff;
}

/* Show the indicator (dot/circle) when checked */
.radiotainer input:checked ~ .checkmarkYES:after {
  display: block;
}

/* Show the indicator (dot/circle) when checked */
.radiotainer input:checked ~ .checkmarkNO:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radiotainer .checkmarkYES:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: black;
}

.radiotainer .checkmarkNO:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: black;
}

/* Contact Form CSS */
.contactFrm h4 {
    font-size: 1em;
    margin-bottom: 0.5em;
    font-weight: 300;
    letter-spacing: 5px;
}

.contactFrm textarea {
    resize: none;
    width: 85%;
    background: #05f0f0;
    color: #000;
    outline: none;
    overflow: auto;
    margin-top: 10px;
    padding: 8px;
    font-size: 22px;
    border: 3px solid #fa0cf2;
    min-height: 10em;
    -webkit-appearance: none;
}

/* Table Formatting CSS */

.MoneyReside table { 
	width: 100%; 
	border-collapse: collapse; 
        border: 5px solid #0000cc;
	}

/* Zebra striping */
.MoneyReside tr:nth-child(odd) {
  background-color: #ffbf80;
}

/* Zebra striping */
.MoneyReside tr:nth-child(even) {
  background-color: #80ffff;
}

.MoneyReside hr { 
	width: 45%; 
	border-top: 2px dashed black;
	}

.MoneyReside th { 
	background: #ff80df; 
	color: black; 
	font-weight: bold; 
	}

.MoneyReside td, th { 
	padding: 10px; 
	border: 3px solid #0000cc; 
	text-align: center; 
	font-size: 16px;
	}
        
#BigBaller { 
	background: #85e085; 
        color: black; 
}

#MoneyTime {
    vertical-align: middle;
}

.Yoda {
    max-width: 100%;
}

.radioQE {
    width: 2em;
    height: 2em;
}