/* CUSTOM CSS */

/* L - XL from 1200 to 1439 > 1440 */
@media (min-width: 1024px) {
    .order-details-container .product-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 32px;
    }

    .order-details-container .product-feature {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }
}

/* M from 768 to 1199 */
@media (min-width: 768px) and (max-width: 1199px) {
    .order-details-container .product-title {
        font-size: 18px;
        font-weight: 700;
        line-height: 24px;
    }

    .order-details-container .product-feature {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }
}

/* S from 576 to 767 */
@media (min-width: 576px) and (max-width: 767px) {
    .order-details-container .product-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
    }

    .order-details-container .product-feature {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }
 
}

/* XS from 320 to 575 */
@media (min-width: 320px) and (max-width: 575px) {
    .order-details-container .product-title {
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
    }

    .order-details-container .product-feature {
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
    }
}

/* XXS from 280 to 319 */
@media (min-width: 280px) and (max-width: 319px) {
    .order-details-container .product-title {
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
    }

    .order-details-container .product-feature {
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
    }
}