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

.modal-content {
  display: none;
  background-color: #fefefe;
  margin: 5% auto;
  width: 100%;
  max-width: 500px;
  /* display: flex; */
  height: 75%;
  flex-direction: column;
  border-radius: 15px;
  padding: 30px;
}

@media screen and (max-width: 800px) {
  .modal-content {
    margin: 0% auto;
    padding: 0px;
    width: 100%;
    display: flex;
    max-width: auto;
    height: 100%;
    flex-direction: column;
    border-radius: 0px;
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

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

iframe {
  flex-grow: 1;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 15px;
}

.lendsqr-button {
  background-color: #008b8a;
  border: none;
  color: white;
  padding: 12px 16px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-width: 150px;
}
