#searchbar {
    width: 20%;
    background-color: #8c012c;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    width: 240px;
    height: 40px;
    min-width: 230px;
    min-height: 40px;

}
 
#searchbar.hidden {
    display: none;
}
 
#searchIcon {
    color: #f9f6f6;
}
 
.animated-placeholder {
    position: absolute;
    left: 10px;
    transform: translateY(-50%);
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.5s;
    opacity: 0;
 
    color:#8C8C8C;
    display: flex;
    align-items: center;
    font-size: 23px;
    font-family: 'Libre Baskerville', serif;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 400;
}
 
.fly-in-out {
    animation: flyInOut 3s infinite;
}
 
@keyframes flyInOut {
    0% {
        transform: translateY(-200%);
        opacity: 0;
    }
    25%, 75% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(200%);
        opacity: 0;
    }
}
 
.searchbar-text {
    margin-top: 5px;
    display: flex;
    align-items: center;
    font-size: 25px;
    font-family: 'Libre Baskerville', serif;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 400;
}
 
.listview-searchbar {
    max-height: 240px;
    overflow-y: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background-color: #8c012c;
    position: relative;
    border: 1px solid black;
    margin-left: 2px;
    margin-right: 3px;
    max-width: 32rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
 
.listview-searchbar-2 {
    max-height: 240px;
    overflow-y: auto;
    width: 205px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background-color: #8c012c;
    position: relative;
    border: 1px solid black;
    margin-left: 2px;
    margin-right: 3px;
    max-width: 32rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
 
    -ms-overflow-style: none; /* Internet Explorer and Edge */
    scrollbar-width: none; /* Firefox */
 
}
 
.listview-search-item-container {
    display: flex;
    align-items: center;
}
 
.listview-search-item-container-2 {
    display: flex;
    align-items: center;
    width: 205px;
}
 
 
.listview-search-item-container i {
    color: #f9f6f6;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    cursor: pointer;
}
 
.listview-search-item-container-2 i {
    color: #f9f6f6;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    cursor: pointer;
}
 
.listview-search-item-container input {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    background-color: #f9f6f6;
    color: black;
    flex-grow: 1;
    height: 100%;
    font-size: 25px;
    border: none;
    padding-right: 20px;
    box-sizing: border-box;
}
 
.listview-search-item-container-2 input {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    background-color: #f9f6f6;
    color: black;
    flex-grow: 1;
    height: 100%;
    font-size: 25px;
    border: none;
    padding-right: 20px;
    box-sizing: border-box;
    width: 205px;
}
 
.listview-search-item-container div {
    position: absolute;
    right: 0.5rem;
    font-size: 1.125rem;
    cursor: pointer;
}
.custom-datalist {
    position: relative;
    width: 100%;
    background-color: #8C8C8C;
    max-height: 480px;
    overflow-y: auto;
}
 
.listview-custom-datalist {
    position: relative;
    width: 50%;
    background-color: #8C8C8C;
    max-height: 480px;
    overflow-y: auto;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.address-alert-list {
    padding: 10px;
    background-color: #8c012c; /* Red */
    color: white;
    margin-bottom: 10px;
    font-size: 12px;
    position: absolute;
    top: 15rem;
    right: 24rem;
    z-index: 9;
    opacity: 0.8;
    display: none;
}

@media (max-width: 500px) {

    .listview-search-item-container {
        display: flex;
        align-items: center;
        max-width: 100%;
    }

    .listview-search-item-container input {
        font-family: 'Libre Baskerville', serif;
        font-weight: 400;
        background-color: #f9f6f6;
        color: black;
        flex-grow: 1;
        height: 100%;
        font-size: 18px;
        border: none;
        padding-right: 20px;
        box-sizing: border-box;
    }

}
