.orderoffer_products {
    float: left;
    margin: 0;
    width: 50%;
}

.orderoffer_product {
    margin: 10px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.orderoffer_product:hover {
    background-color: #E6EDFF;
    cursor: pointer;
    cursor: hand;
}

.orderoffer_product .orderoffer_pricing {
    float: right;
    text-align: right;
    font-family: Lucida Sans Unicode,Lucida Grande,sans-serif;
    font-size: 18px;
    line-height: 20px;
}

.orderoffer_product .orderoffer_name {
    font-family: Lucida Sans Unicode,Lucida Grande,sans-serif;
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 10px;
}

.orderoffer_product .orderoffer_prodfeature {
    float: left;
    margin: 5px 5px 0 0;
    padding: 5px 10px 5px 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    text-align: center;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-size: 20px;
    color: #ff6600;
}

.orderoffer_product .orderoffer_prodfeature .orderoffer_feature {
    font-size: 13px;
    color: #666;
}

.orderoffer_product .orderoffer_description {
    font-size: 0.9em;
}

.orderoffer_product .orderoffer_ordernowbox {
    margin: 15px 0 0 0;
    text-align: right;
}

.orderoffer_ordernow {
    margin: 5px;
    padding: 6px 10px 6px 10px;
    background-color: #fff;
    border: 1px solid #AADD64;
    color: #7BB928;
    font-size: 16px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.orderoffer_strikethrough {
  position: relative;
}
.orderoffer_strikethrough:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid;
  border-color: inherit;

  -webkit-transform:rotate(-5deg);
  -moz-transform:rotate(-5deg);
  -ms-transform:rotate(-5deg);
  -o-transform:rotate(-5deg);
  transform:rotate(-5deg);
}