/*======================================
Theme Name: Retailing-Africa
Theme URI: https://divicake.com/
Description: Divi child theme for Retailing Africa
Version: 1.1
Author: Mathew Philips
Author URI: https://divicake.com/
Template: Divi
======================================*/


/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */


/*---Menu Link Animations---*/

#ra-custom-menu .menu-item.et-hover a {
    opacity: 1 !important;
    background-color: transparent !important;
}

#ra-custom-menu .menu-item li {
    position: relative !important;
}

#ra-custom-menu .menu-item:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 2px;
    background-color: black;
    bottom: 0;
    left: 0;
    transition: ease all 600ms;

}

#ra-custom-menu .menu-item.et-hover:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: black;
    bottom: 0;
    left: 0;
    animation: lineIn 600ms linear normal !important;
}

#ra-custom-menu .current-menu-item:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: black;
    bottom: 0;
    left: 0;
    animation: lineIn 600ms linear;
}

@keyframes lineIn {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100%;
        opacity: 100%;
    }
}