/*--------------------------------------------------------------
# Contact Form Styles
--------------------------------------------------------------*/
.php-email-form {
  position: relative;
}

.php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  padding-top: 20%;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 6px solid var(--color-primary);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: animate-loading 1s linear infinite;
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: var(--color-primary);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .d-block {
  display: block !important;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}