﻿.listing-container {
    margin-top: 25px;
    margin-bottom: 25px;
}

    .listing-container .elements {
        display: flex;
        flex-wrap: wrap;
    }

        .listing-container .elements .item {
            width: 284.71px;
            padding: 16px;
            border-radius: 4px;
            background: var(--Light-theme-Rest-Background-Default-Background, #FFF);
            box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px 0px rgba(0, 0, 0, 0.14);
            margin-right: 32px;
            margin-bottom: 27px;
        }

            .listing-container .elements .item .item-content {
            }

                .listing-container .elements .item .item-content .information-row {
                    line-height: normal;
                    display: flex;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-line-clamp: 1;
                    -webkit-box-orient: vertical;
                }

                    .listing-container .elements .item .item-content .information-row:first-child {
                        margin-bottom: 2px;
                    }

                    .listing-container .elements .item .item-content .information-row label {
                        font-size: 12px;
                        font-weight: 400;
                        margin-bottom: 0px;
                    }

                    .listing-container .elements .item .item-content .information-row span {
                        font-size: 12px;
                        font-weight: 400;
                        font-weight: bold;
                    }

                    .listing-container .elements .item .item-content .title-row {
                    }

                        .listing-container .elements .item .item-content .title-row label {
                            font-size: 14px;
                        }

                        .listing-container .elements .item .item-content .title-row span {
                            font-size: 14px;
                        }

                .listing-container .elements .item .item-content .subtitle-row {
                }

                    .listing-container .elements .item .item-content .subtitle-row label {
                        color: var(--Light-theme-Rest-Foreground-Default-Foreground-2, #616161);
                        font-size: 11px;
                    }

                    .listing-container .elements .item .item-content .subtitle-row span {
                        color: var(--Light-theme-Rest-Foreground-Default-Foreground-2, #616161);
                        font-size: 11px;
                    }

                .listing-container .elements .item .item-content .information-row .d-tooltip-head {
                    font-size: 12px;
                    font-weight: 400;
                    font-weight: bold;
                    cursor: pointer;
                }

                .listing-container .elements .item .item-content .information-row .d-tooltip-body {
                    display: flex;
                    flex-flow: column;
                }


@media (max-width: 1024px) {

}

@media (max-width: 700px) {
    .listing-container .elements {
        flex-flow: column;
        flex-wrap: nowrap;
    }

        .listing-container .elements .item {
            margin-right: 0px;
            width: 100%;
        }

    .filter-container input {
        width: 100%;
    }
}