.elementor-1008 .elementor-element.elementor-element-9dc43a3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-64c41b2 *//* Main container for the list */
ul.custom-ul {
    position: fixed;
    top: 50%;
    right: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 10;
    width: auto; /*new*/
    height: auto; /*new*/
}

/* List items */
ul.custom-ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
    cursor: pointer;
    height: 50px;
    width: 200px; /*new*/
    overflow: hidden;
    position: relative;
}

/* Text inside the list items */
ul.custom-ul li span {
    font-size: 16px;
    font-family: 'Russo One', sans-serif;
    color: transparent;
    position: absolute;
    top: 50%;
    left: 55px;
    transform: translateY(-50%);
    background-image: linear-gradient(90deg, #0F69B4 50%, #FEED35 50%);
    background-position: 100%;
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    opacity: 1;
    visibility: visible;
    transition: background-position 0.8s ease, color 0.4s ease;
}

/* Hover effects for list items */
ul.custom-ul li:hover {
    background: #FEED35;
}

ul.custom-ul li:hover span {
    background-position: 0;
    color: #0f69b4;
}

ul.custom-ul li:hover i {
    opacity: 1; /* For an icon inside the list item */
}

/* Wall layout for a different list */
ul.wall {
    position: fixed;
    align-items: flex-end; /*out*/
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

ul.wall li {
    width: 50px;
    background-color: #FEED35;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    transition: width 0.8s;
    overflow: hidden;
}

/* SVG icons inside the wall */
ul.wall li svg {
    margin-left: 6px;
}

/* Hover effects for wall items */
ul.wall li:hover {
    width: 200px;
}/* End custom CSS */