li.my-dropdown-menu {
    position: absolute;
    right: 15px;
}
.my-dropdown-menu > span img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    min-height: 100%;
    max-width: 120%;
}
.my-dropdown-menu > span {
    float: right;
    height: 35px;
    overflow: hidden;
    position: relative;
    margin-top: -8px;
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}
.my-dropdown-menu:hover > span {
    background-color: #424242;
}
.my-dropdown-menu > span > span { 
    color: white;
    margin-inline-start: 5px;
    font-weight: 500;
}
li.my-dropdown-menu ul li a{
    color: #fff;
    border-bottom: none !important;
    padding: 10px;
    width: 100%;
}
li.my-dropdown-menu ul li a:hover {
    background-color: #424242;
}
li.my-dropdown-menu ul li {
    float: right;
    width: 100%;
    margin-right: 0;
}
li.my-dropdown-menu:hover > div {
    display: initial;
}
li.my-dropdown-menu > div {
    position: absolute;
    left: 0;
    top: 100%;
    overflow: hidden;
    z-index: 1;
    display: none;
    box-shadow: 0 0 5px 0px #595959;
    width: 100%;
}
li.my-dropdown-menu ul {
    float: right;
    width: 100%;
    background: #121212;
    padding-top: 0;
    padding-bottom: 0;
}
.branches-select-mobile {
    float: right;
    margin-inline-end: 15px;
    display: none;
}
.branches-select-mobile .my-dropdown-menu {
    display: inline-block;
    margin-top: 9px;
    position: initial;
}
.branches-select-mobile .my-dropdown-menu ul li {
    display: inline-flex;
}
.branches-select-mobile .my-dropdown-menu > span {
    width: 100%;
}