.modal-myhunter {
  display: none;
  position: fixed;
  z-index: 1001;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  
}

.modal-myhunter-body {
  width: 100%;
  background-color: #fff;
  margin: auto;
  border: 1px solid #888;
  border-radius: 20px 20px 0px 0px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.modal-myhunter-container {
  padding: 50px 34px;
}

.close-modal {
  color: #3B69FF;
  font-size: 75px;
  font-weight: 200;
  line-height: 0.5;
  float: right;
  padding: 0 10px;
}

.close-modal:hover,
.close-modal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


@media (max-width: 900px) {
  .modal-myhunter-body.extended {
      width: 100%;
  }
}

@media (max-width: 600px) {
  .modal-myhunter-body {
      width: 100%;
  }
}