.search {
    background-color: #fff;
    padding: 4px;
    border-radius: 5px
}

.search-1 {
    position: relative;
    width: 100%
}

.search-1 select {
    height: 45px;
    border: none;
    width: 100%;
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 2px solid #e8e8e8;
    color: #000;
}

.search-1 select:focus {
    border-color: none;
    box-shadow: none;
    outline: none
}

.search-1 i {
    position: absolute;
    top: 12px;
    left: 5px;
    font-size: 24px;
    color: #eee
}

::placeholder {
    color: #eee;
    opacity: 1
}

.search-2 {
    position: relative;
    width: 100%
}

.search-2 select,input[type="text"] {
    /* height: 45px!important; */
    border: none;
    width: 100%!important;
    padding-left: 18px;
    font-size: 20px;
    /* padding-right: 100px; */
    border: 2px solid #e8e8e8;
    color: #000;
}
.search-main-input{
    font-size: 14px!important;
}

.search-2 select:focus {
    border-color: none;
    box-shadow: none;
    outline: none
}

.search-2 i {
    position: absolute;
    top: 12px;
    left: -10px;
    font-size: 24px;
    color: #eee
}

.search-2 button {
    display: block;
    position: relative;
    right: 1px;
    top: 0px;
    border: none;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 4px;
    margin: 0px auto;
    margin-top: 20px;
    font-size: 18px;
    padding: 5px 30px;
}

@media (max-width:800px) {
    .search-1 select {
        border-right: none;
        border-bottom: 1px solid #eee
    }

    .search-2 i {
        left: 4px
    }

    .search-2 select {
        padding-left: 34px
    }

    .search-2 button {
        height: 37px;
        top: 5px
    }
}
.suggesstion-box {
    display: none;
    min-height: 100%;
    max-height: 210px;
    overflow-y: scroll;
    position: absolute;
    background-color: var(--white);
    z-index: 100;
    width: 100%;
}
.suggesstion-box h6 {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f4f8f7;
    width: 90%;
}
.area-list{
    padding: 0px;
    margin: 0px;
}
.area-list li{
    display: block!important;
    cursor: pointer;
    padding: 8px 10px;
    font-size: 20px;
    color:#111e31;
}
.area-list li:hover{
    display: block!important;
    background-color: var(--lightgrey);
}