.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
  }

  .ui-autocomplete > li > div {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333333;
    white-space: nowrap;
  }

  .ui-state-hover,
  .ui-state-active,
  .ui-state-focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
    cursor: pointer;
  }

  .ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .center {
    text-align: center;
  }

  .form-container {
    background-color: #222;
    color: white;
  }

  .form-container hr {
    background-color: white;
  }

  .card, .no-background-card {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .button-max {
    width: 100%;
  }
  
  label + .hint {
    line-height: 1;
  }

  .hint {
    font-style: italic;
    font-size: 90%;
    margin-bottom: 0.5rem;
  }

  .italics {
    font-style: italic;
  }

  .hide {
    display: none;
  }

  .selected_items {
    display: flex;
    flex-wrap: wrap;
  }

  .list_item {
    background-color: rgba(81, 21, 105, 1.0);
    border-radius: 50px;
    color: white;
    font-size: 90%;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
  }
  .list_item: hover {
    background-color: rgba(81, 21, 105, 0.8);
  }

  .list_item_close {
    font-weight: bold;
  }

  label.required:after {
    content: '*';
    color: red;
  }

  hr.light {
    background-color: #666;
  }

  .card img:not(.card-img-top) {
    max-width: -webkit-fill-available;
    margin-bottom: 10px;
  }