@charset "utf-8";

.app_floatingBanner {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  z-index:999999999;
}

.app_floatingBanner p{
  margin-bottom:0;
}

.app_floatingBanner.active{
  opacity:0;
  visibility:hidden;
  z-index:-1;
}

.app_floatingBanner.js_close {
  display: none;
}
.app_floatingBanner_img {
  display: block;
  transition: 0.3s;
}
.app_floatingBanner_img img{
  vertical-align:top;
}
.app_floatingBanner_close {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: -15px;
  cursor: pointer;
}
.app_floatingBanner_close span:nth-of-type(1) {
  position: absolute;
  top: 6px;
  right: 9px;
  width: 25px;
  height: 2px;
  background-color: #000;
  transform: rotate(45deg);
}
.app_floatingBanner_close span:nth-of-type(2) {
  position: absolute;
  top: -5px;
  right: 21px;
  width: 2px;
  height: 25px;
  background-color: #000;
  transform: rotate(45deg);
}