.side-panel {
    position: fixed;
    top: 0;
    left: -400px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: left 0.3s ease;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.close-button {
	width:40px;
	height:40px;
	justify-content:center;
	align-items:center;
	position:absolute;
	top:10px;
	right:10px;
	z-index:1000;
	border-radius:50%;
	background:#fff;
}

.close-button span {
	display:block;
	width:20px;
	height:20px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='currentColor' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18 18 6M6 6l12 12' /%3E%3C/svg%3E%0A");
}

.logo-side {
	width:70%;
	margin:20px auto;
}

.logo-side img {
	width:100%;
	height:auto;
}

#side-menu {
	list-style:none;
	padding:0;
	margin:0;
	display:flex;
	gap:5px;
	flex-direction:column;
}

#side-menu li a {
	display:flex;
	align-items:center;
	border-top:1px solid #d3d3d3;
	height:45px;
	text-decoration:none;
	color:#141414;
	font-weight:500;
	padding-left:15px;
}

#side-menu li:first-child a {
	border-top:none;
}

.side-panel-contact {
	display:flex;
	flex-direction:column;
	gap:10px;
	padding:30px 0 0 15px;
}

.side-panel-contact .mail-head,
.side-panel-contact .phone-head {
	display:flex;
	font-size:14px;
}