/* Shared */
.notification__btn {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  background: #3f3f3f;
  padding: 5px 15px;
  border: 2px solid #3f3f3f;
}

.notification__btn:hover {
  background: none;
  color: #3f3f3f;
}

.notification__btn--red {
  color: #fff;
  background: #ea4f36;
  padding: 5px 15px;
  border: 2px solid #ea4f36;
  margin: 0;
}

.notification__btn--red:hover {
  background: none;
  color: #ea4f36;
}

/* Slide down Notification */
.notification-bar__wrap {
  text-align: center;
  background: #fffdc8 url("/media/GlobalImages/diag-fill.png");
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  color: #000;
  -webkit-box-shadow: 0px 8px 8px 0px rgba(50, 50, 50, 0.5);
  -moz-box-shadow:    0px 8px 8px 0px rgba(50, 50, 50, 0.5);
  box-shadow:         0px 8px 8px 0px rgba(50, 50, 50, 0.5);
  display: none;
  z-index: 3008;
  margin: 0;
  padding: 0;
}

.notification-bar__badge {
  display: inline-block;
  vertical-align: middle;
  padding: 20px;
}

.notification-bar__msg {
  display: inline-block;
  vertical-align: middle;
}

.notification-bar__dismiss {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.25);
  position: relative;
}
.notification-bar__dismiss:hover {
  background-color: rgba(0,0,0,0.5);
}

.notification-bar__dismiss:after {
  content: 'x';
  position: absolute;
  font-size: 1.5em;
  top: 0;
  left: 10px;
  color: #000;

}

/* Product ad */
.product-ad {
  position: relative;
  text-align: center;
  max-width: 200px;
}

.product-ad__wrap {
  margin-top: 50px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  background: #f0f0f0;
  padding-bottom: 20px;
}

.product-ad__badge {
  margin-top: -50px;
  padding:  5px 10px;
}

.product-ad__msg {
  font-size: 15px;
  color: #ea4f36;
  margin-top: 0;
}

/* Main Ad */
.main-ad {
  max-width: 400px;
  position: static;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  background: #f0f0f0;
  padding: 15px;
}

.main-ad__title {
  font-size: 18px;
  color: #ea4f36;
  margin: 0;
}
.main-ad__msg {
  font-size: 15px;
}

