/*

    Title: Buttons
    Author: QBIT
    Date: 01/03/2025

    File path: ../../../../uploads/

*/

/* Button styles */
.btn {
	font-family: 'Poppins', sans-serif;
	font-size: 0.6em;
	border: solid 1px #ead7b5;
	background-color: #ead7b5;
	border-radius: 50px;
	display: inline-block;
	color: #333;
	transition: background-color 0.3s ease, transform 0.5s ease-in-out;
	padding: 2px 10px 2px 10px;
}

.btn:hover {
	border: solid 1px #333;
	background-color: #333;
	color: #fff;
}

.contact-btn {
	background-color: transparent;
	border: solid 1px #99cc33;
	color: #99cc33;
}

.btns {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: -100%; 
	background: #f8f8f8;
	padding: 20px;
	transition: bottom 0.5s ease;
	z-index: 998;
}

.btns ul {
	float: right;
}

.btns.show {
  bottom: 0;
}

.btns li {
	display: inline;
}

.save {
	background-color: purple;
	border: solid 1px purple;
	color: #fff;
}

/* Media queries */
@media (max-width: 64em) 
{


}