.product-attribute-group {
    margin-bottom: var(--default-space-between);
}
.product-attribute-group:last-child {
    margin-bottom: 0;
}

.product-attribute-group-attributes {
    margin-top: -7px;
}

.product-attribute {
    padding-top: 7px;
    padding-bottom: 7px;
    border-bottom: 1px dotted var(--default-border-color);
}
.product-attribute:last-child {
    border-bottom-width: 0;
}
.product-attribute-inline {
    display: flex;
}
.product-attribute-inline label {
    min-width: 35%;
    padding-right: 10px;
    padding-bottom: 0px !important;
}
.product-attribute label {
    font-weight: 600;
    padding-bottom: 4px;
}

.product-attribute-description,
.product-attribute label i {
    margin-left: 2px;
}

.product-attribute-textarea input {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}
.product-attribute-textarea .product-attribute-value {
    display: -webkit-box;
    font-weight: normal;
    white-space: pre-wrap;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    padding-bottom: 0;
}
.product-attribute-textarea .product-attribute-value-read-more {
    display: none;
    margin-top: 6px;
    font-weight: normal;
    color: var(--link-color);
}
.product-attribute-textarea .product-attribute-value.truncated ~ .product-attribute-value-read-more {
    display: block;
}
.product-attribute-textarea input:checked ~ .product-attribute-value {
    -webkit-line-clamp: unset;
}
