/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: #892F4590; /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  border-radius: 30px;
  opacity: 0;
  animation: ani 1.5s forwards;
  font-family: sans-serif;
  text-align: center;
  background: rgb(253,212,219);
  background: radial-gradient(circle, rgba(253,212,219,1) 0%, rgba(255,255,255,1) 100%);
  margin: 10% auto; /* 15% from the top and centered */
  padding: 100px;
  width: 1200px;
 /* Could be more or less, depending on screen size */
}

@keyframes ani {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
 .modal-content h1 {
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 700;
  font-family: poppins-semibold,poppins,sans-serif;
 }
/* The Close Button */
.close {
  color: var(--dl-color-primary-pink);
  float: right;
  font-size: 40px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#myBtn {
  border: solid 2px var(--dl-color-primary-pink);
  color: var(--dl-color-gray-white);
  font-size: 18px;
  font-style: normal;
  text-align: center;
    transition: 0.3s;
    font-family: Raleway;
    font-weight: 700;
    padding-top: var(--dl-space-space-unit);
    border-color: var(--dl-color-primary-pink);
    border-width: 2px;
    padding-left: var(--dl-space-space-fiveunits);
    border-radius: 30px;
    padding-right: var(--dl-space-space-fiveunits);
    padding-bottom: var(--dl-space-space-unit);
    text-transform: capitalize;
    text-decoration: none;
    background-color: var(--dl-color-primary-pink);
    cursor: pointer;
}

.button:hover {
  background-color: #F34F6A90;
  color: white;
  border: solid 2px var(--dl-color-primary-pink);
}

/* Contact Us Form */
.contact-us-custom {
width: 100%;
justify-content: center;
align-content: center;
text-align: center;
}

::placeholder {
  color: black;
}

.contact-us-custom-field {
  margin-bottom: 20px;
  justify-content: center;
  height: auto;
}

.contact-us-custom-field textarea,
.contact-us-custom-field input {
  background-color: #FFFFFF80;
  padding: 5px;
  border: solid 1px;
  border-color: white;
  width: 60%;
  height: 40px;
  border-radius: 10px;
  outline: none;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  padding: 25px;
}
.button.contact-us-custom button {
  width: 120px;
  height: 40px;
  margin: auto;
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border: solid 2px var(--dl-color-primary-pink);
}
.button.contact-us-custom button:hover {
  width: 120px;
  height: 40px;
  margin: auto;
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: solid 2px var(--dl-color-primary-pink);
}
.contact-us-custom-field textarea {
  height: 100px;
  resize: none;
}

.contact-us-custom-field_error {
  font-size: 12px;
  color: red;
  margin-top: 5px;
}

.contact-us-custom-field_error:empty {
  margin-top: 0;
}

.contact-us-custom_success {
  margin-top: 150px;
  margin-bottom: 150px;
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(.8);
  transform: scale(.8);
  transition: all 1s ease;
  color: green;
  text-align: center;
  justify-content: center;
}

.contact-us-custom.is-success .contact-us-custom_success {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}
