.navigation-section {
    position: relative;
    overflow: hidden;
}
.navigation-section:after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 90%;
    bottom: -105px;
    height: 105px;
    left: 5%;
    border-radius: 500px / 50px;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, .15);
}
.store-nav > li {
    padding-left: 0;
    min-height: 25px;
    line-height: 18px;

}
.store-nav > li a:before {
    font-family: 'icomoon';
    content: "\e605";
    color: #133b9f;
    font-size: 18px;
    top: 7px;
    position: absolute;
    left: -6px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.store-nav > li:hover a:before {
    left: -4px;
    -webkit-transition: all 0.08s;
    -moz-transition: all 0.08s;
    -o-transition: all 0.08s;
    transition: all 0.08s;
}
.store-nav > .active {
    padding-left: 0;

}
.store-nav > .active a:before {
    content: '';
}
.store-nav > li a {
    position: relative;
    padding: 6px 12px;
    display: inline-block;
}
.store-nav > .active a {
    font-weight: bold !important;
    color: #333;
    background-color: #e1e1e1;
    border-radius: 4px;
}