.custom-selectList {
    box-shadow: 0px 1px 5px 1px #d5cfcf !important;
    border-radius: 50px;
    height: 51px;
    margin: 15px auto;
    display: flex;
}
.SearchComponent {
    display: flex;
    width: 100%;
    border: 2px solid #ebebeb;
    position: relative;
    flex-direction: row;
    align-items: center;
    background-color: white;
    /* backdrop-filter: blur(12px); */
    cursor: text;
    margin: 6px 0 0 0;
}
.home .SearchComponent{
    max-width: 650px !important;
    margin: 10px auto !important;
    border-top-left-radius: 50px !important;
    border: 0px solid #fff;
    border-bottom-left-radius: 50px;
}
.home .SearchComponent input{
    border-radius: 50px !important;
}
.home-searchBtn{
    background: #fff;
    height: 51px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.SearchComponent .SearchIcon {
    width: 20px;
    height: 20px;
    fill: #77757a;
}

.SearchComponent input {
    display: flex;
    padding: 0 15px;
    height: 51px;
    border: none;
    outline: none;
    font-size: 1rem;
    flex-grow: 1;
}

.SearchComponentInput {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    height: 51px;
    position: relative;
    z-index: 999;
}
.home .SearchComponentInput {
    background: #fff;
    border-radius: 50px;
}
.SearchComponentLocationsStack {
    display: none;
    flex-direction: row;
    align-items: center;
    width: 100%;
    cursor: text;
    font-size: .95rem;
    color: gray;
    padding: 0 8px;
    height: 51px;
}

.SearchComponentLocationsStack .button {
    display: flex;
    flex-direction: row;
    background-color: #185abc12;
    border: solid 1px #185abc;
    border-radius: 50px;
    align-items: center;
    justify-content: space-between;
    font-size: .9rem;
    height: 36px;
    color: #185abc;
    padding: 0 10px;
    cursor: text;
    outline: none;
    margin-right: 8px;
    white-space: nowrap;
    max-width: calc(100% - 150px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.SearchComponentLocationsStack .button .label{
    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #185abc;
}
.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: gray;
    margin-left: 10px;
    cursor: pointer;
}

.Autocomplete {
    display: none;
    flex-direction: column;
    border: solid 1px #ebebeb;
    max-height: 260px;
    overflow-y: auto;
    position: absolute;
    top: 52px;
    width: 100%;
    left: 0;
    border-radius: 4px;
    background-color: white;
    backdrop-filter: blur(12px);
    z-index: 99;
}
.home .Autocomplete{
    flex-direction: column;
    border: solid 1px #ebebeb;
    max-height: 260px;
    overflow-y: auto;
    position: absolute;
    top: 0px;
    width: calc(100% + 103px);
    left: 0;
    background-color: white;
    backdrop-filter: blur(12px);
    z-index: 8;
    padding-top: 53px;
    border-radius: 20px;
    box-shadow: 0px 1px 5px 1px #d5cfcf !important;
}
.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: #ebebeb;
}

.Autocomplete article svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #999999;
}

.AreasStack {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 8px 8px 0 8px;
}

.AreasStack .button {
    height: auto;
    color: #185abc;
    padding: 3px 10px;
    cursor: text;
    outline: none;
    margin-right: 8px;
    margin-bottom: 8px;
    text-align: left;
    display: flex;
    flex-direction: row;
    background-color: #185abc12;
    border: solid 1px #185abc;
    border-radius: 50px;
    align-items: center;
    justify-content: space-between;
    font-size: .9rem;
}

.AreasStack .button:hover {
    opacity: .8;
}

.AreasStack .button svg {
    width: 11px;
    height: 11px;
    fill: gray;
    margin-left: 10px;
    cursor: pointer;
}

.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: #508223 !important;
    color: #fff;
    position: relative;
    z-index: 99;
}
.search-resultt .SearchComponent{
    border: 1px solid #ebebeb;
    border-radius: 50px;
}
.search-resultt .SearchComponentInput{
    height: 48px;
}
.search-resultt .SearchComponent input{
    height: 40px;
}
.close-mobile{
    display: none;
    width: 0 !important;
    height: 0 !important;
    opacity: 0;
}
figure {
    margin: 0;
    padding: 10px 18px;
    border-bottom: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
    font-weight: 500;
    font-size: 1rem;
    color: #5a5a5a;
    font-weight: 600;
}
@media(max-width:768px){
    .SearchComponentLocationsStack .button{
        max-width: 115px !important;
    }
    .SearchComponentLocationsStack .button.full-width{
        max-width: 75% !important;
    }
    .SearchComponentLocationsStack .button.full-width .label {
        width: 75%;
        overflow: hidden;
    }
    .SearchBtn{
        padding: 0 15px!important;
    }
    .master-ds_v8.mobile-vh header {
        display: none !important;
    }
    .mobile-vh .custom-selectList{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        margin: 0;
        background: #fff;
        z-index: 99999;
        display: flex;
        align-items: baseline;
        border-radius: 0;
    }
    .mobile-vh .Autocomplete{
        max-height: 100vh;
        width: calc(100% + 54px);
        border-radius: 0;
    }
    .mobile-vh .home-searchBtn {
        position: absolute;
        right: 0px;
        top: 0px;
        z-index: 9999;
    }
    .mobile-vh .SearchComponent{
        margin: 0 !important;
        border-radius: 0 !important;
        border-bottom: 1px solid #ebebeb !important;
    }
    .mobile-vh .SearchComponentLocationsStack{
        padding: 0 15px 0 40px !important;
    }
    .mobile-vh .SearchComponentInput{
        border-radius: 0 !important;
        padding-left: 25px;
    }
    .close-mobile {
        position: absolute !important;
        width: 35px !important;
        height: 35px !important;
        opacity: 1;
        top: 9px;
        left: 2px;
        z-index: 99999;
        cursor: pointer;
        visibility: visible !important;
        align-items: center;
        justify-content: center;
    }
    .mobile-vh .close-mobile{
        display: flex !important;
    }
    .mobile-vh .SearchComponent .SearchIcon{
        display: none !important;
    }
    .mobile-vh .footer-sticky-cta{
        display: none !important;
    }
    div,
    span,
    ul,li,
    input,
    textarea,
    button,
    select,
    a {
        -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    }
}
