@import '../../../assets/scss/utils/variables';

.hawk-border-picker {
  position: relative;
  width: fit-content;
  &__input-picker {
    width: fit-content;
    display: flex;
    border: 1px solid #cccccc;
    border-radius: 30px;
    padding: 4px 6px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    cursor: pointer;
    &__border {
      height: 25px;
      width: 25px;
      border-radius: 50%;
      border-width: 3px;
      border-color: $black;
    }
    .hawk-input {
      height: 20px;
      width: 90px;
      border: 0;
      box-shadow: unset;
      margin-top: 2px;
      text-transform: capitalize;
      cursor: pointer;
    }
  }
  &__dropdown {
    position: absolute;
    will-change: transform;
    top: 0px;
    left: 0px;
    transform: translate3d(0px, 43px, 0px);
    float: left;
    width: 156px;
    padding: 4px;
    font-size: 14px;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
  }
  &__border {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border-width: 3px;
    border-color: $black;
    margin: 4px;
    cursor: pointer;
  }
}
