@charset "UTF-8";
/* Forms */

/* Layout for some forms */
.tableleft, .tableright {
  float:left;
  display:inline;
  width:48%;
  margin:0 4% 0 0;
}
.tableright {
  margin-right:0;
}
.tablefull {
  float:none;
  display:block;
  width:100%;
  margin:0;
}
.tableleft p, .tableright p, .tablefull p {
  margin:0 0 8px 0;
}
.cleardivspace {
  clear:both;
  height:10px;
}

@media screen and (max-width: 900px) { 

  .tableleft, .tableright {
    float:none;
    display:block;
    width:100%;
    margin:0;
  }

}

input, textarea, select, option {
	border:1px solid #86B632;
	border-radius:3px;
}
/*input, textarea {
	padding:4px 3px;
}
select {
	padding:3px 3px;
}
option {
	font-size:1.6rem !important;
}*/


/* Fancy radio buttons and checkboxes - https://www.w3schools.com/howto/howto_css_custom_checkbox.asp */
/* Radio buttons */
/* The container */
.rb_container {
  display: block;
  position: relative;
  padding-top:3px;
  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;
  width:auto;
}
/* Hide the browser's default radio button */
.rb_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom radio button */
.rb_container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border:3px solid #85A1CC;
    border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.rb_container:hover input ~ .checkmark {
    background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.rb_container input:checked ~ .checkmark {
    background-color: #85A1CC;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.rb_container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.rb_container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the indicator (dot/circle) */
.rb_container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/* Checkbox */
/* Customize the label (the container) */
.cb_container {
  display: block;
  position: relative;
  height:38px;
  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 */
.cb_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* Create a custom checkbox */
.cb_container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border:3px solid #0ac1c6;
  border-color:#0ac1c6;
  border:3px solid #3cc546;
  border-color:#3cc546;
}
/* On mouse-over, add a grey background color */
.cb_container:hover input ~ .checkmark {
  background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.cb_container input:checked ~ .checkmark {
  background-color: #3cc546;
}
/* Create the checkmark/indicator (hidden when not checked) */
.cb_container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.cb_container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.cb_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);
} 


/* End */