@charset "UTF-8";
.form {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
.form fieldset > div {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.form fieldset legend {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 1em;
}
.form fieldset legend.required:after {
  content: "*";
}
.form fieldset > legend {
  margin-bottom: 1em;
}
.form a:not(.b) {
  color: #1A7CDC;
  text-decoration: underline;
}
.form a:not(.b):hover {
  color: #5D88A4;
}
.form .bWrap {
  display: flex;
  gap: 1em;
}
.form--hidden {
  display: none;
}
.form__fieldset h3 {
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #1A7CDC;
}
.form__fieldset.error {
  outline: 2px solid red;
  outline-offset: 3px;
}
.form__legend--hidden {
  display: none;
}
.form__hint {
  font-size: 0.8em;
  line-height: 1.4;
  color: #515a66;
}
.form__hint--required {
  text-align: right;
}
.form__hint--required:before {
  content: "*";
}
.form__group {
  position: relative;
}
.form__group label .form__hint {
  text-transform: none;
  font-weight: 400;
}
.form__group.error input, .form__group.error select, .form__group.error textarea {
  border-color: red;
}
.form__group.error label {
  color: red;
}
.form__group.error .selectize-input {
  border-color: red;
}
.form__group.form__group--inputNumber .form__input {
  position: relative;
}
.form__group.form__group--inputNumber .form__input input::-webkit-outer-spin-button, .form__group.form__group--inputNumber .form__input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form__group.form__group--inputNumber .form__input input[type=number] {
  -moz-appearance: textfield;
}
.form__group .form__hint {
  margin-top: 0.5em;
}
.form__group--ok .form__input input {
  border-color: #2ECC40;
}
.form__group--standalone {
  margin-bottom: 0 !important;
}
.form__group--standalone label {
  position: static;
  top: auto;
  left: auto;
  font-size: 1em;
  background-color: transparent !important;
}
.form__group--standalone .form__input input {
  padding: 6px 16px;
  max-width: 24em;
  width: 100%;
  border: 1px solid #c0c1c4;
  border-radius: 0;
}
.form__group--largeLabels label {
  font-size: 1em !important;
}
.form__row .form__group {
  margin-bottom: 0;
}
@media (min-width: 37rem) {
  .form__row {
    display: flex;
    justify-content: space-between;
  }
  .form__row > * {
    width: calc(50% - 1em);
  }
}
.form__group--required label span:after {
  content: "*";
  color: #515a66;
}
.form__group:not(.form__group--required) label span:after {
  content: " " attr(data-optional);
  color: #515a66;
}
.form__input {
  position: relative;
  background-clip: padding-box;
}
.form__input input, .form__input select, .form__input textarea {
  padding: 6px 16px;
  width: 100%;
  min-height: 47px;
  border: 1px solid #c0c1c4;
  border-radius: 0;
  font-family: inherit;
  color: #000;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color 1s ease-in;
  transition: background-color 1s ease-in;
}
.form__input input:disabled, .form__input select:disabled, .form__input textarea:disabled {
  cursor: not-allowed;
}
.form__input select {
  cursor: pointer;
}
.form__input textarea {
  min-height: 8em;
  max-height: 20em;
  resize: vertical;
}
.form__input--select {
  position: relative;
}
.form__input--select select {
  padding-right: 2em;
  background-color: #fff;
}
.form__input--select .icon {
  width: 1em;
  position: absolute;
  right: 0.5em;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  color: #1A7CDC;
}
.form__group--checkbox {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.form__group--checkbox input[type="checkbox"] {
  cursor: pointer;
  transform: scale(1.5);
}
.form__group--checkbox label {
  display: block !important;
  position: relative;
  line-height: 1.2;
  font-size: 0.8em;
  font-weight: 400;
  text-transform: none;
}
.form__group--checkbox.error label {
  color: red;
}
.form__group--radioWrap {
  display: flex;
}
.form__group--radioWrap.error {
  outline: 2px solid red;
  outline-offset: 3px;
}
.form__group--radio {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.form__group--radio input[type="radio"] {
  transform: scale(1.5);
  cursor: pointer;
}
.form__group--radio label {
  position: relative;
  font-size: 0.8em;
}
.form__group--radio.error label {
  color: red;
}
.form__status {
  display: none;
  margin: 1em 0 0 0;
  min-height: 1em;
  text-align: center;
}
.form__status.error {
  display: block;
  margin-bottom: 1em;
  color: red;
}
.form__status.success {
  display: block;
  font-weight: 600;
  color: #1A7CDC;
}
.form__status.loading {
  display: block;
  width: 100%;
  height: 1em;
  position: relative;
}
.form__status.loading:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("/images/ajax-loader.gif");
  background-position: center center;
  background-repeat: no-repeat;
}
.form--inline .form__group label {
  background-color: transparent;
  left: 1.1rem;
}
.form--inline .form__group.hasValue label, .form--inline .form__group.focus label, .form--inline .form__group.form__group--fixedTop label {
  top: -1.1rem;
  max-height: 1.4em;
}
.form--inline .form__group.error label {
  color: #7F45E0;
}
.form--inline .form__group.error input {
  border-color: red;
}
.theme--yellow .form--inline .form__group.error input {
  border-color: #7F45E0;
}
.form--inline .form__group--checkbox.error label:before {
  border-color: #7F45E0;
}
.form--inline .form__status.error {
  color: #7F45E0;
}
.theme--yellow .form--inline .form__status.success {
  color: #1A7CDC;
}
.form--card .form__group label {
  position: static;
  top: auto;
  left: auto;
  max-height: none;
  background-color: transparent;
}
.form--card .form__input input, .form--card .form__input select, .form--card .form__input textarea {
  padding: 0.62em 1em;
  width: 100%;
  border: 0;
  background-color: #fff;
  color: #1a1a1a;
  border-radius: 6px;
}
.attachmentsDropzone {
  position: relative;
  min-height: 4em;
  background-color: #ECF2F6;
  border: 2px dashed #c0c1c4;
}
.attachmentsDropzone.over {
  border-color: #00CCAA;
}
.attachmentsDropzone > div:first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
.attachmentsDropzone form {
  margin: 0;
  width: 100%;
  height: 100%;
}
.attachmentsDropzone form input[type=file] {
  width: 100%;
  height: 100%;
}
.attachmentsHint {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  height: 100%;
  z-index: 1;
  padding: 1em;
  color: #1a1a1a;
}
.attachmentsDropzone:hover .attachmentsHint button {
  background-color: #1A7CDC;
}
.form fieldset .form__group--upload {
  gap: 0;
}
#attachmentsList .attachment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
#attachmentsList .attachment button {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
}
#attachmentsList .attachment button:hash {
  color: #5D88A4;
}
/**
 * selectize.css (v0.12.6)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
}
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}
.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.selectize-dropdown-header-close:hover {
  color: #000000;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}
.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}
.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #cacaca;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #ffffff;
}
.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}
.selectize-control {
  position: relative;
}
.selectize-dropdown, .selectize-input, .selectize-input input {
  color: #303030;
  font-family: inherit;
  -webkit-font-smoothing: inherit;
}
.selectize-input, .selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}
.selectize-input {
  border: 0;
  border-bottom: 2px solid #1a1a1a;
  background-color: transparent;
  font-family: inherit;
  color: #000;
  border-radius: 0;
  padding: 0.2em 0;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  webkit-transition: background-color 1s ease-in;
  transition: background-color 1s ease-in;
}
.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}
.selectize-input.full {
  background-color: #fff;
}
.selectize-input.disabled, .selectize-input.disabled * {
  cursor: default !important;
}
.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}
.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}
.selectize-control.multi .selectize-input.disabled > div, .selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff;
}
.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
}
.selectize-input > input::-ms-clear {
  display: none;
}
.selectize-input > input:focus {
  outline: none !important;
}
.selectize-input::after {
  content: " ";
  display: block;
  clear: left;
}
.selectize-input.dropdown-active::before {
  content: " ";
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.selectize-dropdown [data-selectable] .highlight {
  background: #c0c1c4;
}
.selectize-dropdown .option, .selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}
.selectize-dropdown .option, .selectize-dropdown [data-disabled], .selectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.selectize-dropdown [data-selectable].option {
  opacity: 1;
}
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.selectize-dropdown .active {
  background-color: #1A7CDC;
  color: #fff;
}
.selectize-dropdown .active.create {
  color: #495c68;
}
.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  font-family: inherit;
}
.selectize-control.single .selectize-input, .selectize-control.single .selectize-input input {
  cursor: pointer;
}
.selectize-control.single .selectize-input.input-active, .selectize-control.single .selectize-input.input-active input {
  cursor: text;
}
/*
.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}
*/
.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}
.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}
.selectize__result {
  padding: 0.3em 0.5em;
}
.selectize__result small {
  display: block;
}
