

@media screen and (min-width: 1200px) {
    .custom-menu .gc-account-user-submenu-bar .gc-account-user-submenu li a {
        background: none;
        z-index: 5;
        position: relative;
        transition: all .3s;
    }

    .custom-menu .gc-account-user-submenu-bar .gc-account-user-submenu li::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: white;
        z-index: 1;
        transition: all .3s;
    }

    .custom-menu .gc-account-user-submenu-bar .gc-account-user-submenu li a:hover {
        color: #451155;
    }

    .custom-menu .gc-account-user-submenu-bar .gc-account-user-submenu li:hover::before {
        width: 100%;
    }
}
