#mobile_search_area_preloader_item {
    width: 24px;
    height: 24px;
    border: 3px solid var(--Primary-blue);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: none;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mobile-product-item__image {
    background-color: #fff;
    border-radius: 4px;
    padding: 8px;
}

.mobile-product-item__info__title {
    -webkit-line-clamp: 2;
}