.js-banner {
  transition: .4s;
  translate: 0 20px;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1000;
  bottom: 0px;
  right: 0px;
}
.js-banner.is_show {
  opacity: 1;
  visibility: visible;
  translate: 0 5px;
}

.c-banner {
  transition: all .5s;
}
.c-banner:hover {
  transform: translateY(-5px);
}
.c-banner:hover a {
  opacity: 1;
}
.c-banner a {
  width: 100%;
}
.c-banner__close {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  translate: -10px -10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-banner__close {
    translate: 0 -10px;
  }
}
.c-banner__close-btn {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #333;
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

/*# sourceMappingURL=add-style.css.map */
