﻿.gap-5 {
    gap: 5px;
}
.after_line {
    position: relative;
}
.wraper_line .after_line:last-child::after {
    display: none;
}
.border_st{
    border-left: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
}
.after_line>.border_st:nth-child(odd){
    border-left: none;
}

.after_line>.border_st:nth-child(4){
    border-bottom: none;
}

.after_line>.border_st:nth-child(5){
    border-bottom: none;
}
.ItemCategoryProduct{
    border: 0.1rem solid var(--grey);
}

@media(min-width:1200px){
    .after_line::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        height: 100%;
        transform: translateY(-50%);
        width: 1px;
        background-color: var(--grey);
    }
 
}

