/* =======================================
   DropDown menu                                  
   ======================================= */

.my-dropdownmenu {
	display: flex;
    justify-content: flex-end;
    text-align: right;
}

.my-dropdownmenu>div {
	/*
    position: relative;
    display: inline-block;
    */
}

.my-dropdownmenu menu {
    position: absolute;
    right: 0;
    list-style: none;
    background-clip: padding-box;
    white-space: nowrap;
    z-index: 1000;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0px;
    background-color: var(--surface2);
    border: 1px solid var(--surface4);
}

.my-dropdownmenu button, .my-dropdownmenu a {
    justify-content: flex-start;
    text-align: start;
    width: 100%;
    /*border: 1px solid var(--shadow-strength);*/
}

.my-dropdownmenu>div>button::after {
    display: inline-block;
    font-family: "icomoon";
    content: "\e916";
    height: 1.2rem;
    margin: -7px;
}

.my-dropdownmenu-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	/*background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(1px);*/
}

@media (max-width : 480px) {
	.my-dropdownmenu>button::after {
		display: none;
	}
	
}
