


*,::after,::before {
    box-sizing: border-box
}
 

.offer-card {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 15px;
    background: #fff;
    transition: box-shadow .15s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.offer-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.07);
}

.offer-image {
    text-align: center;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offer-image img {
    max-width: 190px;
    max-height: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.offer-header-line {
    background: #f8f9fa;
    border-left: 4px solid #c00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 6px 10px;
    margin-bottom: 10px;
}
.offer-header-line .price {
    color: #c00;
    font-weight: 700;
    white-space: nowrap;
}

.offer-title {
    font-size: 14px;
    line-height: 1.4;
    color: #222;
    font-weight: 500;
    margin: 0 0 10px 0;
}
.col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }
.col-lg-4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}
.col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }




    .container {
        max-width:1140px
    }
 .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}
 

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}
 


.offer-title a {
    color: #222;
    text-decoration: none;
}
.offer-title a:hover {
    text-decoration: underline;
}

.sku-line {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}
.unit-line {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.view-link a {
    font-size: 14px;
    text-decoration: none;
    color: #0056b3;
}
.view-link a:hover {
    text-decoration: underline;
}

/* spacing between cards */
.offer-col {
    margin-bottom: 30px;
}

/* page header */
.offers-page-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}
.offers-note {
    font-size: 14px;
    color: #777;
    margin-top: -10px;
    margin-bottom: 25px;
} 


@media (max-width: 768px) {

    .col-lg-4,
    .offer-col {
        flex: 0 0 100%;
        max-width: 97%;
        width: 98%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .offer-card {
        width: 100%;
    }

    .offer-image {
        min-height: 180px;
    }

    .offer-image img {
        max-width: 220px;
        max-height: 190px;
    }
}