/*---------------------------------------------------------------------------------------------------|
|                                                                                                    |
|       Button Settings                                                                              |
|                                                                                                    |
|       Add "csem-btn" to the custom css class field in the button (styles applied to all buttons)   |
|       Add "csem-btn-dark" to the custom css class field in the button for dark color buttons       |
|       Add "csem-btn-light" to the custom css class field in the button for light color buttons     |
|                                                                                                    |
|---------------------------------------------------------------------------------------------------*/

/* All buttons on site */
.csem-btn a{padding: 10px 20px !important; font-size: 18px !important; font-weight: 400 !important; letter-spacing: 1px !important; border: none !important; border-radius:50px !important; }
@media only screen and (max-width: 762px) {
	.csem-btn{display: grid; justify-items: center; margin-bottom:10px;}
}

/* Dark Buttons */
.csem-btn-dark a{background-color:#a8e6cf !important; color:#062750 !important;}
.csem-btn-dark a:hover{background-color:#a8e6cf !important;}

/* Light Buttons */
.csem-btn-light a{background-color:#fff !important; color:#062750 !important; }
.csem-btn-light a:hover{background-color:#fff !important;}



.csem-btn-rev a{background-color:#476aee !important; color:#ffffff !important; }
.csem-btn-rev a:hover{background-color:#476aee !important;}

/*---------------------------------------------------------------------------------------------------|
|                                                                                                    |
|       Ripple Button                                                                                |
|                                                                                                    |
|---------------------------------------------------------------------------------------------------*/

.ripple-button {
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #3498db;
  border: none;
  border-radius: 50px; /* Rounded corners */
  cursor: pointer;
  outline: none;
}

.ripple-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  opacity: 0;
  border-radius: 50%; /* To match the rounded button */
}

.ripple-button:hover::before {
  width: 0;
  height: 0;
  opacity: 1;
  top: 50%;
  left: 50%;
}