product-info-desc-tab{
    --product-table-columns:2;
}
product-info-desc-tab .product-info-desc-wrap{
    width: 100%;
}
product-info-desc-tab .product-info-desc-title{
    background: rgba(var(--color-button-background));
    color: rgba(var(--color-button-text));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 45px;
    cursor: pointer;
}
product-info-desc-tab > .block-heading{
    margin-bottom: 28px;
}
product-info-desc-tab .product-info-desc-table-section{
    background: rgba(var(--color-entry-line));
    border-radius: 5px;
    padding: 40px 0;
}
product-info-desc-tab .specs-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    justify-content: space-between;
    align-items: center;
    gap: 40px 20px;
}
product-info-desc-tab .specs-item{
    width: 100%;
}
product-info-desc-tab .specs-item > .block-richtext{
    margin-top: 10px;
}
product-info-desc-tab .product-info-desc-wrap.open .product-info-desc-content-section{
    margin-top: 20px;
}
product-info-desc-tab .product-info-desc-content-section{
    max-height: 0;
    overflow: hidden;
    
    transition: all 0.3s ease-out;
}
product-info-desc-tab .product-info-desc-content-section > .block-richtext{
    margin-top: 20px;
}
product-info-desc-tab .product-info-desc-wrap .accordion-icon{
    transition: all 0.3s ease-out;
}
product-info-desc-tab .product-info-desc-content-section.open .accordion-title .icon-minus{
    display: block;
}

product-info-desc-tab .product-info-desc-content-section.open .accordion-title .icon-plus{
    display: none;
}

product-info-desc-tab .product-info-desc-content-section.open {
    margin-bottom:40px;
}
product-info-desc-tab .product-info-desc-wrap.open .accordion-icon{
    transform: rotate(180deg);
}
product-info-desc-tab .product-info-desc-wrap.open{
    margin-bottom: 20px;
}
product-info-desc-tab .product-info-desc-parameter{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: #fff;
    padding: 40px 45px;

}
product-info-desc-tab .product-info-desc-parameter-table{
    padding: 30px 45px;
    border-radius: 5px;
    background: #F7F7F7;
}
product-info-desc-tab .parameter-table-heading{
    display: grid;
    grid-template-columns: 40% repeat(var(--product-table-columns), minmax(0, 1fr));
    gap: 20px;
}
product-info-desc-tab .parameter-table-content{
    gap: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
product-info-desc-tab .parameter-table-row{
    display: grid;
    grid-template-columns: 40% repeat(var(--product-table-columns), minmax(0, 1fr));
    gap: 20px;
}
product-info-desc-tab .parameter-table-row {
    counter-increment: cell-counter; 
}
product-info-desc-tab .parameter-table-cell {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
product-info-desc-tab .parameter-table-row .parameter-table-cell:first-child:before {
    content: counter(cell-counter, upper-alpha);
    margin-right: 12px;
    display: block;
    padding-top: 2px;
}
product-info-desc-tab .parameter-table-cell strong{
  font-size:var(--h6-font-size);
  line-height:var(--h6-line-height);
  font-family: var(--title-font);
  font-weight: 600;
}
@media(max-width:959px){
    product-info-desc-tab .product-info-desc-content-section.open {
        margin-bottom:5.3333vw;
    }
    product-info-desc-tab .product-info-desc-content-section .accordion-title{
        padding-block: 2.4vw;
    }
    product-info-desc-tab > .block-heading{
        margin-bottom: 5.5vw;
    }
    product-info-desc-tab .product-info-desc-title{
        padding: 2.4vw 6vw
    }
    product-info-desc-tab .specs-container{
        gap: 8vw 3vw;
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
        padding: 0 5vw;
    }
    product-info-desc-tab .product-info-desc-parameter{
        grid-template-columns: auto;
        padding: 25px;
    }
    product-info-desc-tab .product-info-desc-parameter-table{
        padding: 0;
        background: #ffffff;
    }
    product-info-desc-tab .product-info-desc-parameter-image{
        order: -1;
    }
    product-info-desc-tab .specs-item > .block-richtext{
        margin-top: 10px;
    }
}