.custom-selectList {
    border-radius: 4px;
    height: 48px;
    margin: 9px auto 0;
    display: flex;
    max-width: 500px;
    border: 1px solid rgb(223, 223, 223);
    background: #fff;
}
.autocomplete-active .SearchComponentLocationsStack,
.autocomplete-active .custom-selectList,
.autocomplete-active .SearchComponentInput,
.autocomplete-active .SearchComponent input{
    background: #fff;
}

.custom-selectList .item-label{
    position: absolute;
    top: 15px;
}
.SearchComponent {
    display: flex;
    width: 100%;
    border: 0px solid rgb(223, 223, 223);
    position: relative;
    flex-direction: row;
    align-items: center;
    background-color: white;
    cursor: text;
    margin: 6px 0 0 0;
}

.SearchComponent .SearchIcon {
    width: 15px;
    height: 15px;
    fill: #77757a;
}

.SearchComponent input {
    display: flex;
    padding: 0 10px;
    height: 30px;
    border: none;
    outline: none;
    font-size: 14px;
    flex-grow: 1;
    background: #fff;
}

.SearchComponentInput {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0 10px;
    height: 30px;
    position: relative;
    z-index: 99;
    background: #fff;
}

.SearchComponentLocationsStack {
    display: none;
    flex-direction: row;
    align-items: center;
    width: 100%;
    cursor: text;
    font-size: .95rem;
    color: gray;
    padding: 0 8px;
    height: 30px;
    background: #fff;
}

.SearchComponentLocationsStack .button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    height: 48px;
    color: #185abc;
    padding: 0;
    cursor: text;
    outline: none;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.SearchComponentLocationsStack .button .label{
    width: 95%;
    color: #000;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.SearchComponentLocationsStack .button.full-width .label{
    width: 100%;
    overflow: auto;
    white-space: unset;
}
.SearchComponentLocationsStack .button:hover {
    opacity: .8;
}

.SearchComponentLocationsStack .button svg {
    width: 11px;
    height: 11px;
    fill: #000;
    margin-left: 10px;
    cursor: pointer;
}

.Autocomplete {
    display: none;
    flex-direction: column;
    border: solid 1px rgb(223, 223, 223);
    max-height: 260px;
    overflow-y: auto;
    position: fixed;
    top: 161px;
    left: -1px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    background-color: white;
    backdrop-filter: blur(12px);
    z-index: 99;
}

.Autocomplete::-webkit-scrollbar, .Autocomplete::-webkit-scrollbar {
    width: 8px;
}
.Autocomplete::-webkit-scrollbar-thumb, .Autocomplete::-webkit-scrollbar-thumb {
    border-left: 5px solid transparent;
    box-shadow: inset 0 0 8px 8px #185abc;
}
.Autocomplete::-webkit-scrollbar-track, .Autocomplete::-webkit-scrollbar-track {
    border-left: 5px solid transparent;
    box-shadow: inset 0 0 8px 8px #eae9f1;
    margin-top: 55px !important;
    margin-bottom: 20px !important;
}
.AreasList::-webkit-scrollbar, .AreasList::-webkit-scrollbar {
    width: 0px;
}
.AreasList::-webkit-scrollbar-thumb, .AreasList::-webkit-scrollbar-thumb {
    border-left: 0px solid transparent;
    box-shadow: inset 0 0 8px 8px #185abc;
}
.AreasList::-webkit-scrollbar-track, .AreasList::-webkit-scrollbar-track {
    border-left: 0px solid transparent;
    box-shadow: inset 0 0 8px 8px #eae9f1;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.Autocomplete article {
    min-height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 15px;
    font-size: 1rem;
    color: #5a5a5a;
    cursor: pointer;
    outline: none;
}

.Autocomplete article:hover,
.Autocomplete article:focus {
    background-color: rgb(223, 223, 223);
}

.Autocomplete article svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #999999;
}

.ClearIcon {
    display: none;
    position: absolute;
    right: 5px;
    width: 25px;
    height: 25px;
    fill: #bababa;
    cursor: pointer;
}

.SearchBtn {
    display: flex !important;
    flex-direction: row;
    height: 45px;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0 25px;
    border-radius: 50px;
    margin: 0 3px 0 5px;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background-color: #185abc;
    color: #fff;
    position: relative;
    z-index: 99;
}

.close-mobile{
    display: none;
    width: 0 !important;
    height: 0 !important;
    opacity: 0;
}
figure {
    margin: 0;
    padding: 10px 18px;
    border-bottom: 1px solid rgb(223, 223, 223);
    border-top: 1px solid rgb(223, 223, 223);
    font-weight: 500;
    font-size: 1rem;
    color: #5a5a5a;
    font-weight: 600;
}
.Empty {
    font-size: 14px;
    padding: 8px;
    color: #757575;
    line-height: 16px;
    display: block;
}
@media(max-width:992px){
    .Autocomplete{
        max-height: 260px;
        position: absolute;
        top: 38px !important;
        left: -1px !important;
    }
    div,
    span,
    ul,li,
    input,
    textarea,
    button,
    select,
    a {
        -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    }
}