/** СТИЛИ ОКНА ПОИСКА ЭЛЕМЕНТА ПОЛЯ ВВОДА ЗНАЧЕНИЯ ИЗ СПИСКА */

/* Окно поиска товаров */
.flex.column.finded_rows {width: 100%;}
.finded_rows .finded_row {height: 44px; padding: 0 10px; cursor: pointer;}
.finded_rows .finded_row.is_focus {background-color: #e9ecef;}
.finded_rows .finded_row>* {align-self: center;}
.finded_rows .item_name {
    font-size: 14px;
    color: #535c69;
    margin-left: 7px;
    white-space: nowrap;
}
.finded_rows .item_name.finded_val {margin-left: 0; background-color: #faf16d;}
.finded_rows .item_name.end_val {margin-left: 0;}
/* Окно, если значение не найдено */
.flex.column.finded_stub {
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100%;
}
.finded_stub .stub_icon {
    width: 70px;
    min-height: 70px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='101' height='101' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='.1' fill-rule='evenodd' clip-rule='evenodd' d='M65.09 77.214a41.847 41.847 0 01-23.046 6.874C18.824 84.088 0 65.264 0 42.044 0 18.824 18.824 0 42.044 0c23.22 0 42.044 18.824 42.044 42.044 0 8.51-2.528 16.428-6.874 23.047l21.853 21.852a6.602 6.602 0 010 9.336l-2.788 2.788a6.602 6.602 0 01-9.336 0L65.091 77.214zm6.985-35.17c0 16.586-13.445 30.031-30.031 30.031S12.013 58.63 12.013 42.044s13.445-30.031 30.03-30.031c16.587 0 30.032 13.445 30.032 30.03z' fill='%23525C69'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 76%;
}
.finded_stub .stub_msg {
    text-align: center;
    margin-top: 10px;
    color: #7f868d;
    font-size: 20px;
}
