 .container-b {
            display: block;
            width: 100%;
            overflow-x: auto;
        }

        .flex-container-1 {
            display: inline-flex;
        }

        .image-alt {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }

        .card-product-oncare {
            display: flex;
            flex-direction: row;
            box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            margin: 10px;
            padding: 16px;
            width: 400px;
            gap: 16px;
        }

        .card-product-oncare .card-header {
            width: 40%;
        }

        .card-product-oncare .card-body {
            width: 60%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .text-op {
            margin: 8px 0px 0px 0px;
            line-height: 22px;
            font-weight: 700;
            font-size: 16px;
        }

        .price-op {
            margin: 0px 0px 0px 0px;
            font-weight: 900;
            color: #ffa500;
        }

        .mb-4 {
            margin-bottom: 1.5rem;
        }

        .btn-primary-6 {
            background-color: #27255f;
            color: white;
            border: none;
            padding: 8px 30px;
            border-radius: 5px;
        }
        .link-product-sps{
            text-decoration: none;
            color: #000000;
            cursor: pointer;
        }

        @media only screen and (max-width: 480px) {
            .card-product-oncare {
                flex-direction: column !important;
                width: 200px !important;
            }

            .card-product-oncare .card-header {
                width: 100%;
            }
            .card-product-oncare .card-body {
                width: 100% !important;
                min-height: 135px;
            }

            .text-op {
                margin: 5px 0px 16px 0px !important;
	     font-size:14px !important;
            }

            .price-op {
                margin: 0px 0px 16px 0px !important;
		font-size:15px !important;

            }

            .image-alt {
                transform: scale(1.09);
                margin-top:5px;
            }
        }