.sld-global-searchbar {
    position: relative;
}

ul.sld-global-search-result {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding: 10px 0px;
    margin: 0px 0px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 23px 0 rgba(0, 0, 0, .12);
    z-index: 99;
    min-height: 100px;
    max-height: 215px;
    overflow: hidden;
    overflow-y: scroll;
}

ul.sld-global-search-result li{
    padding: 10px 15px;
    margin: 0px;
    line-height: 18px;
    cursor: pointer;
    transition: 0.3s ease all;
    border-left: 5px solid #fff;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
}
ul.sld-global-search-result li p{
    padding: 0px 0px;
    margin: 0px 0px;
    line-height: 18px;
    cursor: pointer;
    font-weight: 400;
    font-size:15px;
}
ul.sld-global-search-result li i{
    padding: 0px 0px;
    margin: 0px 0px;
    line-height: 15px;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
}

ul.sld-global-search-result li:hover{
    transition: 0.3s ease all;
    border-left: 5px solid #7150e6;
    background: #f5f5f5;
    color:#7150e6;
}
	
.sld-global-searchbar .styled{
  display: flex;
  align-items: center;
  width: 200px;
  height: 45px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 25px;
  overflow: hidden;
  transition: width 0.4s ease-in-out;
  position: relative;
}


.sld-global-searchbar .styled:focus-within {
  width: 250px; 
  border-color: #7150e6;
}


.sld-global-searchbar  .styled .sld-search {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 15px;
  font-size: 16px;
  width: 0;
  min-width: 95%;
}


.sld-global-searchbar .styled .qc_submit_btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #ccc;
}

.sld-global-searchbar .styled .qc_submit_btn {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 15px;
    font-size: 15px;
    vertical-align: middle;
    position: relative;
    left: -22px;
    z-index: 99;
    border: 0px solid transparent;
}
.sld-global-searchbar .styled:focus-within  .qc_submit_btn{
  color: #333;
}

.sld-global-searchbar .sld_search_filter_clear{
  /*display: none!important;*/
}

/* Spinner styling */
.sld-loader {
    width: 40px;
    height: 40px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #7150e6; /* Matches WordPress blue */
    border-radius: 50%;
    animation: sld-spin 1s linear infinite;
    margin: 15px auto;
    display: none; /* Hidden by default */
}

@keyframes sld-spin {
    to { transform: rotate(360deg); }
}


::-webkit-scrollbar {
    background: transparent;
    height: 6px;
    width: 6px
}

::-webkit-scrollbar-thumb {
    background: transparent;
    background: #c3c7d2;
    border-radius: 4px
}

:hover::-webkit-scrollbar-thumb {
    background: #c3c7d2
}

::-webkit-scrollbar-track {
    display: none
}