@media(max-width:767px) {
.navbar-mobile {
    position: absolute;
    left:   auto;
    right:  20px;
    top:    15px;
}
}

.navbar-nav {
    display: flex;
    float: none;
}
.nav-header-inf {
    flex-basis: auto;
    flex-grow: 1;
    text-align: center;
    background: #8463A9;
    padding: 0px 10px;
    border-radius: 50px;
    margin: 0 10px;
}
ul > li > a:hover, ul > li > a:focus {
    border-radius: 50px;
    width: 112%;
    left: -11px;
}

.text-white:hover {
    color: #FAB000 !important;
}
@media(max-width:767px) {
    .nav-header-inf {
        flex-basis: auto;
        flex-grow: 1;
        text-align: left;
        background: #8463A9;
        padding: 1px 50px;
        margin-left: 10px;
        border-radius: 0;
    }
    ul > li > a:hover, ul > li > a:focus  {
        border-radius: 0;
        width: 100%;
        left: 0;
    }
}
.nav-header-inf-login {
    padding: 0px 10px;
    flex-basis: auto;
    flex-grow: 1;
    text-align: center;
    background: #CC99CC;
    border-radius: 50px;
    margin: 0 10px;
}
@media(max-width:767px) {
    .nav-header-inf-login {
        flex-basis: auto;
        flex-grow: 1;
        text-align: left;
        background: #CC99CC;
        margin-left: 10px;
        padding: 1px 28px;
        border-radius: 0;
    }
}
.left_sidebar {
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 10px
}

.ls_load {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ls_load.visible {
    display: block
}

.ls_load_background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 998;
    opacity: .3
}

.ls_load_circle_block {
    position: absolute;
    width: 10%;
    left: 45%;
    top: 40%
}

@media(max-width:767px) {
    .ls_load_background {
        position: fixed
    }
    .ls_load_circle_block {
        position: fixed;
        z-index: 1000
    }
}

.ls_load_circle_wrap {
    position: absolute;
    width: 100%;
    padding-bottom: 100%
}

.ls_load_circle {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    z-index: 999;
    border-color: dodgerblue transparent;
    border-width: 3px;
    border-style: solid;
    -webkit-animation: ls_load_animate 1s linear infinite;
    -moz-animation: ls_load_animate 1s linear infinite;
    -ms-animation: ls_load_animate 1s linear infinite;
    -o-animation: ls_load_animate 1s linear infinite;
    animation: ls_load_animate 1s linear infinite
}

