#icecream_image2_widget.hover-menu {
    position: relative;
    overflow: hidden;
    margin: 8px;
    min-width: 340px;
    max-width: 480px;
    max-height: 290px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

#icecream_image2_widget.hover-menu * {
    box-sizing: border-box;
}

#icecream_image2_widget.hover-menu img {
    position: relative;
    max-width: 100%;
    top: 0;
    right: 0;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

#icecream_image2_widget.hover-menu .icecream_image2_menu_list {
    position: absolute;
    top: 0;
    left: -120px;
    width: 120px;
    height: 100%;
    padding: 8px 4px;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#icecream_image2_widget.hover-menu .icecream_image2_menu_list a {
    display: block;
    line-height: 2;
    text-decoration: none;
    opacity: 0.8;
    padding: 5px 15px;
    position: relative;
    transition: 0.3s ease-in-out;
}

#icecream_image2_widget.hover-menu .icecream_image2_menu_list a:hover {
    text-decoration: none;
}

#icecream_image2_widget.hover-menu:hover img {
    opacity: 0.5;
    right: -120px;
}

#icecream_image2_widget.hover-menu:hover .icecream_image2_menu_list {
    left: 0;
    opacity: 1;
}