#wcob-bump {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#wcob-bump.wcob-bump-active {
  display: block;
}
.wcob-bump-bg {
  width: 100%;
  height: 100%;
  background: rgba( 0,0,0,0.3 );
}
.wcob-bump-inner {
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 2px 50px rgb(0 0 0 / 40%);
  box-shadow: 0 2px 50px rgb(0 0 0 / 40%);
  max-width: 860px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation-name: fadein;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}
.wcob-header {
  position: relative;
  padding: 1rem 2rem;
  background: #2d46da;
}
.wcob-header h2 {
  margin: 0;
  color: #fff;
}
.wcob-close {
  position: absolute;
  right: -2rem;
  top: 0;
  font-size: 20px;
  color: #fff;
  width: 20px;
  cursor: pointer;
  text-align: right;
}
.wcob-content {
  padding: 2rem;
  position: relative;
}
.wcob-product-outer {
  display: flex;
  flex-wrap: wrap
}
.wcob-product-wrapper {
  width: 33.3%;
  margin-bottom: 2rem
}
.wcob-product-thumb,
.wcob-product-title {
  text-align: center;
}
.wcob-product-thumb img {
  max-width: 95%;
  display: inline
}
.wcob-product-title h3 {
  font-size: 1rem;
  line-height: 1
}
@media screen and (min-width: 960px) {
  .wcob-product-add-to-cart {
    display: flex;
    justify-content: center;;
    gap: 10px
  }
}
.wcob-footer {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
}
.wcob-content .woocommerce-message {
  margin-bottom: 2rem
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100%  {
    opacity: 1;
  }
}
