#lofty-widget-quick-search-app {
  width: 100%;
  .lofty-widget-quick-search-preview {
    width: 100%;
    display: flex;
    gap: 10px;
    .location-input-wrap {
      display: flex;
      align-items: center;
      position: relative;
      flex: 1;
      height: 50px;
      border: 1px solid #dddddd;
      .lofty-icon-search {
        margin-left: 10px;
        color: #A8A8A8;
      }
      input {
        flex: 1;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        background: inherit;
        padding: 0 5px;
        border: none;
        outline: 0;
        margin: 0;
        &::placeholder {
          color: #aaaaaa;
        }
        &:focus {
          border: none !important;
          box-shadow: none !important;
        }
      }
    }
    .lofty-query-label {
      height: 50px;
      display: flex;
      align-items: center;
      border: 1px solid #dddddd;
      width: fit-content;
      padding: 0 10px;
      font-size: 14px;
      gap: 5px;
      .lofty_iconfont {
        margin-left: auto;
        font-size: 14px;
      }
    }
  }
  .two-line {
    flex-wrap: wrap;
    .location-input-wrap {
      width: 100%;
      flex: none;
    }
    .lofty-query-label {
      flex: 1;
    }
  }
  .universal {
    .lofty-query-label {
      flex: none;
    }
  }
}
.lofty-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  font-size: 14px;
  font-weight: 400;
  min-height: 40px;
  line-height: 100%;
  color: #fff;
  border: 0;
  text-align: center;
  cursor: pointer;
  padding: 0 20px;
  border: none;
}