@import url("https://fonts.googleapis.com/css?family=Nunito:400,600|Work+Sans:400,600|Roboto:400,600|Roboto+Slab:400,600|Raleway:400,600|Lato:400,600|Oswald:400,600|Dosis:400,600");
:root {
  --main-color: #42424F;
  --hover-color: #23527C;
  --main-text-color: rgb(64, 64, 78);
  --main-bg: rgb(235, 235, 235);
  --main-font-family: Lato, sans-serif;
}

:root {
  --highlight-base-color: var(--main-color);
  --header-font-family: var(--main-font-family);
  --header-text-color: var(--main-text-color);
  --feature-color: var(--main-color);
  --button-color: var(--main-color);
}

form {
  text-align: left;
}
@media screen and (max-width: 992px) {
  form {
    max-width: 100%;
  }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

label, .label {
  display: block;
  max-width: 100%;
  margin-bottom: 1em;
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
}
label:after, .label:after {
  font-style: italic;
  font-size: 0.9em;
  font-weight: 400;
  text-transform: none;
  content: " - Optional";
}
label.noOptional:after, .label.noOptional:after {
  display: none;
}
label.noUpper, .label.noUpper {
  text-transform: none;
}

.form-group-container {
  margin-bottom: 0;
}
.form-group-container.hide-optional label:after, .form-group-container.hide-optional .label:after {
  display: none;
}

.form-group {
  margin-bottom: 2em;
}

.input-list .form-control {
  margin-bottom: 1em;
}
.input-list .form-control.with-delete {
  display: inline-block;
  width: calc(100% - 30px);
}
.input-list .form-control:last-child {
  margin-bottom: 0;
}
.input-list .tuple-form-outer label {
  margin-bottom: 0;
}
.input-list label > input {
  margin-top: 1em;
}
.input-list label:after {
  display: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fff inset;
}

select.form-control,
input.form-control {
  border-radius: 2px;
  box-shadow: none;
  height: 2.8em;
  font-weight: 400;
}
select.form-control.flex-item,
input.form-control.flex-item {
  width: auto;
  flex-grow: 1;
}

select.form-control {
  height: auto;
}

input.is-invalid {
  border-color: rgba(220, 153, 69, 0.8);
}
input.is-invalid:focus {
  border-color: rgba(220, 153, 69, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

input.is-valid {
  border-color: #28a745;
}
input.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.form-control {
  background-color: transparent;
  font-family: "Nunito", Helvetica, Arial, sans-serif;
  font-size: 1em;
  border: 2px solid #eeeeee;
  box-shadow: none;
  line-height: 1.42857143;
  color: #555555;
  background-image: none;
  display: block;
  width: 100%;
}

.form-group.pl-0 {
  padding-left: 0;
}
.form-group .input-group-addon {
  border: 1px solid #eeeeee;
  background-color: #ddd;
}
.form-group .input-group-addon:last-child {
  border-left: 1px solid #eeeeee;
}
.form-group.required .label:after, .form-group.required label:after {
  display: none;
}
.form-group .bg-danger {
  background-color: #f2dede;
}
.form-group.disabled {
  pointer-events: none;
}

.form-control:focus {
  background-color: #fff;
  border: 2px solid #eeeeee;
  box-shadow: none;
  outline: 0;
  transition: background-color 0.4s;
}

.text-input, .date-input, .number-input, .select-input {
  background-color: #eeeeee;
  border: 2px solid #eeeeee;
}
.text-input.half-width, .date-input.half-width, .number-input.half-width, .select-input.half-width {
  display: inline-block;
  width: 48%;
  margin-right: 1%;
}

.select-input {
  -webkit-appearance: none;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADCSURBVGhD7c9BCsJAEETRAXHpOTyAXsaV59ETuHDhGV2L2kVoGAbHSRSbifwHBSGQTlUCAAAAACDeyrIcHr+iG7oV6mi5W66WnV58SN/qhm4d9CLC2vLIcrPsLVPpG32b39LtnysHKFNHvCqvhAyQk6X8+dgRtfK6GWZhuVjKEq0RtfK6pZuhpo7oqrwbO6LL8q41ouvy7t2I7su72ogyXZZ3rRFdl3e1EbMo71T0bPHyep5N+dzWshkeAQAAgP+S0hPvCnoLukd+/wAAAABJRU5ErkJggg==");
  background-position: calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  padding-right: 48px;
}

.text-input-lg {
  background-color: #eeeeee;
  border: 2px solid #eeeeee;
  font-size: 120%;
  padding: 24px;
}
.text-input-lg + .input-group-addon {
  padding: 6px 20px;
}

.checkbox-input {
  display: inline-block;
  border: 0;
  position: relative;
  height: auto;
  width: auto;
  padding: 0 40px 30px 0;
}
.checkbox-input span > p {
  margin-top: 0;
}
.checkbox-input.cols-2 {
  min-width: 50%;
}
.checkbox-input label {
  padding: 2px 0 3px 38px;
  margin: 0;
  font-weight: normal;
}
.checkbox-input input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.checkbox-input .fake-checkbox {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 22px;
  width: 22px;
  background-color: #eeeeee;
  border: 5px solid #eeeeee;
  outline: 1px solid #eeeeee;
}
.checkbox-input input:focus + .fake-checkbox,
.checkbox-input input:hover + .fake-checkbox {
  outline: 1px solid #23527C;
  outline: 1px solid var(--hover-color);
}
.checkbox-input input:checked + .fake-checkbox {
  background-color: #42424F;
  background-color: var(--main-color);
}
.checkbox-input input:checked + .fake-checkbox + span {
  color: #42424F;
  color: var(--feature-color);
}

.checkbox-input label:after,
.switch-input label:after {
  display: none;
}

.switch-input {
  border: 0;
  padding: 0;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.switch-input input[type=checkbox] {
  display: none;
}
.switch-input input[type=checkbox]:checked + .switch-inner {
  background: #42424F;
  background: var(--main-color);
}
.switch-input input[type=checkbox]:checked + .switch-inner.on-danger {
  background: #d9534f;
}
.switch-input input[type=checkbox]:checked + .switch-inner.on-warning {
  background: #f0ad4e;
}
.switch-input input[type=checkbox]:checked + .switch-inner.on-success {
  background: rgb(50, 197, 95);
}
.switch-input input[type=checkbox]:checked + .switch-inner .switch-on-text {
  transform: translateY(0);
  opacity: 1;
}
.switch-input input[type=checkbox]:checked + .switch-inner .switch-off-text {
  transform: translateY(0);
  opacity: 0;
}
.switch-input input[type=checkbox]:checked + .switch-inner.off-unset {
  border: 2px solid transparent;
  color: #fff;
}
.switch-input input[type=checkbox]:checked + .switch-inner.off-unset:after {
  background: #fff;
}
.switch-input input[type=checkbox]:checked + .switch-inner:after {
  left: 100%;
  margin-left: -20px;
}
.switch-input input[type=checkbox]:checked + .switch-inner:active:after {
  margin-left: -24px;
}
.switch-input input[type=checkbox][disabled] + .switch-inner {
  background: #EEE;
  cursor: not-allowed;
}
.switch-input input[type=checkbox][disabled] + .switch-inner:after {
  background-color: #bbbbbb;
}
.switch-input .switch-inner {
  display: block;
  position: relative;
  min-width: 60px;
  height: 28px;
  border: 2px solid transparent;
  padding: 0 12px;
  background: #bbbbbb;
  color: #fff;
  line-height: 24px;
  font-size: 12px;
  border-radius: 20px;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  transition: all 0.3s;
  cursor: pointer;
  box-sizing: border-box;
}
.switch-input .switch-inner.off-danger {
  background: #d9534f;
}
.switch-input .switch-inner.off-warning {
  background: #f0ad4e;
}
.switch-input .switch-inner.off-success {
  background: rgb(50, 197, 95);
}
.switch-input .switch-inner.off-unset {
  background: transparent;
  border: 2px solid #42424F;
  color: #42424F;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  height: 28px;
}
.switch-input .switch-inner.off-unset:after {
  background: #42424F;
  background: var(--main-color);
}
.switch-input .switch-inner.fixed-width {
  width: 140px;
}
.switch-input .switch-inner .switch-on-text,
.switch-input .switch-inner .switch-off-text {
  display: block;
  text-align: center;
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.switch-input .switch-inner .switch-on-text {
  padding-right: 13px;
  opacity: 0;
}
.switch-input .switch-inner .switch-off-text {
  padding-left: 13px;
  opacity: 1;
}
.switch-input .switch-inner:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.switch-input .switch-inner:active:after {
  width: 20px;
}

.tuple-form-outer {
  display: flex;
}

.tuple-form-value {
  flex-shrink: 0;
  padding-right: 4px;
}

.form-helper {
  background: #222222;
  color: #fff;
  padding-left: 5px;
}
.form-helper.is-valid {
  background: #28a745;
}
.text-input + .form-helper.is-valid {
  opacity: 0;
}
.text-input:focus + .form-helper.is-valid {
  display: block;
  opacity: 1;
}
.form-helper.is-valid a {
  color: #fff;
  display: inline;
}
.form-helper.is-invalid {
  background: rgba(220, 153, 69, 0.8);
}
.form-helper.default {
  background: #fff;
  color: #222222;
}

.datepicker-dropdown {
  position: absolute;
  background: white;
  border: solid 2px #eeeeee;
}

.password-strength-meter {
  text-align: left;
}

.password-strength-meter-label {
  font-size: 14px;
  text-transform: none;
}

.password-strength-meter-progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 250px;
  height: 8px;
}
.password-strength-meter-progress::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 3px;
}
.password-strength-meter-progress::-webkit-progress-value, .password-strength-meter-progress::-moz-progress-bar {
  border-radius: 2px;
  background-size: 35px 20px, 100% 100%, 100% 100%;
}

.strength-1::-webkit-progress-value {
  background-color: #F25F5C;
}

.strength-2::-webkit-progress-value {
  background-color: #FFE066;
}

.strength-3::-webkit-progress-value {
  background-color: #247BA0;
}

.strength-4::-webkit-progress-value {
  background-color: #70C1B3;
}

.strength-1::-moz-progress-bar {
  background-color: #F25F5C;
}

.strength-2::-moz-progress-bar {
  background-color: #FFE066;
}

.strength-3::-moz-progress-bar {
  background-color: #247BA0;
}

.strength-4::-moz-progress-bar {
  background-color: #70C1B3;
}

.password-strength-meter-progress:indeterminate::-moz-progress-bar {
  width: 0;
}

.FieldComponent .FieldComponent-file-thumb {
  border-radius: 4px;
  height: 115px;
  min-height: 115px;
  overflow: hidden;
  position: relative;
  width: 160px;
}
.FieldComponent .FieldComponent-file-thumb-image {
  height: 100%;
  text-align: center;
  width: 100%;
}
.FieldComponent .FieldComponent-file-thumb-image img {
  max-width: none;
  max-height: 100%;
}