.modalbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.modalbox.open {
  display: flex;
}

.backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-container {
  margin: 0px auto;
  max-width: 85%;
  max-height: 85%;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  animation: heightExpand 0.5s ease-in-out forwards;
  position: relative;
}

@keyframes heightExpand {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

.close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 20px;
  cursor: pointer;
  img {
    width: 30px;
  }
}

.content {
  display: flex;
  height: 100%;
  padding: 20px;
  display: none;
}
.contentShow {
  display: flex;
}

.modalcontentCtr {
  display: flex;
  align-items: center;
  overflow: auto;
  display: none;
}

.modalcontentCtr {
  display: flex;
  min-width: 100%;
}

.modalheading {
  color: var(--ih-primary);
  font-weight: 400;
  font-size: 1.8rem;
}
.modalctr1 {
  width: 60%;
  padding: 20px;
}

.modalctr1 p {
  color: var(--ih-dullgray);
  margin-top: 20px;
  font-size: 0.875rem;
  font-family: "myfont-light", sans-serif;
  line-height: 1.6rem;
}

.modalctr2 {
  margin: auto 0;
  padding: 50px;
  width: 40%;
}

@media only screen and (min-width: 1440px) {
  .modalCtr {
    width: 85vw;
  }
}
@media only screen and (max-width: 830px) {
  .content {
    padding: 10px;
  }
  .modalcontentCtr {
    flex-direction: column;
  }
  .modalctr1 {
    width: 100%;
    padding: 10px;
  }
  .modalctr2 {
    padding: 20px;
    padding-bottom: 0px;
    padding-top: 0px;
    width: 100%;
  }
  .mpdalCloseimg {
    width: 20px;
  }
  .closebtn {
    position: sticky;
    left: 93%;
    top: 20px;
    cursor: pointer;
    width: fit-content;
  }
}

@media only screen and (max-width: 400px) {
  .closebtn {
    position: sticky;
    left: 89%;
    top: 20px;
    cursor: pointer;
    width: fit-content;
  }
}
