.widget_product__specifications {
    margin: 20px 0;
    
    .sidebar-title .header-title {
        text-align: left;
    }
}

.specifications-box {
    margin-bottom: 20px;
}

.specifications-row-heading {
    width: 100%;
    position: relative;
    margin: 0px;
    border-style: none;
    padding: 15px 10px;
    color: #000;
    font-weight: 600;
    overflow: hidden;
    display: flex;
    transition: color 0.3s ease 0s;
    background: #f5f5f7;

    &:not(.active) + .specifications-list {
        display: none;
        overflow: hidden;
    }

    &::after {
        content: '';
        width: 16px;
        height: 2px;
        background: #000;
        border-radius: 2px;
        position: absolute;
        right: 14px;
        top: 50%;
    }

    &::before {
        content: '';
        width: 2px;
        height: 16px;
        background: #000;
        border-radius: 2px;
        position: absolute;
        right: 21px;
        top: 18px;
    }

    &.active::before {
        display: none;
    }

    h3 {
        color: #000;
        font-size: 15px;
        line-height: 20px;
        font-weight: 600;
        margin: 0;
    }
}

.specifications-row-text {
    display: flex;
    padding: 20px 10px;
    border-bottom: 1px solid #e5e7eb;

    &:last-child {
        border-bottom: 0;
        padding: 20px 10px 0;
    }

    &.hidden {
        display: none;
    }

    a {
        display: block;
        color: var(--theme-color-2);
    }

    .specifications-column {
        border-style: none;
        border-width: 1px;
        border-color: unset;
        opacity: 1;
        font-weight: 400;
        text-decoration: unset;
        font-size: 15px;
        line-height: 20px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: unset;
        max-width: unset;
        min-width: unset;
        transition: color 0.3s ease 0s;
        color: #000;
    }
}
