.flotebox {
  max-width: 1200px;
  margin: 0 auto;
}
/*
.button {
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 0.5em 0;
  width: 400%;
  display: block;
  border-radius: 100vw;
  background-color: orange;
  cursor: pointer;
}*/

.floatbannerbox {
  position: fixed;
  bottom: 11%;
  right: 0;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
   z-index: 25;
}
.floatbannerbox.close {
  transform: translateX(110%);
  transition: all 500ms 0s ease;
}
.floatbannerbox .close-button {
  text-align: center;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  background-color: #d3d3d3;
  border-radius: 50%;
  border:3px solid #ffffff;
  transform: translate(-10px, -10px);
}
.floatbannerbox .close-button span {
  position: relative;
}
.floatbannerbox .close-button span:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 14px;
  height: 2px;
  background-color: #ffffff;
}
.floatbannerbox .close-button span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 14px;
  height: 2px;
  background-color: #ffffff;
}

.floatbnrimg {
  width: 100%;
  font-size: clamp(100pxpx, 12.5vw, 40%);
  height: auto;
  display: block;
}

.floatbanner__inner {
  text-align: center;
}