/*!
Theme Name: Hello Elementor Child
Theme URI: https://crocoblock.com/
Author: Crocoblock
Author URI: https://crocoblock.com/
Description: Child theme for Hello Elementor with all CrocoBlock features compatibility.
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: hello-elementor-child
*/

#scrollToTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #027FAB;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;

  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
  z-index: 9999;

  cursor: pointer;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTop:hover {
  transform: translateY(-3px);
  background: #000;
}

/* Headline kleinschreibung */
.lowercase {
    text-transform: lowercase  !important;
	 font-size: 32px !important;
}