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

.modal-content {
  background-color: #fff;
  margin: 14% auto;
  padding: 20px 20px 20px 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 700px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  overflow-y: auto;
  max-height: 80vh;
  z-index: 10000;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.terms-text {
  margin-top: 20px;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (min-width:768px) {
  .modal-content {
  margin: 4% auto;
  width: 85%;
}

}