.viwse-input-searching-wrap {
  position: relative;

  &:before {
    content: '';
  }
  &:after {
    position: absolute;
    right: 10px;
    top:  calc( 50% - 10px );
    content: '' !important;
    border: 2px solid #dbdbdb;
    border-top: 2px solid #838a8e;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: viwse-spin 1s linear infinite;
  }
}

@keyframes viwse-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.viwse-search-results-wrap{
  background: #fff;
  border: 1px solid #e7e7e7;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow-y: auto;
  /* scrool bar */
  &::-webkit-scrollbar {
    width: 7px;
  }

  &::-webkit-scrollbar-track {
    background: #f1f1f1;
    margin-top: 2px;
    margin-bottom: 2px;
  }

  &::-webkit-scrollbar-thumb {
    background: #cecece;
    border-radius: 3px;
  }

  &::-webkit-scrollbar-thumb:hover {
    background: #a6a6a6;
  }
  .viwse-search-result-wrap{
    padding: 8px 10px ;
    &.viwse-search-result-wrap-selected{
      background: #f9f9f9;
    }
    .viwse-search-result{
      display: flex;
      gap: 5px;
      align-items: center;
      cursor: pointer;
      &.viwse-search-result-title{
        font-size: 13px;
        text-transform: uppercase;
        pointer-events: none;
        padding-top: 10px;
        box-shadow: 0px 1px 0px 0px rgba(197, 197, 197, 0.75);
        &.viwse-search-result-notice{
          opacity: .65;
          box-shadow: none;
        }
      }
      .viwse-result-img{
        max-width: 40px;
        max-height: 40px;
        img{
          width: auto;
          height: auto;
          max-width: 100%;
          max-height: 100%;
        }
      }
      .viwse-result-info-wrap{
        width: 100%;
        display: flex;
        flex-direction: column;
        .viwse-result-info{
          width: 100%;
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          align-items: baseline;
          .viwse-result-title {
            //overflow: hidden;
            //text-overflow: ellipsis;
            //display: -webkit-box;
            //-webkit-box-orient: vertical;
            //-webkit-line-clamp: 2;
            font-weight: 500;
          }
        }
      }
    }
  }
}