.property__container {
    background-color: var(--main-background-color);
    border-radius: 10px;
    color: var(--main-text-color);
}

.property {
    margin-bottom: 1rem;
}

.prop-string {
    display: flex;
    flex-wrap: wrap;
}

.property__unGroup,
.property__group {
    flex: 1 0 50%;
    width: 50%;
}

.property__title {
    font-weight: 500;
    font-size: 2.6rem;
    color: var(--main-text-color);
}

.property__unGroup-title,
.product-page__table-name.name-group {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 500;
    margin: 4rem 0 3rem;
    color: var(--main-text-color);
}

.prop-name__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: none;
}

.prop-name__inner::after {
    content: "";
    display: block;
    border-bottom: 1px dashed #D7DBE9;
    -ms-flex: 1;
    flex: 1;
    margin: 0 0 0 0.5rem;
    position: relative;
    top: 0.4rem;
}

.product-page__table-name {
    color: #BDC2D3;
    font-size: 1.4rem;
    font-weight: 400;
    flex: 1 0 50%;
    padding: 0 0.5rem 0 0;
}

.property .prop-spec {
    font-size: 1.4rem;
    font-weight: 400;
    flex: 1 0 50%;
    padding: 0 0.5rem;
}

.property .product-page__table-item {
    align-items: flex-start;
}

@media (max-width: 768px) {
    .prop-string {
        flex-direction: column;
    }
    .property__unGroup, .property__group {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .property .product-page__table-item {
        flex-direction: column;
    }
}