/* UK Sideout Menu Styles */

.uk-sideout-menu-sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 9999;
	top: 0;
	right: 0;
	background-color: #111;
	background-image: url('../img/content-bg.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
}

.uk-sideout-menu-sidenav a {
	padding: 24px 24px 24px;
	text-decoration: none;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px; /* 125% */
	color: #fff;
	display: block;
	transition: 0.3s;
	border-bottom: 1px solid #FFDD00;
}

.uk-sideout-menu-sidenav a:hover {
	color: #FD0;
}

.uk-sideout-menu-sidenav .uk-sideout-menu-closebtn {
	position: absolute;
	top: 50px;
	right: 15px;
	font-size: 36px;
	margin-left: 50px;
	color: #82D7D;
	/*background-color: rgba(66, 66, 66, 0.5);*/
	padding: 0px 14px;
	border-radius: 5px;
	cursor: pointer;
	border-bottom: hidden;
}

.uk-sideout-menu-sidenav .uk-sideout-menu-closebtn:hover {
	/*background-color: rgba(66, 66, 66, 0.8);*/
	border-bottom: hidden;
}

.uk-sideout-menu-main {
	padding: 0;
}

.uk-sideout-menu-main .uk-sideout-menu-toggle {
	position: fixed;
	top: 50px;
	right: 15px;
	color: #082D7D;
	/*background-color: rgba(0, 0, 0, 0.5);*/
	padding: 0px 10px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 30px;
	z-index: 9998;
	transition: background-color 0.3s;
}

.uk-sideout-menu-main .uk-sideout-menu-toggle:hover {
	/*background-color: rgba(0, 0, 0, 0.7);*/
}

/* Responsive adjustments */
@media screen and (max-height: 450px) {
	.uk-sideout-menu-sidenav {
		padding-top: 15px;
	}
	.uk-sideout-menu-sidenav a {
		font-size: 18px;
	}
}

/* Ensure menu items are properly styled */
.uk-sideout-menu-list {
	list-style: none;
	margin: 0;
	padding: 80px;
}

.uk-sideout-menu-list li {
	margin: 0;
	padding: 0;
}
/* Mobile adjustments */
@media screen and (max-width: 768px) {
	.uk-sideout-menu-list {
		padding: 30px;
	}
}
