/*! modal start */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: -100%;
  /* top: 50%; */
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: top 0.7s ease;
}

.modal-content {
  height: auto;
  background-color: #eef5ff;
  border: 1px solid #888;
  width: 700px;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
}

.modal-content div {
  display: flex;
  flex-direction: column;
}

.modal-content div label {
  margin-bottom: 4px;
  color: #343a40;
  font-size: 15px;
}

.modal-content div input {
  width: 100%;
  border: 1px solid #e7e7e7;
  margin-bottom: 10px;
  color: grey;
  outline: none;
  font-size: 15px;
  padding: 4px 10px;
  height: 40px;
}

.modal-content div textarea {
  width: 100%;
  height: 110px;
  color: grey;
  resize: none;
  border: 1px solid #e7e7e7;
  outline: none;
  font-size: 15px;
  padding: 4px 10px;
}

.modal-content div:last-child {
  display: flex;
  align-items: center;
  text-align: center;
}

.modal-content div a {
  margin-top: 20px;
  font-size: 15px;
  padding: 8px 17px;
  border: none;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  width: 70%;
  text-align: center;
}

/*! MODAL OFFER */

.modal-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: -100%;
  /* top: 50%; */
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: top 0.7s ease;
}

.modal-offer-content {
  height: auto;
  background-color: #eef5ff;
  border: 1px solid #888;
  width: 700px;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
}

.modal-offer-content h3 {
  text-align: center;
  margin-bottom: 23px;
  color: #343a40;
  font-size: 18px;
}

.modal-offer-content div {
  display: flex;
  flex-direction: column;
}

.modal-offer-content div label {
  margin-bottom: 4px;
  color: #343a40;
  font-size: 15px;
}

.modal-offer-content div input {
  width: 100%;
  border: 1px solid #e7e7e7;
  margin-bottom: 10px;
  color: grey;
  outline: none;
  font-size: 15px;
  padding: 4px 10px;
  height: 40px;
}

.modal-offer-content div textarea {
  width: 100%;
  height: 110px;
  color: grey;
  resize: none;
  border: 1px solid #e7e7e7;
  outline: none;
  font-size: 15px;
  padding: 4px 10px;
}

.modal-offer-content div:last-child {
  display: flex;
  align-items: center;
  text-align: center;
}

.modal-offer-content div a {
  margin-top: 20px;
  font-size: 15px;
  padding: 8px 17px;
  border: none;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  width: 70%;
  text-align: center;
}
