/* =========================================================
   CIHF Floating Register Button
   ========================================================= */

.cihf-floating-register-button {
  position: fixed;
  left: 0;
  top: 55%;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  background: #d8177c;
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border: 3px solid #ffffff;
  border-left: 0;
  border-radius: 0 999px 999px 0;
  box-shadow: 0 12px 34px rgba(216, 23, 124, 0.45);
  transform: translateY(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cihf-floating-register-button:hover,
.cihf-floating-register-button:focus {
  background: #84146f;
  color: #ffffff !important;
  box-shadow: 0 12px 34px rgba(216, 23, 124, 0.45);
}

@media (max-width: 767px) {
  .cihf-floating-register-button {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 1rem;
    min-width: 190px;
    min-height: 50px;
    border: 3px solid #ffffff;
    border-radius: 999px;
    font-size: 1.05rem;
    transform: translateX(-50%);
    box-shadow: none !important;
  }

  .cihf-floating-register-button:hover,
  .cihf-floating-register-button:focus {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: none !important;
  }
}