@-webkit-keyframes ls_load_animate {
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes ls_load_animate {
    50% {
        -moz-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-ms-keyframes ls_load_animate {
    50% {
        -ms-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-o-keyframes ls_load_animate {
    50% {
        -o-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes ls_load_animate {
    50% {
        transform: rotate(180deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.left_sidebar .ls_menu {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden
}

.left_sidebar .ls_item {
    padding: 15px 0;
    border-bottom: 1px solid #d3dddd
}

.left_sidebar .ls_item.accounts {
    padding-top: 0
}

.left_sidebar .ls_item.mobile_title {
    display: none
}

.left_sidebar .ls_item.mobile_title .vm_close:before,
.left_sidebar .ls_item.mobile_title .vm_close:after {
    border: 1px solid #000
}

@media(max-width:767px) {
    .left_sidebar .ls_item {
        padding: 20px 0
    }
    .left_sidebar .ls_item.mobile_title {
        display: block;
        font-weight: 400;
        font-family: 'Roboto', sans-serif;
        text-transform: uppercase
    }
}

.left_sidebar .ls_item:last-child {
    border-bottom: 0
}

.left_sidebar .ls_item_link {
    display: block;
    height: 100%;
    cursor: pointer;
    text-decoration: none
}



.left_sidebar .ls_item_link:hover,
.ls_item_link:visited {
    text-decoration: none
}

.left_sidebar .ls_item_link:not(.inactive):hover .ls_item_text {
    color: dodgerblue !important
}

.left_sidebar .ls_item_img {
    display: inline-block;
    width: 30px;
    text-align: center;
    vertical-align: middle
}

.left_sidebar .ls_item_text {
    display: inline-block;
    text-transform: uppercase;
    vertical-align: middle;
    font-family: Roboto, sans-serif
}

.left_sidebar .ls_item_text.main {
    max-width: calc(100% - 50px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

@media(max-width:767px) {
    .left_sidebar .ls_item_text.main {
        max-width: calc(100% - 80px)
    }
}

.left_sidebar .ls_item_arrow {
    position: absolute;
    top: 6%;
    right: 2%;
    color: #000;
    font-size: 70%;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg)
}

.left_sidebar .btn-control {
    width: 100%;
    font-size: 170%;
    height: 0
}

.left_sidebar .ls_item_arrow:before {
    content: '';
    position: absolute;
    display: block;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

@media(max-width:767px) {
    .left_sidebar {
        padding: 0;
        margin: 0
    }
    .left_sidebar .ls_menu {
        display: none
    }
    .left_sidebar .btn-control.active+.ls_menu {
        position: absolute;
        display: block;
        top: -24px;
        z-index: 99;
        background-color: #fff;
        width: calc(100% - -20px);
        left: -10px;
        font-size: 150%;
        padding-left: 20px
    }
    .left_sidebar .btn-control.active:before {
        content: "";
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .3;
        z-index: 1
    }
}

.left_sidebar .sub_menu {
    display: none
}

.left_sidebar .ls_item_link.active+.sub_menu,
.ls_item_link.active+div>.sub_menu {
    display: block;
    height: auto
}

.left_sidebar .ls_item_link.active .ls_item_arrow {
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.left_sidebar .ls_menu.sub_menu_first {
    margin-left: 15px
}

.left_sidebar .ls_menu.sub_menu_first .ls_item {
    padding: 12px 0 0 0;
    border-bottom: 0
}

.left_sidebar .ls_menu.sub_menu_first .ls_item.link-active {
    padding-top: 0;
    margin-top: 12px;
    background-color: #f2f9ea
}

.left_sidebar .ls_menu.sub_menu_first .ls_item_link {
    display: inline-block;
    height: auto;
    width: 85%;
    margin: 0;
}

.left_sidebar .ls_menu.sub_menu_first .ls_item_link.link-active {
    background-color: #f2f9ea
}

.left_sidebar .ls_menu.sub_menu_first .ls_item_text {
    font-size: 15px;
    text-transform: none;
    margin-right: 5px
}

.left_sidebar .ls_menu.sub_menu_first .ls_item_link .ls_item a .ls_item_text {
    outline: 2px dashed brown
}

.left_sidebar .ls_menu.sub_menu_first .ls_item_arrow {
    top: 1px;
    left: 0;
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    color: dodgerblue;
    font-weight: normal;
    font-size: 80%;
    padding: 0 2px 0 5px;
    position: relative
}

.ls_item>.ls_item_arrow .minus {
    display: none
}

.ls_item.active>.ls_item_arrow .plus {
    display: none
}

.ls_item.active>.ls_item_arrow .minus {
    display: inline-block
}

.left_sidebar .accounts .ls_menu.sub_menu_first .ls_item_img {
    width: 20px !important;
    height: 20px !important
}

.left_sidebar .accounts .ls_menu.sub_menu_first .ls_item_img {
    color: dodgerblue;
}

.left_sidebar .accounts .ls_menu.sub_menu_first .ls_item_img .disable {
    color: #92aaaa
}

@media(max-width:767px) {
    .left_sidebar .accounts .ls_menu.sub_menu_first .ls_item_img {
        width: 32px !important;
        height: 32px !important
    }
}

.left_sidebar .ls_menu.sub_menu_second .ls_item_link {
    width: 100%
}

.left_sidebar .ls_menu.sub_menu_second .ls_item_img {
    width: 15px;
    height: 15px;
    background: 0
}

.left_sidebar .ls_menu.sub_menu_second .ls_item_text {
    width: 90%;
    width: calc(100% - 30px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: none;
    font-size: 13px;
    font-weight: 300
}

.left_sidebar .ls_menu.sub_menu_second {
    margin-left: 10px
}

.left_sidebar .ls_item_link.inactive .ls_item_text {
    color: #92aaaa
}

.left_sidebar .all_services .ls_item_text {
    text-decoration: underline;
    color: dodgerblue;
}

.left_sidebar .ls_item_link .ls_item_annex {
    color: dodgerblue;
    vertical-align: bottom
}

.left_sidebar .ls_item_link .ls_item_img_container {
    text-align: center;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
    vertical-align: bottom;
    color: dodgerblue;
}

.left_sidebar .ls_item_link .ls_item_img_container .fa {
    font-size: 19px
}

@media(max-width:767px) {
    .left_sidebar .ls_item_link .ls_item_img_container {
        width: 40px !important;
        height: 30px !important
    }
    .left_sidebar .ls_menu.sub_menu_second .ls_item_text {
        width: calc(100% - 60px)
    }
}