.c-like-popup {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-like-popup.is-active {
  opacity: 1;
  pointer-events: initial;
}
.c-like-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8 !important;
}
.c-like-popup__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  background: #fbf6ee;
  box-shadow: 0 22px 34px -20px rgba(0, 0, 0, 0.75);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 991.98px) {
  .c-like-popup__container {
    padding: 20px;
    width: 320px;
  }
}
.c-like-popup__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.c-like-popup__image img {
  width: 50px;
}
.c-like-popup__text {
  text-align: center;
  text-wrap: balance;
  margin: 32px 0;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.56;
  color: #000;
}
.c-like-popup__text strong {
  font-weight: 600;
}
.c-like-popup__close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background-color: #ff6600;
  border-radius: 50%;
  display: block;
  opacity: 1 !important;
}
.c-like-popup__close:before, .c-like-popup__close:after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 1px;
  height: 60%;
  top: 20%;
  left: 48%;
}
.c-like-popup__close:before {
  transform: rotate(45deg);
}
.c-like-popup__close:after {
  transform: rotate(-45deg);
}
.c-like-popup .o-button__orange {
  margin: 0 auto;
}