.modalImp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.48);
}

.modalImp.is-show {
  display: block;
}

.modalImp__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 546px;
  padding: 32px 38px 42px;
  border: 2px solid #FF1F89;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 0 #FF1F89;
}

.modalImp__txt {
  margin-bottom: 18px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  color: #121112;
}

.modalImp__btn {
  width: 320px;
  height: 48px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #FF1F89;
  box-shadow: 0 4px 0 #B91260;
  transition: 0.3s;
}

.modalImp__btn:hover {
  cursor: pointer;
  transform: translateY(4px);
  box-shadow: none;
  opacity: 1;
}
