
/***************************************
//
// CHECKBOX
//
/*//****************************************/
/* Customize the label (the container) */
.newedge-default-form-style .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 */
.newedge-default-form-style .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.newedge-default-form-style .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.newedge-default-form-style.checkbox  .container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.newedge-default-form-style.checkbox  .container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.newedge-default-form-style.checkbox  .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.newedge-default-form-style.checkbox  .container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.newedge-default-form-style.checkbox  .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);
}
/*Radio button*/
/* Customize the label (the container) */
.checkbox .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 radio button */
.checkbox .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

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

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

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

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

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


/***************************************
//
// RADIO
//
/*//****************************************/



/***************************************
//
// form
//
/*//****************************************/
.newedge-default-form-style{
	padding: 10px 20px;
	background: #f4f7f8;
	margin: 10px auto;
	padding: 20px;
	background: #f4f7f8;
	border-radius: 8px;
	font-family: inherit;
}
.newedge-default-form-style fieldset{
	border: none;
}
.newedge-default-form-style legend {
	font-size: 1.4em;
	margin-bottom: 10px;
}
.newedge-default-form-style label {
	display: block;
	margin-bottom: 8px;
}
.newedge-default-form-style input[type="text"],
.newedge-default-form-style input[type="date"],
.newedge-default-form-style input[type="datetime"],
.newedge-default-form-style input[type="email"],
.newedge-default-form-style input[type="number"],
.newedge-default-form-style input[type="search"],
.newedge-default-form-style input[type="time"],
.newedge-default-form-style input[type="url"],
.newedge-default-form-style textarea,
.newedge-default-form-style select {
	font-family: inherit;
	background: rgba(255,255,255,.1);
	border: none;
	border-radius: 4px;
	font-size: 15px;
	margin: 0;
	outline: 0;
	padding: 10px;
	width: 100%;
	box-sizing: border-box; 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	background-color: #e8eeef;
	color:#8a97a0;
	-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
	box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
	margin-bottom: 30px;
}
.newedge-default-form-style input[type="text"]:focus,
.newedge-default-form-style input[type="date"]:focus,
.newedge-default-form-style input[type="datetime"]:focus,
.newedge-default-form-style input[type="email"]:focus,
.newedge-default-form-style input[type="number"]:focus,
.newedge-default-form-style input[type="search"]:focus,
.newedge-default-form-style input[type="time"]:focus,
.newedge-default-form-style input[type="url"]:focus,
.newedge-default-form-style textarea:focus,
.newedge-default-form-style select:focus{
	background: #d2d9dd;
}
.newedge-default-form-style select{
	-webkit-appearance: menulist-button;
	height:43px;
}
.newedge-default-form-style .number {
	background: #929292;
	color: #fff;
	height: 30px;
	width: 30px;
	display: inline-block;
	font-size: 0.8em;
	margin-right: 4px;
	line-height: 30px;
	text-align: center;
	text-shadow: 0 1px 0 rgba(255,255,255,0.2);
	border-radius: 15px 15px 15px 0px;
}

.newedge-default-form-style input[type="submit"],
.newedge-default-form-style input[type="button"]
{
	position: relative;
	display: block;
	padding: 19px 39px 18px 39px;
	color: #FFF;
	margin: 0 auto;
	background: #929292;
	font-size: 18px;
	text-align: center;
	font-style: normal;
	width: 100%;
	border: 1px solid #929292;
	border-width: 1px 1px 3px;
	margin-bottom: 10px;
}
.newedge-default-form-style input[type="submit"]:hover,
.newedge-default-form-style input[type="button"]:hover
{
	background: #109177;
}

