.menu_button {
	position: relative;
        display: inline-block;
        height: 60px;
        width: 60px;
        overflow: hidden;
        cursor: pointer;
}

.menu_button i {
	position: relative;
	top: 22px;
}

.menu_button--notification_dot::before {
        content: '';
        display: block;
        position: absolute;
        border-radius: 50%;
        overflow: hidden;
        color: red;
        width: 10px;
        height: 10px;
        opacity: 1;
        top: 18px;
        right: 18px;
        z-index: 1000;
}

.menu_content_wrapper {
        z-index: 10;
        position: fixed;
        top: 60px;
	right: 0px;
        width: 100%;
        max-height: calc(100% - 140px);
        /* transition: max-height 0.2s ease-out, padding 0.1s ease-out; */
        overflow-x: hidden;
	overflow-y: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        font-size: 12px;
        line-height: 12px;
}

.menu_content_wrapper:before {
        content: '';
        width: 15px;
        height: 15px;
        position: fixed;
        top: 53px;
        right: 50%;
        box-sizing: border-box;
        transform: rotate(45deg);
        pointer-events: none;
        border-radius: 0px;
}

.menu_content_wrapper--hidden {
        max-height: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
	border: 0px;
}

.menu_content_wrapper--hidden:before {
	display: none;
}

.menu_section {
	display: inline-flex;
	width: 200px;
	min-height: 30px;
	position: relative;
	padding-bottom: 30px;
	margin: 20px;
}

.menu_section--navigation {
	display: none;
}

.menu_header {
	display: block;
	width: 200px;
	height: 30px;
	position: absolute;
	left: 0;
	top: 0;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
	line-height: 30px;
}



.menu_header_icon {
	display: inline-block;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 5;
	top: 0;
	text-align: center;
}



.menu_header_icon i {
	line-height: 30px;
	font-size: 18px;
}


.menu_header_title {
	display: inline-block;
	width: 200px;
	height: 30px;
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;
	line-height: 30px;
}



.menu_content {
	display: block;
	width: 200px;
	min-height: 30px;
	position: relative;
	left: 0px;
	top: 30px;
}



#dropdown-content a.menu_item {
	position: relative;
	text-align: left;
	padding: 0px;
        padding-left: 20px;
	overflow: hidden;
}

#dropdown-content a.menu_item:before {
	content:'';
	width:100%;
	height:100%;
	position:absolute;
	right:0;
	top:0;
	pointer-events: none;
}

#dropdown-content a.menu_item--notification_dot::before {
	content: '';
	display: block;
	background: red;
	position: absolute;
	border-radius: 50%;
	overflow: hidden;
	color: red;
	width: 10px;
	height: 10px;
	opacity: 0.5;
	top: 7px;
	left: 7px;
	z-index: 1000;	
}

.menu_item--disabled {
	opacity: 0.3;
	pointer-events: none;
}










