.form-group {
	padding: 1rem;
	padding-bottom: 0.75rem;
	color: black;
}

label {
	display: block;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
  line-height: 1.2;
}

textarea,
input.text,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="button"],
input[type="submit"],
.input-checkbox {
-webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
border-radius: 0;
}


:focus {
    outline: none !important;
}






/* The container */
.containner {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-left: 20px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.containner input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

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

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

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

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

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

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








input[type="text"], input[type="email"], input[type="tel"] {
	display: inline-block;
	border-radius: 4px;
 	border: 1px solid #ccc;
	padding: 12px 20px;
	width: 100%;
	height: 2.5rem;
	line-height: 2.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

input[type="radio"]{
  display:inline-block;
	margin: 0 20px;
	width: auto;
	height: auto;
}

input[type="submit"]{
	margin: 20px 0;
}

textarea {
	border-radius: 4px;
	border: 1px solid #ccc;
	padding: 12px 20px;
	width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

::placeholder {
	color: #cecece;
}

.hide {
	display: none;
}

.warning {
	background-color: #ffcccb;
	border: 1px solid red;
	margin-bottom: 10px;
	padding: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}