@media (max-width: 400px) {
    .catalog-items .item {
        flex-grow: 1 !important;
    }
    .catalog-section .item .images-item {
        height: 225px !important;
    }
}
.catalog-section-header{
    font-size:14px;
    font-weight: bold;
    text-align: left;
    margin:5px 0;
    padding:5px 15px;
    border-bottom: 2px solid #d9dee6;
    color: #000;
}
.catalog-items {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    column-gap: 10px;
}
.catalog-section .item {
    display: flex;
    flex-flow: wrap;
    /*height: 340px;*/
    cursor: pointer;
    border: #0519481c solid 1px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 10px;
    position: relative;
}
.catalog-section .item .descript-item {
    padding: 5px;
}
.catalog-section .item .link-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-basis: 100%;
}
.catalog-section .item:hover {
    background: #0519481c;
}
.catalog-section .item:hover .images-item{
    opacity: 0.5;
}

.catalog-section .item .images-item {
    display: flex;
    flex-wrap: wrap;
    /*height: 191px;*/
    height: calc(47px + 65 * (193vw / 1920));
    flex-direction: column;
    justify-content: space-between;
    flex-basis: 100%;
    position: relative;
    overflow: hidden;
}
.catalog-section .item .images-item img {
    display: block;
    max-width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
.catalog-section .item .images-item .icon_top{
    width: 107px;
    margin: 3px;
    color: #fff;
    justify-content: center;
}
.catalog-section .item .images-item .icon.blue {
    background: blue;
}
.catalog-section .item .images-item .icon.green {
    background: green;
}
.catalog-section .item .images-item .icon_top,
.catalog-section .item .images-item .title-item {
    display: flex;
    font-size:15px;
}
.catalog-section .item .images-item .icon_top{
    align-items: flex-start;
    z-index: 1;
    flex-flow: column;
}
.catalog-section .item .images-item .icon_position,
.catalog-section .item .images-item .icon {
    width: 100px;
    align-items: center;
    display: flex;
    flex-flow: column;
    z-index: 1;
    margin-bottom: 3px;
}
.catalog-section .item .images-item .icon_position.yellow{
    background: #0d6efd;
}
.catalog-section .item .images-item .title-item{
    align-items: flex-end;
    background: url(/local/templates/laz2/images/wdh-bg.png) repeat;
    width: 100%;
    padding: 8px;
    color: #fff;
    z-index: 1;
}
.catalog-section .item .price-item, .catalog-section .item .address-item {
    font-size: 14px;
    color: #8d8d8d;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bs-primary) !important;
}
.favorite {
    right: 10px;
    top: 6px;
    z-index: 1;
    position: absolute;
    border-radius: 25px;
    background: #fff;
    text-align: center;
    width: 26px;
}

.favorite svg path {
    fill: #fff;
    stroke: #646464;
    stroke-width: 1px;
}
.favorite.active svg path {
    fill: red;
}