/*
Theme Name:   Customify Child
Theme URI:    https://www.customify.co/
Description:  Child theme for the Customify theme
Author:       James Lims
Author URI:   http://example.com
Template:     customify
Version:      1.0.0
*/




/* STICKY BUTTON FOOTER */

#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #EAF5F9;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

#sticky-cta.sticky-cta-show {
  transform: translateY(0);
}

#sticky-cta button {
  background-color: #256697;
  border: none;
  color: white;
  padding: 10px 15px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

#sticky-cta button#btn-secondary {
  background-color: #f29027;
}

#sticky-cta button:hover {
  background-color: #256697;
}

#sticky-cta button#btn-secondary:hover {
  background-color: #444;
}




/* FORMS CONTAINER */



