.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  background-color: rgb(70, 70, 70);
  background-color: rgba(82, 82, 82, 0.4);
}

.modal-content {
  background-color: #eeeeee;
  margin: auto;
  margin-top: 15vh;
  padding: 10px 20px;
  border: 1px solid grey;
  border-radius: 18px;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-height: 85vh;
  animation: modalup .7s ease-in-out;
}

@keyframes modalup {
  0% {
    transform: translateY(100%);
    opacity: .5;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.modal-hide{
  display: none;
}

.modal-title{
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 75%;
}

.modal-list{
  padding: 2%;
  overflow-y: auto;
  width: 100%;
  border-radius: 12px;
  max-height: 60vh;
}

.modal-btn{
  display: flex;
  justify-content: space-between;
  margin: 3%;
  position: relative;
}

.modal-btn button{
  color: white;
  text-transform: capitalize;
  width: 150px;
  font-size: 1rem;
  border-radius: 12px;
  padding: 2% 4%;
  border: 2px solid rgba(128, 128, 128, 0.4);
  margin: 2%;
  max-height: 60px;
}

.send-list{
  background-color: #FF1744;
}

.close {
  background-color: #0336FF;
}

.send-list:hover,
.send-list:focus {
  color: white;
  background-color: #ff288c;
  text-decoration: none;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: white;
  background-color: #1c49fbef;
  text-decoration: none;
  cursor: pointer;
}

.email-div{
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  width: 100;
  top: -120%;
  background-color: #f2f2f2;
  border: 1px solid grey;
  border-radius: 12px;
  animation: emailup .7s ease-in-out;
}

@keyframes emailup {
  0% {
    transform: translateY(100%);
    opacity: .5;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.email-div div{
  display: flex;
  padding: 2%;
}

.email-div div input {
  margin: 2%;
  padding: 2%;
  width: 90%;
  border-radius: 12px;
  border: 1px solid lightgrey;
}

.email-div div button {
  background-color: #FF1744;
  cursor: pointer;
}

.email-div p{
  margin: 0 auto 2%;
  color: red;
  font-style: italic;
}
