.changePropertiesNoGroup {
    padding-top: 16px;
}

.propertyTable--pipe {
    display: block !important;
    padding-top: 16px;
    padding-bottom: 16px;
}

.propertyTable--pipe .propertyName {
    display: block !important;
    width: 100% !important;
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
}

.propertyTable--pipe .propertyValue {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
}

.propertyPipeList {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px 24px;
}

.propertyPipeList li {
    position: relative;
    padding-left: 18px;
    line-height: 1.45;
    color: #333;
}

.propertyPipeList li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(44, 46, 117, 1);
}

@media (min-width: 1200px) {
    .propertyTable--pipe .propertyPipeList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .propertyTable--pipe {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .propertyPipeList {
        gap: 6px;
    }

    .propertyPipeList li {
        line-height: 1.4;
    }
}