legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: var(--spacer);
  font-size: 1.5rem;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input:is([type="radio"],[type="checkbox"]) {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select:is([multiple],[size]) {
  height: auto;
}
input:is([type="file"],[type="radio"],[type="checkbox"]):focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 1rem;
  line-height: 1.61803399;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 1.61803399;
  padding: 6px 12px;
  font-size: 1rem;
  line-height: 1.61803399;
  color: #555555;
  background-color: var(--body-bg);
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 1rem;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input:is([type="date"], [type="time"], [type="datetime-local"], [type="month"]).form-control {
    line-height: 1.61803399;
  }
  input:is([type="date"], [type="time"], [type="datetime-local"], [type="month"]).input-sm,
  .input-group-sm input:is([type="date"], [type="time"], [type="datetime-local"], [type="month"]) {
    line-height: 1.25;
  }
  input:is([type="date"], [type="time"], [type="datetime-local"], [type="month"]).input-lg,
  .input-group-lg input:is([type="date"], [type="time"], [type="datetime-local"], [type="month"]) {
    line-height: 2;
  }
}
.form-group {
  margin-bottom: var(--spacer);
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: var(--spacer);
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
:is(.radio, .radio-inline) input[type="radio"],
:is(.checkbox, .checkbox-inline) input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input:is([type="radio"],[type="checkbox"])[disabled],
input:is([type="radio"],[type="checkbox"]).disabled,
fieldset[disabled] input:is([type="radio"],[type="checkbox"]) {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: calc(var(--spacer) + 1rem);
}
.form-control-static:is(.input-lg,.input-sm) {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 1.25;
  padding: 5px 10px;
  font-size: 0.875rem;
  line-height: 1.25;
  border-radius: 0.25rem;
}
select.input-sm {
  height: 1.25;
  line-height: 1.25;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 1.25;
  padding: 5px 10px;
  font-size: 0.875rem;
  line-height: 1.25;
  border-radius: 0.25rem;
}
.form-group-sm select.form-control {
  height: 1.25;
  line-height: 1.25;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 1.25;
  min-height: calc(var(--spacer) + 0.875rem);
  padding: 6px 10px;
  font-size: 0.875rem;
  line-height: 1.25;
}
.input-lg {
  height: 2;
  padding: 10px 16px;
  font-size: 1.25rem;
  line-height: 2;
  border-radius: 1rem;
}
select.input-lg {
  height: 2;
  line-height: 2;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 2;
  padding: 10px 16px;
  font-size: 1.25rem;
  line-height: 2;
  border-radius: 1rem;
}
.form-group-lg select.form-control {
  height: 2;
  line-height: 2;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 2;
  min-height: calc(var(--spacer) + 1.25rem);
  padding: 11px 16px;
  font-size: 1.25rem;
  line-height: 2;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 2.02254249;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 1.61803399;
  height: 1.61803399;
  line-height: 1.61803399;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 2;
  height: 2;
  line-height: 2;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 1.25;
  height: 1.25;
  line-height: 1.25;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: calc(var(--spacer) + 5px);
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 48em) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: calc(var(--spacer) + (6px + 1));
}
.form-horizontal .form-group {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--grid-gutter) / 2);
  margin-right: calc(var(--grid-gutter) / 2);
}
@media (min-width: 48em) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 0rem;
}
@media (min-width: 48em) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 1.25rem;
  }
}
@media (min-width: 48em) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 0.875rem;
  }
}
/*
.validate_form {
	.form-control {
		border-radius: 0;
	}
}
*/
.help-block {
  display: block;
  margin-bottom: 10px;
  margin-top: 5px;
}
.form-group {
  position: relative;
}
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
  margin-top: 2px;
}
.form-group.has-error label,
.form-group.has-error label.control-label {
  color: #a94442 !important;
}
.form-group.has-error input:focus {
  box-shadow: none;
}
textarea.form-control {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
}
.nice-form {
  /*:is(.error,select,textarea),
	input:not([type="checkbox"],[type="radio"]),
	div:not(.switch) {
		~ label {
			bottom: 0;
			color: var(--label-color);
			font-size: 16px;
			font-weight: 400;
			left: 0;
			right: 0;
			pointer-events: none;
			position: absolute;
			display: block;
			top: 24px;
			width: 100%;
			overflow: hidden;
			white-space: nowrap;
			text-align: left;
			margin: 0;
			transition-duration: .2s;
			transition-timing-function: cubic-bezier(.4,0,.2,1);

			&:after {
				background-color: var(--main-color);
				bottom: @padb;
				content: '';
				height: 2px;
				left: 45%;
				position: absolute;
				transition-duration: .2s;
				transition-timing-function: cubic-bezier(.4,0,.2,1);
				-webkit-transition-property: left, visibility, width; // Safari
				transition-property: left, visibility, width;
				visibility: hidden;
				width: 10px;
			}

			&:not(.is_empty) {
				color: var(--main-color);
				font-size: 12px;
				top: 4px;
				visibility: visible;
			}
		}
	}*/
}
.nice-form .form-group.has-error :is(label,label.control-label) {
  color: #a94442 !important;
}
.nice-form .form-group.has-error :is(label,label.control-label):after {
  left: 0;
  visibility: visible;
  width: 100%;
  background-color: #a94442;
  bottom: 40px;
}
.nice-form .form-group.has-error .error {
  font-size: 80%;
}
.nice-form .form-group.has-error input:focus {
  box-shadow: none;
}
.nice-form .has-feedback label ~ .form-control-feedback {
  top: 20px;
}
.nice-form .form-group {
  position: relative;
  font-size: 16px;
  margin: 0;
  padding: 20px 0 8px;
}
.nice-form .form-control {
  border-radius: 0;
}
.nice-form div:not(.switch,.checkbox,.radio,.not-nice) label:first-child {
  bottom: 0;
  color: var(--label-color);
  font-size: 16px;
  font-weight: 400;
  left: 0;
  right: 0;
  pointer-events: none;
  position: absolute;
  display: block;
  top: 24px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  margin: 0;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.nice-form div:not(.switch,.checkbox,.radio,.not-nice) label:first-child:after {
  background-color: var(--main-color);
  bottom: 8px;
  content: '';
  height: 2px;
  left: 45%;
  position: absolute;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-property: left, visibility, width;
  transition-property: left, visibility, width;
  visibility: hidden;
  width: 10px;
}
.nice-form div:not(.switch,.checkbox,.radio,.not-nice) label:first-child:not(.is_empty) {
  color: var(--main-color);
  font-size: 12px;
  top: 4px;
  visibility: visible;
}
.nice-form div:not(.switch,.checkbox,.radio,.not-nice):focus-within label {
  color: var(--main-color);
  font-size: 12px;
  top: 4px;
  visibility: visible;
}
.nice-form div:not(.switch,.checkbox,.radio,.not-nice):focus-within label:after {
  left: 0;
  visibility: visible;
  width: 100%;
}
.nice-form input:is([type="text"],[type="search"],[type="email"],[type="tel"],[type="number"],[type="password"]),
.nice-form select,
.nice-form textarea {
  border: none;
  border-bottom: 1px solid var(--ph-brd-color);
  box-shadow: none;
  font-size: 16px;
  font-family: "Helvetica", "Arial", sans-serif;
  margin: 0;
  padding: 4px 0;
  background: 0 0;
  text-align: left;
  color: inherit;
}
.nice-form input:is([type="text"],[type="search"],[type="email"],[type="tel"],[type="number"],[type="password"]).hint,
.nice-form select.hint,
.nice-form textarea.hint {
  border-bottom: none;
  color: #cccccc;
}
.nice-form :is(input,textarea,select)::-webkit-input-placeholder {
  color: transparent;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 80%;
}
.nice-form :is(input,textarea,select)::-moz-placeholder {
  color: transparent;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 80%;
}
.nice-form :is(input,textarea,select):-ms-input-placeholder {
  color: transparent;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 80%;
}
.nice-form :is(input,textarea,select):-moz-placeholder {
  color: transparent;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 80%;
}
.nice-form :is(input,textarea,select):focus {
  box-shadow: none;
  outline: none;
}
.nice-form :is(input,textarea,select):focus::-webkit-input-placeholder {
  color: var(--ph-color);
}
.nice-form :is(input,textarea,select):focus::-moz-placeholder {
  color: var(--ph-color);
}
.nice-form :is(input,textarea,select):focus:-ms-input-placeholder {
  color: var(--ph-color);
}
.nice-form :is(input,textarea,select):focus:-moz-placeholder {
  color: var(--ph-color);
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 2;
  padding: 10px 16px;
  font-size: 1.25rem;
  line-height: 2;
  border-radius: 1rem;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 2;
  line-height: 2;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 1.25;
  padding: 5px 10px;
  font-size: 0.875rem;
  line-height: 1.25;
  border-radius: 0.25rem;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 1.25;
  line-height: 1.25;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 1rem;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 1.25rem;
  border-radius: 1rem;
}
.input-group-addon input:is([type="radio"], [type="checkbox"]) {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:is(:hover,:focus,:active) {
  z-index: 2;
}
.input-group-btn:first-child > :is(.btn,.btn-group) {
  margin-right: -1px;
}
.input-group-btn:last-child > :is(.btn,.btn-group) {
  z-index: 2;
  margin-left: -1px;
}
.range_slider {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.range_slider .label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
.range_slider .range_control {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 24px;
  color: #635a5a;
}
.range_slider .sliders_control {
  position: relative;
  margin-bottom: 1rem;
}
.range_slider input[type=range] {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background-color: var(--grey);
  pointer-events: none;
}
.range_slider input[type=range]:focus {
  outline: none;
}
.range_slider input[type=range]:focus::-webkit-slider-runnable-track {
  outline: none;
}
.range_slider input[type=range]:focus::-ms-fill-lower {
  outline: none;
}
.range_slider input[type=range]:focus::-ms-fill-upper {
  outline: none;
}
.range_slider input[type=range]::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  -webkit-appearance: none;
  pointer-events: all;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--grey);
  cursor: pointer;
}
.range_slider input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--grey);
  cursor: pointer;
}
.range_slider input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}
.range_slider input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}
.range_slider input[type="number"] {
  color: #8a8383;
  width: 50px;
  height: 30px;
  font-size: 20px;
  border: none;
}
.range_slider input[type="number"]::-webkit-inner-spin-button,
.range_slider input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}
.alert {
  padding: var(--spacer);
  margin-bottom: var(--spacer);
  border: 1px solid var(--alert-brd-c, transparent);
  border-radius: 1rem;
  background-color: var(--alert-bg-c, transparent);
  color: var(--alert-c, var(--text-color));
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > :is(p, ul) {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissible {
  padding-right: calc(var(--spacer) + 20);
}
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
/*# sourceMappingURL=form.css.map */