.upperTabContainer {
    display: flex;
    column-gap: 0.25rem;
    justify-content: flex-start;
}

.searchElementIcon {
    font-size: 1.5rem;
    color: rgb(0, 101, 228);
}

.cbsSearchTab {
    /* background-color: rgba(128, 128, 128, 0.5); */
    /* background-color: rgba(255, 255, 255, 0.15); */
    /* background-color: #0c0c0c26; */
    background-color: #ffffff26;
    
    backdrop-filter: blur(10px);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 0 1rem;
    display: flex;
    column-gap: 0.5rem;
    align-items: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    /* color: var(--grey9); */
    /* background-color: #0c0c0c26; */
    height: 40px;
    color: var(--grey4);
}
.cbsSearchTabSpan {
    font-size: 16px;
    font-weight: 400;
}
.cbsSelectedSearchType {
    background-color: white;
    color: var(--blue5);
;
}

.lowerSearchContainer {
    display: grid;
    grid-template-columns: 1fr min-content;
    align-items: center;
    background-color: white;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 12px;
    justify-content: space-between;
    align-content: stretch;
    padding: 0px 24px;
    column-gap: 1rem;
    position: relative;
}

.spinner{
    position: absolute;
    top:50%;
    right:8px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border:3px solid #ccc;
    border-top:3px solid #0078d7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
  }
  
  @keyframes spin{
    from {transform: translateY(-50%) rotate(0deg);}
    to {transform: translateY(-50%) rotate(360deg);}
  }

.cbsSearchInput {
    padding:14px !important;
    color: var(--grey9) !important;
    font-size: 16px;
    font-family: "Noto Sans Hebrew";
    font-weight: 400;
    border: 0 !important;
    border-radius: 0.25rem;
}

.cbsSearchInput::placeholder {

    padding: 0px !important;
    color: var(--grey7) !important;
    /* color: red; */
    border: 0 !important;
    font-family: "Noto Sans Hebrew";
font-size: 16px !important;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */



}

.cbsSearchButton {
    cursor: pointer;
}

/* .lowerSearchContainer div {

} */

.cbsSearchInput::placeholder {
    font-size: 0.75rem;
    vertical-align: middle;
}
.lowerSearchContainer {
    
    height:70px;
}
#cbsSearchInputautocomplete-list {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    height: 300px;
    overflow: auto;
    background-color: #ffffff;
}

#cbsSearchInputautocomplete-list div {
    cursor: pointer;
    padding: 1rem;
    text-align: initial;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9;
}
@media only screen and (min-width: 768px) {
    .lowerSearchContainer {
        width: 652px;
    }
}

.autocomplete-active{
    /*when navigating through the items using the arrow keys:*/
    background-color: var(--blue9);
    color: var(--blue6);
    font-weight: 600;
}
