#products_list_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 auto 0 auto;

    .product_con {
        width: 500px;
        height: 250px;
        outline: 1px solid white;
        display: flex;
        align-items: flex-end;
        outline: 1px solid black;
        line-height: 1;

        .product_image {
            background-size: contain;
            background-repeat: no-repeat;
            height: 250px;
            width: 300px;
            background-color: white;
        }

        .product_info {
            font-size: 16px;
            background-color: var(--object-main-color-dark);
            padding: 10px;
            width: 180px;
            height: 230px;
            display: flex;
            flex-direction: column;

            * {
                margin: 10px;
                overflow-wrap: anywhere;
                hyphens: auto;
            }

            .buy_button_container {
                background-color: black;
                position: absolute;
                margin-top: 140px;
                width: 170px;
                height: 80px;
                display: grid;
                grid-template-columns: 80px 80px;
                user-select: none;

                * {
                    margin: 5px;
                }

                .price {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 20px;
                    user-select: text;
                }

                .compare_button {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: rgb(117, 176, 34);
                    color: rgb(230, 230, 230);
                    border-radius: 1px;
                    width: 80px;
                    height: 30px;
                    font-size: 25px;
                    text-decoration: none;
                }

                .compare_button:hover {
                    background-color: rgb(120, 200, 25);
                    color: rgb(255, 255, 255);
                }

                .buy_button {
                    font-size: 16px;
                    background-color: rgb(117, 176, 34);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 1px;
                    height: 30px;
                    width: 160px;
                    color: rgb(230, 230, 230);
                    cursor: pointer;
                    text-decoration: none;
                    grid-column: span 2;
                }

                .buy_button:hover {
                    background-color: rgb(120, 200, 25);
                    color: rgb(255, 255, 255);
                }
            }


        }

    }
}