/*
Theme Name: Divi Child theme of Divi
Theme URI: 
Description: Child theme of Divi theme for the Divi theme
Author: <a href="http://www.elegantthemes.com">Elegant Themes</a>
Author URI: 
Template: Divi
Version: 4.27.1
*/

/* Generated by Orbisius Child Theme Creator (https://orbisius.com/products/wordpress-plugins/orbisius-child-theme-creator/) on Sat, 17 Aug 2024 16:43:44 +0000 */ 
/* The plugin now uses the recommended approach for loading the css files.*/
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.ButtonBase__ButtonContainer-sc-p43e7i-3.euBiGU.es-forms-floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-width: 150px; /* Adjust width as necessary */
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  animation: bounce 2s infinite; /* Slower bounce animation */
}

.ButtonBase__ButtonContainer-sc-p43e7i-3.euBiGU.es-forms-floating-button:hover {
  background-color: #0056b3;
}

.ButtonBase__ButtonContainer-sc-p43e7i-3.euBiGU.es-forms-floating-button svg {
  margin-right: 8px;
}

/* Mobile styles */
@media (max-width: 600px) {
  .ButtonBase__ButtonContainer-sc-p43e7i-3.euBiGU.es-forms-floating-button {
    padding: 8px 8px !important; /* Adjust padding for smaller button */
    min-width: 10px !important; /* Adjust min-width for smaller button */
    font-size: 14px !important; /* Adjust font size for smaller text */
  }

  .ButtonBase__ButtonContainer-sc-p43e7i-3.euBiGU.es-forms-floating-button svg {
    margin-right: 6px !important; /* Adjust space between icon and text for smaller button */
  }
}