.bfcm-popup {
  display: none;
  z-index: 9999;
  position: fixed;
  bottom: 20px;
  right: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.bfcm-popup a {
  display: inline-block;
  border-radius: 50%;
}
.bfcm-popup.open {
  display: block;
}
.bfcm-popup .bfcm-close-popup {
  position: absolute;
  top: 0;
  right: 80px;
  background: rgba(0, 0, 0, 0.5);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  z-index: 999;
  cursor: pointer;
  transition: 0.2s linear;
}
.bfcm-popup .bfcm-close-popup:hover {
  background: black;
  color: white;
}
.bfcm-popup .bfcm-close-popup i {
  font-size: 13px;
}
.bfcm-popup picture {
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 760px) {
  .bfcm-popup {
    width: 500px;
  }
  .bfcm-popup .bfcm-close-popup {
    right: 35px;
  }
}
@media (max-width: 550px) {
  .bfcm-popup {
    width: 350px;
  }
  .bfcm-popup .bfcm-close-popup {
    top: -10px;
    right: 20px;
  }
}
@media (max-width: 360px) {
  .bfcm-popup {
    width: 300px;
  }
  .bfcm-popup .bfcm-close-popup {
    top: 0;
    right: 0;
  }
}

.bfcm-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.bfcm-popup-overlay.active {
  display: block;
}

.bfcm-wrapper {
  z-index: 9999;
}