.popup {
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 98;
  display: block;
}
.popup__inner {
  height: 130px;
  width: 130px;
  padding: 30px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.popup__close {
  position: absolute;
  top: -5px;
  right: -5px;
  cursor: pointer;
  color: #c1c1c1;
  /* height: 30px;
  width: 30px;
  background-color: red; */
  z-index: 99;
  transform: scale(0.8);
  transition: 600ms cubic-bezier(0.455, 0.030, 0.515, 0.955);
}
.popup__close:hover {
  transform: scale(1);
}
.popup__close:after {
  /* copied from _fonts.scss */
  font-family: 'icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  content: "\e909";
}
@media (max-width: 991px) {
  .popup {
    bottom: 15px;
    right: 15px;
  }
  /* .popup__inner {
    height: 150px;
    width: calc(100vw - 30px);
  } */
}

@media (max-width: 767px) {
  .back-to-top {
    display: none !important;
  }
}
