body.fixed {
  overflow: hidden;
}

.doctor-modal {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
}
.doctor-modal .modal-bg {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
}
.doctor-modal .modal-content {
  max-height: 90vh;
  width: 60%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.doctor-modal .modal-content .dmodal-close {
  cursor: pointer;
  height: 45px;
  width: 45px;
  text-align: center;
  border-radius: 50%;
  background: #666;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(40%, -40%);
          transform: translate(40%, -40%);
}
.doctor-modal .modal-content .dmodal-close:before {
  content: "\f00d";
  font-size: 24px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  line-height: 45px;
}
.doctor-modal .modal-content .inner-wrap {
  max-height: calc(90vh - 80px);
  overflow-y: scroll;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .doctor-modal .modal-content {
    width: 80%;
  }
  .doctor-modal .modal-content .dmodal-close {
    height: 40px;
    width: 40px;
  }
  .doctor-modal .modal-content .dmodal-close:before {
    font-size: 20px;
    line-height: 40px;
  }
  .doctor-modal .modal-content .inner-wrap {
    max-height: calc(90vh - 30px);
    padding: 15px;
  }
}
@media screen and (max-width: 480px) {
  .doctor-modal .modal-content {
    width: 90%;
  }
}