/* FORM */
option {
  font-family: inherit;
  font-size: 1.0em;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

input {
  font-family: inherit;
  font-size: 1.0em;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  input {
    margin-top: 20px;
  }
}

textarea {
  font-family: inherit;
  font-size: 1.0em;
  width: 100%;
  height: 166px;
  max-width: 100%;
  padding: 8px;
  /* margin-bottom: 12px; */
  box-sizing: border-box;
}

.custom-select {
  position: relative;
  font-size: 1.0em;
  font-family: "Roboto Mono";
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #ffffff;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #000;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  color: #63ff4b;
  background: repeating-linear-gradient(90deg, #aaa, #000000 4px, #000000 4px, #aaa 4px);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}



.option-group {
  margin-bottom: 18px;
}
.option-group strong {
  display: block;
  margin-bottom: 6px;
}
.option-group label {
  display: block;
  font-weight: normal;
}






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

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

/* When the radio button is checked, add a blue background */
.container 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 */
.container input:checked ~ .checkmark:after {
  display: block;
}

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

.success-message {
  background: #d4ffd4;
  padding: 10px;
  border: 1px solid #6bb96b;
  margin-bottom: 20px;
  display: none;
}