.select-wrapper {
  margin: auto;
  max-width: 600px;
  width: calc(100% - 40px);
}

.select-pure__select {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid #928d80;
  box-sizing: border-box;
  color: #363b3e;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  justify-content: left;
  min-height: 41px;
  padding: 0;
  position: relative;
  transition: 0.2s;
  width: 100%;
  font-family: Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
}

.select-pure__options {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  color: #363b3e;
  display: none;
  left: 0;
  max-height: 221px;
  overflow-y: scroll;
  position: absolute;
  top: 42px;
  width: 100%;
  z-index: 5;
}

.select-pure__select--opened .select-pure__options {
  display: block;
}

.select-pure__option {
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  box-sizing: border-box;
  height: auto;
  line-height: 20px;
  padding: 4px;
  color: #009ec2;
}

.select-pure__option--disabled {
  color: #e4e4e4;
}

.select-pure__option--selected {
  color: #e4e4e4;
  cursor: initial;
  pointer-events: none;
}

.select-pure__option--hidden {
  display: none;
}

.select-pure__selected-label {
  align-items: 'center';
  background: #5e6264;
  border-radius: 4px;
  color: #fff;
  cursor: initial;
  display: inline-flex;
  justify-content: 'center';
  margin: 5px 10px 5px 0;
  padding: 3px 7px;
}

.select-pure__selected-label:last-of-type {
  margin-right: 0;
}

.select-pure__selected-label i {
  cursor: pointer;
  display: inline-block;
  margin-left: 7px;
}

.select-pure__selected-label img {
  cursor: pointer;
  display: inline-block;
  height: 18px;
  margin-left: 7px;
  width: 14px;
}

.select-pure__selected-label i:hover {
  color: #e4e4e4;
}

.select-pure__autocomplete {
  background: #f9f9f8;
  border-bottom: 1px solid #e4e4e4;
  border-left: none;
  border-right: none;
  border-top: none;
  box-sizing: border-box;
  font-size: 15px;
  outline: none;
  padding: 10px;
  width: 100%;
  font-family: Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
}

.select-pure__placeholder--hidden {
  display: none;
}

#input-etablissement {
  position: relative;
}

  #input-etablissement:after {
    content: "Établissements * (3 établissements maximum)";
    position: absolute;
    top: 11px;
    left: 0;
    z-index: -1;
    font-size: 1.6rem!important;
    color: #84888f;
  }

    #input-etablissement.active {
      background: url(../images/success.svg) no-repeat right top 2px;
      background-size: 26px auto;
    }

    #input-etablissement.active:after {
      font-size: 1.3rem!important;
      top: -16px;
    }

.input-etablissement-error {
  position: relative;
  padding: 0;
  font-family: Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: #d40d0d;
}