/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* responsive banner begin */ 
.product_ad {
  width: 100%;
  border-style: solid;
  border-width: medium;
  margin-bottom: 1.6em;
}

.product_ad a {
  text-decoration: none;
  color: black;
}

.product_ad .head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  align-items: flex-end;
  padding: 1rem 1rem 0 0;
}

.product_ad .head .title {
 font-size: 1.2rem;
 padding: 0 0 1rem 1rem;
}

.product_ad .head .shoplogo {
 max-height: 3rem;
 padding: 0 0 1rem 1rem;
}

.product_ad .body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 1rem;
  clear: both;
}

.product_ad .body .product_img {
  width: 100%;
}

.product_ad .body .description {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 0 0 0 0;
  margin-top: 1rem;
}

.product_ad .body .description .details {
  color: #333333;
  width: 100%;
}

.product_ad .body .description .product_price_wrapper{
  width: 100%;
  text-align: right;  
}

.product_ad .body .description .product_name {
  font-size: 1.2rem;
  padding: 0.5rem 1rem 0.5rem 0;
  font-weight: bold;
  color: #333;
}

.product_ad .body .description .product_price {
  white-space: nowrap;
  padding: 0.5rem 0;
}

.product_ad .body .description .product_price .current {
  font-size: 1.2rem;
  font-weight: bold;
}

.product_ad .body .description .product_price .old {
  text-decoration: line-through;
  font-size: 1rem;
}

.product_ad .body .description .product_price .save {
  font-size: 1.2rem;
  background: #7fda69;
  padding: 0 0.5rem;
}

.product_ad .body .description .product_price .check {
  width: 100%;
  font-size: 1.2rem;
  padding: 5px 7px;
  color: #fff;
  background: #d7471f;
}

.product_ad .body .description .product_price .check:hover {
  background: #d87357;
}

.product_ad .trust_badges {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1rem 0 0rem;
  background: #eee;
  text-align: center;
}

.product_ad .trust_badges img {
  padding: 1rem 0 1rem 1rem;    
  max-width: 250px;
  width: 28%;
  height: auto;
  opacity: 0.8;
}

@media screen and (max-width: 600px) {
  .product_ad .trust_badges img  {
    width: 50%;
  }
}
/* responsive banner end */

/* affiliate button begin */
.cc-affiliatebutton {
  color: #fff;
  background-color: #c7370f;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-sizing: content-box;
  transition: all .2s;
  margin-bottom: 0;
  border: 1px solid #000 !important;    
}

.cc-affiliatebutton:hover {
  background-color: #d7471f;
}

.cc-affiliatebutton span {
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  border-color: #d87357;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  text-shadow: none;
  -moz-text-shadow: none;
  -webkit-text-shadow: none;
  
  display: block !important;
  text-decoration: none!important;
  box-sizing: content-box!important;
  transition: all .2s;
    
  padding: 5px 8px;    
}
/* affiliate button end */ 