.b-crumb{
    padding: 20px 5%;
}
.breadcrumb-item a{
    color: #000;
}
.products-list{
    margin: 20px 0px;
    padding: 0px 5%;
}
.product-box{
    border: 1px solid #b80169;
    padding: 5px;
}
.product-name{
    padding: 0.5rem;
    font-size: 14px;
    height: 100px;
}
.p-name{
    color: #000;
}
.price{
    color: #000;
    font-size: 12px;
}
del{
    color: red;
    font-size: 12px;
}
.products-list .product-box:hover{
    border: 1px solid #ff0191 ;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.371);
}
.cat-description{
    margin: 20px 0px;
    padding: 20px 5%;   
}
.cat-description input {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}
.cat-description .p {
    overflow: hidden;
    white-space: inherit;
    word-wrap: break-word;
    transition: max-height 0.5s ease;
    color: #444;
    text-overflow: ellipsis;
    max-height: 15rem;
    line-height: 1.75rem;
    font-size: 0.9rem;
    position: relative;
}
.cat-description .button {
    display: block;
    color: #b80169;
    cursor: pointer;
    user-select: none;
    margin: 15px 0 0 auto;
    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0.5s 0.5s;
    font-size: 16px;
}
.cat-description input:checked+.p {
    -webkit-line-clamp: unset;
    max-height: inherit !important;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.cat-description .p::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(253, 253, 253, 0.81) 68%); */
    height: 50%;
}
.cat-description .p.remove-after::after{
    content: unset !important;
}
.cat-description input:checked~.button {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
}