/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

.main-nav ul > li:before {
    position: absolute;
    height: 3px;
    width: 0;
    bottom: 0px;
    right: 0;
    background: #43baff;
    content: "";
    display: block;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    -ms-transition: all .3s linear;
	background: var(--bricks-color-rqkwja);
}
.main-nav ul > li:hover:before{
left: 0;
    right: auto;
    width: 100%;
}