  /*---------------------------------------
     CONTACT - SUCCESS / ERROR BOX
  -----------------------------------------*/

:root {
  --bs-green-1: #90bc79;
  --bs-green-2: #15bc74; 
  --bs-green-3: #01a020;
  --bs-green-4: #108e58;
  }

/* The Modal (background) */
.modal-response {
    display: none;
    position: fixed;
	z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Content */
.modal-response-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

/* Icon Box */

.icon-box {
    position: relative;
    background-color: var(--bs-green-1);
	border: 2px solid #fff;
    margin: -65px 0 0 185px;
    padding: 15px 10px 50px 10px;
    width: 100px;
	height: 100px;
    border-radius: 50px;
    color: #fff;
	font-size: 200%;
	text-align: center;
}

.box--error {
  background: #e44043;
}

/* The Close Button */

.button {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 100%;
  margin-top: 40px;
  background: var(--bs-green-1);
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover {
  background: var(--bs-green-1);
  opacity: 0.8;
}

.button--error {
  background: #e44043;
}
/*
.button--error:hover {
  background: #d31e21;
}
*/
.button--error:hover {
  background: #e44043;
  opacity: 0.8;
}

.button__label {
  color: #fff;
  font-family: "Poppins";
  font-weight: 300;
  font-size: 18px;
}

/* Modal Text */

.response-text-center { 
  width: 100%; 
  text-align: center; 
  padding: 50px 0 0 0;  
  }

.response-text-center h5 {  
    font-family: "Raleway";
    font-weight: 300;
    font-size: 20px;  
  }

.modal-response-content p {
    font-size: 1rem;
}

.show-hide {
	display: block;
}