.modalWrapper {
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 16px;
  z-index: 6;
}
.iti {
  width: 100%;
}
.modalWrapper-active {
  display: flex !important;
  animation: modal 0.2s ease-in-out forwards;
}

.modalBody {
  position: relative;
  padding: 32px;
  max-width: 712px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background-color: white;
  padding: 128px 152px;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-box-shadow: -1px 5px 45px 0px #000000;
  box-shadow: -1px 5px 45px 0px #000000;
}

.modalBody h1 {
  color: #000;

  text-align: center;

  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 56px;
}
.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.modalButton {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  text-align: center;
}
.acceptButton {
  background: darkolivegreen;
  color: white;
}
.declineButton {
  background: white;
  border: 1px solid black;
}
.discleimer {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 5px;

  margin-bottom: 72px;
}
.discleimer img {
  transform: translateY(5px);
}
@media (max-device-width: 1400px) {
  .modalBody {
    padding: 40px 80px;
  }
}

@media (max-device-width: 860px) {
  .modalBody h1 {
    color: #000;
    text-align: center;

    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 140% */
  }
}
@media (max-device-width: 650px) {
  .buttons {
    flex-direction: column;
  }
  .modalButton {
    width: 100%;
    max-width: unset;
  }
  .modalBody {
    padding: 40px 20px;
  }
}

@keyframes modal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
