.modal-wrap {
  background-color: rgba(0, 0, 0, 0.5);
  color: #2b2b2b;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.modal-inline {
  background-color: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  line-height: 2;
  padding: 80px 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  max-width: 480px;
}

.modal-close {
  cursor: pointer;
  height: 30px;
  position: absolute;
  top: -35px;
  right: 0;
  width: 30px;
}

.modal-close::before {
  border-left: 1px solid #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(10.5px, 10.5px) rotate(45deg);
  width: 100%;
}

.modal-close::after {
  border-bottom: 1px solid #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(10.5px, -10.5px) rotate(45deg);
  width: 100%;
}