/*
Theme Name: Nora
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Pix&Code
Author URI: https://www.pixandcode.hu/
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */

.floating-btn {
  position: fixed !important;
  top: 60%;
  right: 0px;
  background-color: #FdFdfd;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  width: 60px;
  height: 60px;
  transition: width 0.3s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  z-index: 9999;
}

.floating-btn .icon {
  width: 60px;
  height: 60px;
	padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex: 0 0 60px;  
}

.floating-btn .label {
  white-space: nowrap;
  opacity: 0;
  margin-right: 20px;
  transition: opacity 0.2s ease;
  font-size: 13px;
  font-weight: 600;
	text-transform: none;
}
.floating-btn:hover {
  width: 280px;
}

.floating-btn:hover .label {
  opacity: 1;
}
