/* 
Theme Name:		 SmartMag Child
Theme URI:		 https://kiwibrain.co.nz/
Description:	 SmartMag Child is a child theme of SmartMag, created by ChildTheme-Generator.com
Author:			 KiwiBrain
Author URI:		 https://kiwibrain.co.nz/
Template:		 smart-mag
Version:		 1.0.0
Text Domain:	 smartmag-child
*/


/*
    Add your custom styles here
*/

.btt-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important; 
    min-height: 44px !important;
    padding: 0 !important; 
    box-sizing: border-box; 
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    line-height: 1; 
}

.btt-btn svg {
    width: 22px;
    height: 22px;
    margin: 0; 
}

.btt-btn.show {
    opacity: 1;
    visibility: visible;
}

.btt-btn:hover {
    background-color: #4a4a4a;
    transform: translateY(-3px);
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
    .btt-btn {
        bottom: 20px;
        right: 20px;
    }
}