/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Button adjustment */
.button_iconup .elementor-button-icon {
    position: relative;
    top: -5px; /* Adjust this value to raise or lower the icon */
}
/* Default styles for the button icon */
.button_iconct .elementor-button-icon {
  position: relative;
  top: -5px; /* Default position for larger screens */
}

/* Adjust position for smaller screens */
@media (max-width: 775px) {
  .button_iconct .elementor-button-icon {
    top: 0px; 
  }
	.button_iconct {
	  padding:0px 0px 0px 0px!important; 
}
}

/* remove break on mobile when this class used */
.desktop-only {
  display: none;
}

@media (min-width: 767px) {
  .desktop-only {
    display: inline;
  }
}

/* remove break on mobile when this class used */
.mobile-only {
  display: none;
}

@media (min-width: 767px) {
  .mobile-only {
    display: inline;
  }
}


/* remove break on mobile when this class used */
.test-only {
  display: none;
}

@media (max-width: 767px) {
  .test-only {
    display: inline;
  }
}

/* flipbox image sizing  */


.flipbox-svg {
    width: 80px;
    height: 80px;
}
@media (max-width: 767px) {
    .elementor-flip-box__front .elementor-flip-box__layer__inner {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically */
        height: 100%; /* Ensure the content spans the entire Flipbox height */
        text-align: center; /* Center the text below the image */
    }

    .flipbox-svg {
        margin-bottom: 10px; /* Optional: Add spacing between the image and the text */
        max-width: 100%; /* Ensure the image scales properly */
        width: 40px; /* Adjust image size for mobile */
        height: 40px; /* Adjust image size for mobile */
    }
}

