.button {
	background-color: #ef476f;
	border-radius: 20px;
	display: inline-block;
	padding: 10px 30px;
	font-weight: bold;
	color: #ffc43d;
	font-size: 16px;
}

.bg-modal {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	position: absolute;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	display: none;
	z-index: 99;
}

.modal-content {
	width: 500px;
	height: 300px;
	background-color: #fff;
	opacity: 1;
	text-align: center;
	padding: 20px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: helv-fad, Arial, Helvetica, sans-serif; 
}

.modal-content a {
	text-decoration: none;
}

.modal-content input {
	width: 50%;
	display: block;
	margin: 15px auto;
	font-family: helv-fad, Arial, Helvetica, sans-serif;
}

.close {
	position: absolute;
	top: 0;
	right: 14px;
	font-size: 42px;
	transform: rotate(45deg);
	cursor: pointer;
}

/* Style the form */
#regForm {
  background-color: #ffffff;
  margin: 0px auto;
  width: 70%;
  min-width: 300px;
}

#regForm h1 {
	color: #000;
}

#regForm h4 {
	color: #000;
	font-size: 24px;
	margin: 0;
	padding: 0 0 20px 0;
	line-height: 100%;
	font-family: neue-fad, helvetica, arial, sans-serif;
}

/* Style the input fields */
.modal-content input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  background-color: #f1f1f1;
  border: none;  
  font-family: helv-fad, Arial, Helvetica, sans-serif;
  /* border: 1px solid #aaaaaa; */
}

/* Mark input boxes that gets an error on validation: */
.modal-content input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

/* Pagination buttons */
.pop_pagination {
	position: absolute;
	bottom: 18px;
	right: 18px;
}


.pop_paginationbtn {
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #000000), color-stop(1, #000000));
	background:-moz-linear-gradient(top, #000000 5%, #000000 100%);
	background:-webkit-linear-gradient(top, #000000 5%, #000000 100%);
	background:-o-linear-gradient(top, #000000 5%, #000000 100%);
	background:-ms-linear-gradient(top, #000000 5%, #000000 100%);
	background:linear-gradient(to bottom, #000000 5%, #000000 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000',GradientType=0);
	background-color:#000000;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #ffffff;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:16px;
	font-weight:bold;
	padding:10px 20px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}
.paginationbtn:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #000000), color-stop(1, #000000));
	background:-moz-linear-gradient(top, #000000 5%, #000000 100%);
	background:-webkit-linear-gradient(top, #000000 5%, #000000 100%);
	background:-o-linear-gradient(top, #000000 5%, #000000 100%);
	background:-ms-linear-gradient(top, #000000 5%, #000000 100%);
	background:linear-gradient(to bottom, #000000 5%, #000000 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000',GradientType=0);
	background-color:#000000;
}
.paginationbtn:active {

}

.radio {
	width: 50%; 
	text-align: left; 
	display: inline-block;
	/* border: 1px solid #000; */
}

.radio input {
	display: inline-block;
	width: auto;
	padding: 7px;
	margin: 0;
}

.radio label{
	display: inline;
	width: auto;
	padding: 7px;
	margin: 0;
}

.checkbox {
	width: 100%; 
	text-align: left; 
	display: inline-block;	
}

.checkbox input {
	display: inline-block;
	width: auto;
	padding: 7px;
	margin: 0;
}

.checkbox label{
	display: inline;
	width: auto;
	padding: 7px;
	margin: 0;
}

.form-radio
{
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     display: inline-block;
     position: relative;
     background-color: #f1f1f1;
     color: #666;
     top: 10px;
     height: 30px;
     width: 30px !important;
     border: 0;
     border-radius: 50px;
     cursor: pointer;     
     margin-right: 7px;
     outline: none;
}
.form-radio:checked::before
{
     position: absolute;
     font: 13px/1 'Open Sans', sans-serif;
     left: 11px;
     top: 7px;
     content: '\02143';
     transform: rotate(40deg);
}
.form-radio:hover
{
     background-color: #f7f7f7;
}
.form-radio:checked
{
     background-color: #f1f1f1;
}