/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 14 2025 | 16:30:08 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body{
	font-size: 17px;
	line-height: 30px;
	font-weight: 400;
	-moz-osx-font-smoothing: grayscale;
	word-break: break-word;
	-webkit-font-smoothing: antialiased;
	font-family: "Inter", sans-serif;
	margin: 0;
	overflow-x: hidden;
	background: #eee;
}

.div_floating{
    position: fixed;
    top: 300px;
    z-index: 8;
    right: 50px; 
}

.btn_floating{
 	width: 70px;
    height: 70px;
    background-color: white;
  	border-radius: 50%;
    padding: 15px;
  	box-shadow: 0px 2px 3px 0px #A5A5A5;
  	margin-bottom: 20px;
  	transition: 0.3s;
}

.btn_floating:hover{
  	padding: 10px;
}

.btn_floating img{
	width: 100%;
}

@media (max-width: 525px) {
  	.div_floating{
        right: 20px; 
    }
  
  	.btn_floating{
      	width: 40px;
    	height: 40px;
      	padding: 5px;
  	}
  
    .btn_floating:hover{
      padding: 5px;
  	}
}

