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

.modal-content {
	
  position: relative;
  background-color: white;
  margin: auto;
  padding: 0;
   z-index: 9;
  width: 60%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
          animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

.modal-body {
  padding: 2px 16px;
  margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}
.modal-body p {
  padding: 10px;
   font-family: 'Poppins';
   font-size:15px;
   color:black !important;

}
.modal-body button {
  padding: 10px 50px;
  font-family: 'Poppins';
  background-color: #ff6d01;
  font-weight: light;
  border-style: hidden;
  color: white;
  border-radius: 2px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

.modal-body p a{
	color: #ff6d01;
}

.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
   margin-right:-550px
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  margin-right:-550px
}

.modal-header {
  padding: 2px 16px;
  background-color: white;
  color: black;
    margin-right:-550px
}
.modal-header span {
  font-size: 50px;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}/*# sourceMappingURL=modal.css.map */