.kfr-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}
.kfr-popup.active {
  display: block;
}
.kfr-popup.has-error .popup-content .error {
  display: block;
}
.kfr-popup .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  min-width: 1000px;
  max-width: 95%;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .kfr-popup .popup-content {
    min-width: 95%;
  }
}
.kfr-popup .popup-content .text {
  color: #565656;
}
.kfr-popup .popup-content .text a {
  color: #005ea8;
}
.kfr-popup .popup-content .error {
  color: #a83107;
  margin-top: 15px;
  display: none;
}
.kfr-popup .popup-content .buttons {
  text-align: right;
}
@media screen and (max-width: 992px) {
  .kfr-popup .popup-content .buttons {
    text-align: center;
    margin-top: 15px;
  }
}
.kfr-popup .popup-content .buttons a {
  display: inline-block;
  border-radius: 15px;
  padding: 5px 10px;
  border: 1px solid;
  margin-left: 10px;
  text-decoration: none;
}
.kfr-popup .popup-content .buttons a:first-child {
  background: #0f338a;
  color: #fff;
  border-color: #0f338a;
}
.kfr-popup .popup-content .buttons a:last-child {
  border-color: #444;
  color: #444;
}

.wp-admin .kfr-popup {
  position: static;
  display: block;
  background: none;
  border: 2px solid #f0f0f1;
  margin-bottom: 30px;
}
.wp-admin .kfr-popup:last-child {
  margin-bottom: 0;
}
.wp-admin .kfr-popup .popup-content {
  position: static;
  transform: translate(0, 0);
}
