.vue-tooltip.tooltip-custom {
    background-color: #f5f5f5
}
.vue-tooltip.tooltip-custom .tooltip-arrow {
    border-right-color: #f5f5f5 !important
}
.sidebar-element {
    height: 70px;
    color: #515450;
    text-align: center;
    cursor: pointer;
    padding-right: 6px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    font-weight: bold;
    font-size: 1rem;
}
.sidebar-element span.element-name {
    font-size: 10px;
    line-height: 1;
    margin-top: 1em;
}
.sidebar-element:not(:last-child):not(:hover):before {
    content: '';
    background-color: #e3e3e3;
    height: 1px;
    width: 75%;
    position: absolute;
    bottom: 0;
    margin: 0 2em;
}
.sidebar-element:last-of-type {
    border-bottom-right-radius: 20px;
}
.sidebar-element:first-of-type {
    border-top-right-radius: 20px;
}
.sidebar-element.active {
    background: #cecece;
}
.sidebar-element.active:after {
    content: '';
    height: 100%;
    width: 4px;
    background-color: #373a36;
    display: block;
    position: absolute;
    right: -4px;
    top: 0;
    border-top-right-radius: 3em;
    border-bottom-right-radius: 3em;
}
.sidebar-element.active:first-child:after {
    height: 80%;
    top: 20%;
}
.sidebar-element.active:last-child:after {
    height: 80%;
}
.sidebar-element:not(:last-child):not(.active):not(:hover):after {
    content: '';
    background-color: #E3E3E3;
    height: 1px;
    width: 75%;
    position: absolute;
    bottom: 0;
}
.sidebar-element:hover {
    background-color: #373a36;
    color: #d0e7dc;
}
.sidebar-element i.icon {
    font-size: 24px;
}
.sidebar-narrow {
    z-index:2201;
    position:relative;
    background-color:#f5f5f5;
    width:100px;
    box-shadow: 0px 0px 3px #00000040;
    transform: translateX(0px);
    transition: 0.5s;
    border-radius: 0 20px 20px 0;
}
.sidebar-narrow.hide {
    transform: translateX(-79px);
}
.submenu-link:hover {
    color: #fff;
    background-color: #373A36;
}
.submenu-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: #d6d7d8;
    font-size: 14px;
}
.submenu-link.active {
    background-color: #373A36;
    color: #fff;
}
.submenu-link:after {
    content: '';
    background-color: #757774;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.sidebar-submenu {
    background-color: #515450;
    width: 245px;
    height: auto;
    color: #fff;
    text-align: left;
    position: absolute;
    top: 69px;
    left: 100px;
    cursor: pointer;
    transform: translateX(-330px);
    transition: 1s;
    border-top-right-radius: 20px;
    display: none;
}
.sidebar-submenu.active {
    display: block;
    transform: translateX(0px);
    z-index: 2202;
}
.menu-link{
    padding-left:36px;
    border-left:solid 6px #0099BC;
}
.menu-link.active {
    background-color:#272E34;

}
.sidebar-submenu .top-info {
    padding-left: 36px;
    background: #96D9E7;
    background: -webkit-radial-gradient(right, #515450, #757774);
    background: -moz-radial-gradient(right, #515450, #757774);
    background: radial-gradient(circle at right center, #515450, #757774);
    padding-top: 23px;
    padding-bottom: 23px;
    color: #fff;
    vertical-align: middle;
    border-top-right-radius: 20px;
}
.top-info .icon.elementIcon{
    color:#fff;
    font-size:20px;

}
.cover.active {
    display: block
}
.cover {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    /*background-color: rgba(245, 255, 255, .5);*/
    cursor: pointer
}
body {
    min-height: 100%
}
#sidebar-narrow {
    position: fixed;
    height: 100%;
    top: 77px;
    z-index: 2100;
}
.tippy-box[data-animation=scale][data-placement^=top] {
    transform-origin: bottom
}
.tippy-box[data-animation=scale][data-placement^=bottom] {
    transform-origin: top
}
.tippy-box[data-animation=scale][data-placement^=left] {
    transform-origin: right
}
.tippy-box[data-animation=scale][data-placement^=right] {
    transform-origin: left
}
.tippy-box[data-animation=scale][data-state=hidden] {
    transform: scale(.5);
    opacity: 0
}
.tippy-box[data-animation=fade][data-state=hidden] {
    opacity: 0
}
[data-tippy-root] {
    max-width: calc(100vw - 10px)
}
.tippy-box {
    position: relative;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    outline: 0;
    transition-property: transform, visibility, opacity
}
.tippy-box[data-placement^=top] > .tippy-arrow {
    bottom: 0
}
.tippy-box[data-placement^=top] > .tippy-arrow:before {
    bottom: -7px;
    left: 0;
    border-width: 8px 8px 0;
    border-top-color: initial;
    transform-origin: center top
}
.tippy-box[data-placement^=bottom] > .tippy-arrow {
    top: 0
}
.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
    top: -7px;
    left: 0;
    border-width: 0 8px 8px;
    border-bottom-color: initial;
    transform-origin: center bottom
}
.tippy-box[data-placement^=left] > .tippy-arrow {
    right: 0
}
.tippy-box[data-placement^=left] > .tippy-arrow:before {
    border-width: 8px 0 8px 8px;
    border-left-color: initial;
    right: -7px;
    transform-origin: center left
}
.tippy-box[data-placement^=right] > .tippy-arrow {
    left: 0
}
.tippy-box[data-placement^=right] > .tippy-arrow:before {
    left: -7px;
    border-width: 8px 8px 8px 0;
    border-right-color: initial;
    transform-origin: center right
}
.tippy-box[data-inertia][data-state=visible] {
    transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11)
}
.tippy-arrow {
    width: 16px;
    height: 16px;
    color: #333
}
.tippy-arrow:before {
    content: "";
    position: absolute;
    border-color: transparent;
    border-style: solid
}
.tippy-content {
    position: relative;
    padding: 5px 9px;
    z-index: 1
}