/* .form {
    width: 500px;
    margin: 0 auto;
    margin-top: 150px;
    font-family: sans-serif;
    background: #fff
}

.form-item {
    position: relative;
    margin-bottom: 15px
}

.form-item input {
    display: block;
    width: 400px;
    height: 40px;
    background: transparent;
    border: solid 1px #ccc;
    transition: all .3s ease;
    padding: 0 15px
}

.form-item input:focus {
    border-color: blue
}

.form-item label {
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 13px;
    left: 10px;
    font-size: 12px;

    background: #fff;
    padding: 0 10px;
    color: #999;
    transition: all .3s ease
}

.form-item input:focus+label,
.form-item input:valid+label {
    font-size: 11px;
    top: -5px
}

.form-item input:focus+label {
    color: blue
}


html,
body {
  align-items: center;

  box-sizing: border-box;
  height: 100%;
  justify-content: center;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
* {
  box-sizing: inherit;
  cursor: inherit;
  transition-duration: 0.2s;
  transition-property: none;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}
label.field {
  border-radius: 2px;
  color: #999;
  display: block;

  max-width: 300px;

  opacity: 0;
  position: relative;
  transition-property: opacity;
  z-index: 1;
  span {
    color: inherit;
    display: block;
    font-size: 14px;
    height: 20px;
    line-height: 20px;
    left: 9px;
    pointer-events: none;
    position: absolute;
    top: 32px;
    transform: scale(1) translateY(0);
    transition-property: color, font-size, top;
    z-index: 1;
    &.required {
      &::after {
        color: inherit;
        content: "*";
        display: block;
        height: 20px;
        left: -20px;
        line-height: 20px;
        position: absolute;
        text-align: center;
        top: 0;
        width: 20px;
      }
    }
    .error & {
      color: #f02318;
    }
  }

  .psuedo_select {
    background: rgba(255, 255, 255, 0);
    position: relative;
    color: #999;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    height: 35px;
    line-height: 24px;
    margin: 24px 32px 0 0;
    min-width: 400px;
    padding-top: 24px;
    outline: 0;
    z-index: 1;
    &::after {
      background: url("data:image/svg+xml;utf8,<svg fill='#666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"),
        no-repeat;
      content: "";
      height: 24px;
      width: 24px;
      position: absolute;
      top: 0;
      right: 0;
      transition-property: background;
    }
    .selected {
      height: 40px;
      left: 1px;
      line-height: 24px;
      opacity: 0;
      position: absolute;
      top: 0;
      transform: translateY(24px);
      transition-property: opacity, transform;
      will-change: transform;
    }
    ul {
      background: #fff;
      box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
      display: block;
      height: 0;
      list-style: none;
      margin-top: 2px;
      opacity: 0;
      overflow: hidden;
      padding: 0 1px;
      pointer-events: none;
      transition-property: height, opacity;
      width: 100%;
      z-index: 2;
      li {
        height: 32px;
        padding: 8px 4px;
      }
    }
  }
  .deselect {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: -1;
  }
  &.focused {
    color: blue;
    .psuedo_select {
      border-color: #007bed;
      /* &::after {
        background: url("data:image/svg+xml;utf8,<svg fill='#007BED' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"),
          no-repeat;
      } */
      ul {
        opacity: 1;
        pointer-events: all;
      }
    }
  }
} */
