.search-bar-container {
    margin: auto;
    position: relative;
}


.input-wrapper {
    width: 100%;
    height: 45px;
    border: 1px solid black;
    border-radius: 10px;
    padding: 0 15px;
    background-color: white;
    display: flex;
    align-items: center;
}


.input-wrapper input {
    background-color: transparent;
    border: none;
    height: 100%;
    font-size: 1.25rem;
    width: 100%;
    margin-left: 5px;
}

.input-wrapper input:focus {
    outline: none;
}


/*search result*/
.search-result {
    padding: 10px 20px;
}

.search-result:hover {
    background-color: #efefef;
}

/*result list*/
.results-list {
    width: 100%;
    background-color: white;
    box-shadow: 0px 0px 8px #ddd;
    border-radius: 10px;
    margin-top: 1rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    position: absolute;
    top:35px;
    left: 0;
}


/*search card*/

.search-card-img{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media screen and (max-width: 1200px) {

}