/*!**********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/Resources/assets/scss/frontend.scss ***!
  \**********************************************************************************************************************************/
@layer form-bundle {
  form input[name^=hp_] {
    display: none;
  }
  input[name=hp_name] {
    display: none;
  }
  form {
    transition: all 0.2s ease;
  }
  form.loading {
    opacity: 0.5;
    pointer-events: none;
  }
  .widget {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .widget.error {
    color: red;
  }
  .widget.valid {
    color: limegreen;
  }
  .widget .help > .help-content p {
    margin: 0;
  }
  .widget-auto-select .options {
    margin: 0;
    padding: 1rem;
    max-height: 10rem;
    list-style: none;
    display: none;
  }
  .widget-auto-select .options.active {
    display: block;
  }
  .widget-auto-select .options > li {
    cursor: pointer;
  }
  .widget-auto-select .options > li.hidden {
    display: none;
  }
  .widget-upload .file-placeholder {
    display: flex;
  }
  .widget-upload .file-placeholder picture {
    width: 4rem;
    height: 4rem;
  }
  .widget-upload .file-placeholder picture img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .widget-upload .input {
    position: relative;
    cursor: pointer;
  }
  .widget-upload .input input[type=file] {
    opacity: 0;
    width: 100%;
    cursor: pointer;
  }
  .widget-upload .input .input-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    pointer-events: none;
  }
  .widget-select .input {
    cursor: pointer;
    position: relative;
  }
  .widget-select .input.focus .selected-option {
    outline: 2px solid black;
  }
  .widget-select .input select {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 100vw;
  }
  .widget-select .input .selected-option {
    background: field;
    color: fieldtext;
    border: 1px solid #767676;
    border-radius: 2px;
  }
  .widget-select .input .options {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: white;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    border: 1px solid #767676;
    border-top: none;
  }
  .widget-select .input .options.active {
    height: fit-content;
    max-height: 10rem;
    border-radius: 2px;
    pointer-events: all;
    opacity: 1;
  }
  .widget-select .input .options li {
    list-style: none;
  }
  .widget-select .input .options .option[data-selected] {
    color: grey;
  }
  .widget-select .input .options .option.hover {
    background: #0078d7;
    color: white;
  }
}
