.ip-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -200;
  display: flex;
  align-items: center;
  transition: opacity 0.3s, z-index 0s 0.3s;
  opacity: 0;
}
.ip-modal.show {
  opacity: 1;
  z-index: 2000;
}
.ip-modal:after {
  content: "";
  position: fixed;
  background-color: #000;
  opacity: 0.4;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -5;
}
.ip-modal__header {
  position: relative;
  padding-top: 10px;
  background-color: #08f2af;
}
.ip-modal__header-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  display: block;
}
.ip-modal__header-close i {
  position: absolute;
  left: 16px;
  top: 11px;
  color: #008f85;
}
.ip-modal__header-close:hover {
  cursor: pointer;
}
.ip-modal__body {
  padding: 23px 20px 1px;
}
.ip-modal__body-title {
  font-weight: 700;
  margin-bottom: 12px;
}
.ip-modal__body--primary {
  background-color: #08f2af;
  color: #008f85;
}
.ip-modal__body--primary a {
  color: #008f85;
}
.ip-modal__body--secondary {
  background-color: #008f85;
  color: #fff;
}
.ip-modal__body--secondary a {
  color: #fff;
}
.ip-modal__body a {
  font-weight: 700;
  text-decoration: underline;
}
.ip-modal__body a:hover {
  text-decoration: none;
}