.dropdownMenu{
    position: relative;
}
.dropdownMenu .toggleMenu{}
.dropdownMenu:not(.shown) ul{display:none;}
.dropdownMenu ul{
    margin: 0;
    padding: 10px;
    position: absolute;
    width: max-content;
    min-width: 220px;
    max-width: 90%;
    right: 0;
    top: calc(100% + 6px);
    background-color: white;
    z-index: 10;
    list-style: none;
    box-shadow: 0 0 1px 0px rgb(0 0 0 / 17%);
}
.dropdownMenu.alignTop{
	top:inherit;
	bottom: calc(100% + 6px);
}
	
.dropdownMenu ul li{
	cursor: pointer;
	padding: 9px;
}
.dropdownMenu ul li.noAction{
	cursor: initial;	
}
.dropdownMenu ul li.separator {
    border-bottom: 1px solid #ddd;
    padding: 7px 0 0;
    margin-bottom: 7px;
}
.dropdownMenu ul li:not(.separator):not(.noAction):hover{
	background-color: rgb(246 244 244);
}
.dropdownMenu ul li a{}
.dropdownMenu ul li a font{    
	font-size: 0.7em;
    color: #a0a0a0;
}

.dropdownMenu.scrollMax ul{
	max-height: 162px;
	overflow-x:hidden;
	overflow-y:auto;
}