.search-items{
    position: fixed;
    width: calc(30% - 30px);;
    top: 60px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 1px 1px 11px 1px rgb(0 0 0 / 9%);
    z-index: 1200;
}

.search-items .loading-gif{
    width: inherit;
}

.search-items .item-link{
    text-decoration: none;
}

.search-items .item{
    display: flex;
    transition: all 0.3s ease;
}

.search-items .item:first-child{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.search-items .item:last-child{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.search-items .item:hover{
    background-color: var(--main-color);
}

.search-items .item .item-img{
    padding: 0px 10px;
    display: flex;
}

.search-items .item .item-img img{
    width: 80px;
    aspect-ratio: 3/2;
    object-fit: contain;
    margin: auto;
}

.search-items .item .item-info *{
    cursor: pointer;
}
.search-items .item .item-info{
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: grid;
}

.search-items .item .item-info h5{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px;
    color: #212529;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.search-items .item .item-info label{
    font-size: 13px;
    color: gray;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.search-items .item .item-info span{
    font-size: 15px;
    font-weight: bold;
    color: var(--main-color);
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.search-items .item:hover .item-info h5{
    color: white;
}

.search-items .item:hover .item-info label{
    color: white;
}

.search-items .item:hover .item-info span{
    color: white;
}
