.simple-table-title {
	font-weight: bold;
	line-height: 1.25;
}
.simple-table > div {
    padding: 12px;
}
.simple-table > div:nth-child(3n) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.simple-table > div:nth-child(6n+1),
.simple-table > div:nth-child(6n+2),
.simple-table > div:nth-child(6n+3) {
    background-color: #fff;
}
.simple-table > div:nth-child(6n+4),
.simple-table > div:nth-child(6n+5),
.simple-table > div:nth-child(6n+6) {
    background-color: #f2f2f2;
}
.price-link a {
    display: inline-block;
    color: #333;
    font-weight: bold;
	margin-bottom: 15px;
}
.price-link a,
.price-link a:hover {
    border: 0;
    transition: background-color .2s ease-in;
}
.price-link a {
    white-space: nowrap;
    padding: 3px 12px;
    border-radius: 2px;
    background-color: #f0c14b;
}
@media (max-width: 40em) {
    .price-link a {
        white-space: inherit;
        text-align: center;
    }
}

.price-link a:hover {
    color: #333;
    background-color: #db9e36;
}
.simple-table {
    display: grid;
    max-width: 950px;
    padding: 10px;
    background-color: #f0f8ff;
    grid-template-columns: 1fr 2fr 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    box-shadow: 0 0 5px 0 #f0c14b;
    border: 2px solid #db9e36;
	padding: 10px;
	margin-top: 30px;
	margin-bottom: 30px;
}
.simple-table .price-link a {
    display: block;
    text-decoration: none;
}
@media (max-width: 40em) {
    .simple-table {
        display: block;
    }
}
.product-image {
    text-align: center;
}
@media (max-width: 40em) {
    .product-image {
        margin-top: 1em;
    }
}
.simple-table-text {
    display: block;
    font-size: 80%;
    line-height: 1.6em;
    margin-top: 5px;
}

.inline-label {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    background-color: #333;
    padding: 0 12px;
    border-radius: 3px;
    font-size: .8em;
    line-height: 2em;
}