label {
	display: block;
	margin: 0 0 .4em;
	font-weight: 500;
}

input[type=text] {
	width: 100%;
	padding: 10px 10px;
	margin-bottom: 24px;
	border: 2px solid #E8E9EB;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: white;
}
input[type=number] {
	padding: 10px 10px;
	margin-bottom: 24px;
	border: 2px solid #E8E9EB;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: white;
}
input[type=email] {
	width: 100%;
	padding: 10px 10px;
	margin-bottom: 24px;
	border: 2px solid #E8E9EB;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: white;
}
input[type=password] {
	width: 100%;
	padding: 10px 10px;
	margin-bottom: 24px;
	border: 2px solid #E8E9EB;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: white;
}
input[type=date] {
	width: 100%;
	padding: 10px 10px;
	margin-bottom: 24px;
	border: 2px solid #E8E9EB;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: white;
}
textarea {
	width: 100%;
	padding: 10px 10px;

	border: 2px solid #E8E9EB;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: white;
}
select {
	width: 100%;
	padding: 10px 10px;
	border: 2px solid #E8E9EB;
	border: none;
	border-radius: 4px;
	background-color: #F6F6F6;
	margin-bottom: 24px;
	text-align: center;
	font-weight: 800;
}
input[type=checkbox]{ 
	flex: none; 
}
.form_button {
	text-align: center;
	height: 40px;
	line-height: 37px;
	margin-top: 20px;
	border-radius: 4px;
	display: block;
	color: #fff;
	text-decoration: none;
	padding-left: 15px;
	padding-right: 15px;
	font-size: 16px;
	cursor: pointer;
	background: linear-gradient(#90cf36 0, #629815 100%);
	font-weight: 500;
	width:100%;
}
.inputGroup {
    background-color: #F6F6F6;
    display: block;
    position: relative;
	width: 100%;
	border-radius: 4px;
	box-sizing: border-box;

    label {
      padding: 8px 40px;
      width: 100%;
      display: block;
      text-align: left;
      cursor: pointer;
      z-index: 2;
      overflow: hidden;
	  font-weight: normal;

      before {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale3d(1, 1, 1);
        transition: all 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
        opacity: 0;
        z-index: -1;
      }
    }

    input:checked ~ label {

      before {
        transform: translate(-50%, -50%) scale3d(56, 56, 1);
        opacity: 1;
      }

      after {
        background-color: #FFF;
        border-color: #FFF;
      }
    }

    input {
      width: 15px;
      height: 15px;
      order: 1;
      z-index: 2;
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;

    }
}
.range-wrap {
	position: relative;
	margin: 0 auto 3rem;
}
.range {
	width: 100%;
	-webkit-appearance: none;  /* Override default CSS styles */
	appearance: none;
	height:15px;
	background-color: #ddd;	
}
.range::-webkit-slider-thumb {
	-webkit-appearance: none; 
	appearance: none;
	width: 25px;
	height: 25px; 
	background: #E4E3E3;
	border-radius: 25px;
	cursor: pointer;
	border: 1px solid #A9A9A9;
}
.range::-moz-range-thumb {
  width: 25px; 
  height: 25px; 
  border-radius: 25px;
  background: #E4E3E3; 
  cursor: pointer;
}
.bubble {
	background: #6CA74F;
	color: white;
	padding: 4px 10px;
	position: absolute;
	left: 50%;
	transform: translateX(-40%);
	margin-top:30px;
	border-radius: 4px;
}
.bubble::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 2px;
	background: #6CA74F;
	top: -1px;
	left: 50%;
}