.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  @include flex-align(center, center);
  .success {
    position: fixed;
    background: #fff;
    border-radius: 0.6rem;
    height: auto;
    width: 90%;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    @include flex-align(center, center);
    @include flex-direction(column);
    @include min(tablet) {
      width: 40%;
      top: 50%;
    }
    .closeBtn {
      position: absolute;
      top: 1rem;
      right: 1rem;
      cursor: pointer;
    }
    svg {
      width: 2.6rem;
      height: 2.6rem;
    }
    p {
      font-weight: 700;
    }
    div {
      padding-top: 1rem;
      p {
        padding-top: 2.45rem;
        font-weight: 700;
      }
    }
  }
}
