/*
Theme Name: Divi Child Theme
Template: Divi
Version: 1.0.0
Author: Flow Activewear
*/

@import url("../Divi/style.css");
.flowactive-loader {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border: 1px solid #ddd;
    text-align: center;
    font-weight: bold;
    color: #333;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    border-radius: 8px;
}
/* barra de carga en el bottom del menu*/
.et_pb_menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.4s ease;
}

.et_pb_menu a:hover::after {
    width: 100%;
}

