html,
body {
	background: #ffffff;
}

.container {
	max-width: 600px;
}

.welcome,
.meta {
	text-align: center;
}


.sweapstakes header{
}

.header {
	text-align: center;
	/*background: #fff;*/
	padding: 30px 0 0 0;
	/*border-bottom: 2px solid #eaecea;*/
}
/*
.header .logo {
	width: 35%;
	max-width: 200px;
	height: auto;
	margin-bottom: 20px;
}
*/
.header .hero {
	max-width: 100%;
	height: auto;
}

.header .img {
    width: 244px;
    height: auto;
    padding: 30px 0 !important;
    vertical-align: middle;
    display: inline-block;
} 

	.event_header { 
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
		display: none;
		
		}

/*.header {
	text-align: center;
	background: #fff;
	padding: 20px 0 0 0;
	border-bottom: 2px solid #eaecea;
}

.header .logo {
	width: 35%;
	max-width: 140px;
	height: auto;
	margin-bottom: 20px;
}

.header .hero {
	max-width: 100%;
	height: auto;
}*/

.radios{
}

label span {
	display: none;
}

.form-control {
	font-size: 16px;
}

input[type="text"] {
	padding: 12px;
}

.flexgroup {
	display: flex;
	margin: 20px 0;
}

.flexgroup label {
	width: 100px;
}

.form-control::placeholder,
.form-control::-webkit-input-placeholder,
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-ms-input-placeholder {
	color: #000000 !important;
	font-size: inherit;
	opacity: 1;
}

.form-group {
	margin-bottom: 40px;
}

.inputfield {
	clear: both;
}

span.required {
	float: left;
	color: #005e20;
	font-size: 30px;
	width: 25px;
	margin-top: 0px;

}

.checkbox {
	margin: 25px;
}

.checkbox input {
	margin-top: 4px;
}

span.input-group {
	float: right;
	width: calc(100% - 50px);
	margin-right: 25px;
}

.small {
	font-size: 12px;
}

.help-block {
	clear: both;
	margin-left: 25px;
	font-size: 12px;
}

.help-block p {
	margin-bottom: 5px;
	font-size: 12px;
}

.btn {
	width: calc(100% - 50px);
	background: #02212c !important;
	color: #fff !important;
	letter-spacing: 2px !important;
	margin-left: 25px !important;
}


.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

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

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
  background-color: #b0b7bb;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background-color: #b0b7bb;
}

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

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

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