#cf7-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  font-family: 'Open Sans', Arial, sans-serif;
}

#cf7-success-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.cf7-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.checkmark-icon {
  width: 64px;
  height: 64px;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.cf7-success-message {
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.1);
  max-width: 480px;
  width: 90%;
  color: #2d2d2d; 
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
}

#cf7-success-close {
    margin: 0 auto;
  margin-top: 1rem;
  background-color: #2c8e40;
  border-color: #2c8e40;
  color: #fff;
  /* border: none; */
  /* border-radius: 6px;
  font-weight: 600;
  font-size: 1rem; */
  cursor: pointer;
  transition: all 0.3s ease;
  /* font-family: 'Open Sans', Arial, sans-serif; */
}

#cf7-success-close:hover {
  background-color: #fff; 
color: #246f33; 
}
