body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #333;
	color: #939393;
}
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}
.logo {
	width: 100px;
}
.site-branding{
	margin: 0px !important;
	padding-right: 30px;
	box-sizing: border-box;
	flex: 1 1 20%;
	width: auto !important;
	max-height: 60px;
}
.site-branding img{max-width: fit-content;}
.info {
	border: 1px solid;
	border-radius: 6px;
	padding: 5px;
}
.info a{
	color: #bfbfbf;
	padding: 7px 5px 7px 30px;
	position: relative;
}
.info a i{
	color: #fff;
	position: absolute;
	left: 7px;
	bottom: 0px;
}

.map {
	text-align: center;
	font-size: 24px;
}

.map-item {
    display: none;
}

.map-item.active {
    display: block;
}

.map-switcher {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.map-switcher button {
    padding: 8px 15px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}

.map-switcher button.active {
    background: #96BF3B;
    color: #fff;
    border-color: #96BF3B;
}

.contacts {
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	color: #bfbfbf;
	margin: 10px;
}
footer {
	text-align: center;
	padding: 10px;
	padding-bottom: 0px !important;
	position: fixed;
	bottom: 0;
	background-color: #000;
	display: flex;
	width: 100%;
	flex-direction: column;	
}
.footer-icons {
	display: flex;
	justify-content: space-evenly;
	padding-bottom: 10px;
	gap: 10px;
}
.footer-icons > div{align-content: center; flex: 1; border: 1px solid; border-radius: 6px;}
.footer-icons i {
	color: #fff;
	position: absolute;
	left: 7px;
	bottom: 0px;
}
.footer-icons i.fa-whatsapp{
	text-align: center;
	font-size: 21px;
	padding: 13px;
}
.button{    
	color: #96bf3b !important;
	background-color: initial !important;
	border: 1px solid #96bf3b !important;
	margin-top: 0px;
	border-radius: 5px;
	font-weight: 400;
	display: block;
	text-align: center;
}
button.active{
	float: right;
	margin-top: 0px;
	background-color: #96bf3b !important;
	border: 1px solid #96bf3b !important;
	border-radius: 5px;
	font-weight: 400;
	color: #fff !important;
	display: block;
	text-align: center;
}
#contacts a{
	color: #bfbfbf;
}

.footer-icons a{color: #bfbfbf; padding: 7px 5px 7px 30px; position: relative;}
#whtsp_a{position: relative; display: block; padding: 0px; padding: 3px 5px 3px 5px;}

@media (min-width: 768px) {
	.custom-logo{max-width: 15% !important;}
}
@media (max-width: 768px){
	.site-branding img{max-height: 35px;}
	footer:before{
		content: "";
		position: fixed;
		bottom: 54px;
		left: 0;
		width: 25px;
		height: 25px;
		background: transparent;
		-webkit-mask: radial-gradient(circle 25px at 100% 0, transparent 100%, black 101%);
		mask: radial-gradient(circle 25px at 100% 0, transparent 100%, black 101%);
		background-color: black;
		z-index: 99;
	}
	footer:after {
		content: "";
		position: fixed;
		bottom: 54px;
		right: 0;
		width: 25px;
		height: 25px;
		background: transparent;
		-webkit-mask: radial-gradient(circle 25px at 100% 0, transparent 100%, black 101%);
		mask: radial-gradient(circle 25px at 100% 0, transparent 100%, black 101%);
		background-color: black;
		transform: scaleX(-1);
		z-index: 99;
	}
}