@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #1332cf;
    font-size: 11px;
    font-weight: 500;
    color: #333;
    min-width: 300px;
}
.navbar {
    position: absolute;
    width: 100%;
}
.navbar-logo {
    padding: 10px;
    color: #fff;
}
.imagelogoSmart {
    top: 1px;
    left: -5px;
    position: relative;
    width: 295px;
    height: 65px;
}
.imagelogoSmartPerfil {
    top: 1px;
    left: -5px;
    position: relative;
    width: 216px;
    height: 60px;
}
.imagelogo {
    top: -6px;
    left: -2px;
    position: relative;
}
.navbar-mainbg {
    background-color: #1332cf;
    padding: 0px;
    top: 0px;
    height: 65px;
}
#navbarSupportedContent {
    overflow: hidden;
    position: relative;
}
#navbarSupportedContent ul {
    padding: 0;
    margin: 0;
}
#navbarSupportedContent li {
    list-style-type: none;
    float: left;
}
#navbarSupportedContent ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 10px 20px;
    position: relative;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#navbarSupportedContent > ul > li.active > a {
    color: #1332cf;
    background-color: transparent;
}
#navbarSupportedContent a:not(:only-child)::after {
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 14px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: 0.5s;
}
#navbarSupportedContent .active > a:not(:only-child)::after {
    transform: rotate(90deg);
}
#accordian {
    background: #1332cf;
    width: 160px;
    padding: 10px;
    float: left;
    height: 100vh;
    overflow-x: hidden;
}
#accordian ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    line-height: 40px;
    display: block;
    padding: 0 10px;
    transition: 0.6s;
}
#accordian > ul > li.active > a {
    color: #1332cf;
}
.selector-active {
    width: 100%;
    position: absolute;
    height: 37px;
    top: 0;
    left: 0;
    background-color: #fff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.hori-selector {
    display: inline-block;
    position: absolute;
    height: 100%;
    top: 0px;
    left: 0px;
    transition: all 0.4s ease;
    background-color: #fff;
    border-radius: 15px;
    z-index: 0;
}

/* Bordes tipo curva */
.hori-selector .left,
.hori-selector .right {
    position: absolute;
    width: 55px;
    height: 25px;
    background-color: #fff;
    bottom: 0;
}

.hori-selector .left {
    left: -25px;
}

.hori-selector .right {
    right: -25px;
}

/* recorte curvo azul */
.hori-selector .left:before,
.hori-selector .right:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 60%;
    background-color: #1332cf; /* mismo color navbar */
}

.hori-selector .left:before {
    bottom: 0;
    left: -25px;
}

.hori-selector .right:before {
    bottom: 0;
    right: -25px;
}
