/*
 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
*/
.css-icon-menu .bricks-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.css-icon-menu .bricks-nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.25s ease;
}

.css-icon-menu .bricks-nav-menu > li > a::before {
    content: "›";
    flex: 0 0 auto;
    color: #19d8ff;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 0.25s ease;
}

.css-icon-menu .bricks-nav-menu > li > a:hover {
    color: #19d8ff;
}

.css-icon-menu .bricks-nav-menu > li > a:hover::before {
    transform: translate(4px, -1px);
}
