#page .floating_wrapper {
  display: none;
}

#page .floating_wrapper #floating_banner {
  width: calc(100% - 32px);
  position: fixed;
  bottom: 0;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 16px;
}

#page .floating_wrapper #floating_banner .close {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid;
  position: absolute;
  top: -12px;
  right: -12px;
}

@media screen and (min-width: 767px) {
  #page .floating_wrapper #floating_banner {
    width: 200px;
    height: 200px;
    -webkit-transform: none;
            transform: none;
    left: auto;
    right: 24px;
    bottom: 24px;
  }
  #page .floating_wrapper #floating_banner a {
    display: block;
    position: relative;
  }
  #page .floating_wrapper #floating_banner a:hover::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: 0;
  }
  #page .floating_wrapper .close {
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
  }
  #page .floating_wrapper .close:hover {
    cursor: pointer;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/*# sourceMappingURL=stack-floating-banner.css.map */