/* =======================================
   DropDown menu                                  
   ======================================= */

.my-dropdownmenu {
	display: flex;
    justify-content: flex-end;
    text-align: right;
    margin-right: 10px;
}

.my-dropdownmenu>div {
}

.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(--button);
    border: 1px solid  var(--button-shadow);
}

.my-dropdownmenu menu button, .my-dropdownmenu menu a {
	border-radius: 0px;
	box-shadow: none;
    justify-content: flex-start;
    text-align: start;
    width: 100%;
}


.my-dropdownmenu a {
	border-radius: 0px;
}

.my-dropdownmenu button:hover, .my-dropdownmenu a:hover {
	transform: unset;
	background: hsl(from var(--button) h s calc(l - 15))
}

.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-color: rgba(0,0,0,0.5);
}

@media (max-width : 480px) {
	.my-dropdownmenu>button::after {
		display: none;
	}
	
}
