@import "../styles/common";

.w-list-select{

}

.w-list-select-search-box{
  position: relative;
  margin-bottom: 10px;

  .anticon{
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translate(0,-50%);
  }

  .ant-input,
  .w-input{
    background: transparent !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
  .w-input{
    border-bottom:@border !important;
    padding-left: 25px;
  }
}

.w-list-select-header{
  height: 40px;
  justify-content: space-evenly;
  background: #f1f1f1;
  align-items: center;
  border: @border;
  border-bottom: 0;
}

.w-list-select-header-item{
  cursor: pointer;
  &.active{
    color:@activeColor;
  }
}

.w-list-select-content{
  flex-wrap: wrap;
  padding: 5px;
  border: @border;
}

.w-list-select-item{
  width: 100px;
  height: 34px;
  .flex_center();
  margin: 5px;
  border:@border;
  border-radius:20px;
  cursor: pointer;


  &.active{
    border-color:@activeColor;
    color:@activeColor;
  }
}

.w-list-select-empty{
  text-align: center;
  padding: 50px 0;
  width: 100%;
}
