#products, #product_detail {
    padding-top: 4.5rem;
    background: #f8f8ffe0;
}
#products .card.prdt_bg {
    position: relative;
    width: 100%;
    height: 40%;
    border-radius: 50px 50px 0 0;
}
#products .card.prdt_bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    background-color: white;
}
#products .row .card {
    box-shadow: 0px 0px 4px 0px #00000040;
}
#products .card:hover {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
#products .card img {
    object-fit: cover;
    height: 200px !important;
}
.table_values {
    width: max-content;
}
p {
    line-height: 2!important;
}
.prdt_decrt {
    height: 400px;
    overflow-y: scroll;
}
@media(min-width: 600px) and (max-width: 1024px) {
    #products, #product_detail {
        padding-top: 5rem;
    }
    .prdt_decrt {
        height: 300px;
        overflow-y: scroll;
    }
}
@media (max-width: 600px) {
    #products, #product_detail {
        padding-top: 4rem;
    }
}