.main-content__top {
    position: fixed;
    top: 0;
    margin-left: -15px;
    width: calc(100% - 277px);
    height: 60px;
    border-bottom: 1px solid #eee;
    background: #fff;
    z-index: 1000;
}

.main-content__title {
    font-size: 1.4em;
    margin: 15px 0 15px 15px;
    border-bottom: none;
}

.main-content__body {
    margin-top: 80px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-container {
    position: fixed;
    left: 350px;
    height: 100%;
    margin-left: -350px;
    top: 0;
    z-index: 999;
    transition: all 0.5s ease;
}

.menu {
    position: fixed;
    margin-top: 8px;
    width: 85px;
    height: 100%;
    border-right: 0px solid #e8eaed;
    overflow-y: auto;
    overflow-x: hidden;

}

.menu::-webkit-scrollbar-track {
    background-color: white;
    border-radius: 20px;
}

.menu::-webkit-scrollbar {
    width: 6px;
    background-color: #B9BABB;
    border-radius: 20px;
}

.menu::-webkit-scrollbar-thumb {
    background-color: #B9BABB;
    border-radius: 20px;
}

.menu__top {
    padding: 14px 5px 13px 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.menu__top:after {
    display: block;
    content: "";
    clear: both;
}

.menu__logo {
    display: block;
    float: left;
}

.menu__title {
    display: block;
    float: left;
    margin-left: 10px;
    padding-top: 6px;
    font-weight: 700;
    color: #fff;
}

.menu__title:hover {
    color: white;
    text-decoration: none;
    transition: all 150ms ease;
}

.menu__icon {
    font-size: 16px;
    width: 16px;
    text-align: center;
    margin-right: 10px;
}

.menu__arrow-icon {
    float: right;
    margin: 6px 0 0 0;
}

.menu__link {
    display: block;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
}

.menu__link:hover {
    text-decoration: none;
    background: #F0F0F0;
    transition: all 500ms ease-out;
}

.menu__link:visited {
    color: red;
    text-decoration: none;
}

.context-menu-container {
    position: absolute;
    margin-top: 15px;
    margin-left: 0px;
    left: 85px;
    width: 250px;
    height: 95%;
    background: #fefeff;
    border: 1px 1px 1px 1px solid #e8eaed;
    border-radius: 15px;
}

.context-menu {
    position: absolute;
    top: 0;
    width: 100%;
}

.context-menu__title {
    font-size: 15px;
    padding: 18px 0 17px 8px;
    border-bottom: 1px solid #E5E4E8;
    color: rgb(66, 66, 66)
}

.context-menu__title-icon {
    margin: 0 0 0 0;
}

.context-menu__btn-close {
    float: right;
    margin-right: 20px;
    font-size: 15px;
    cursor: pointer;
}

.context-menu__link {
    display: block;
    padding: 10px;
    text-decoration: none;
    background: transparent;
    font-size: 14px !important;
}

.context-menu__link:hover {
    text-decoration: none;
    background: #F2F2F3;
    cursor: pointer;
    color: black;
}

.context-menu__link:visited {
    color: #fff;
}

.context-menu__link--active {
    color: white !important;
    background: #4680A5;
}

.menu__link--active {
    background: #FAFAFC;
}

.slide-fade-enter-active {
    transition: all 0.2s ease;
}

.slide-fade-leave-active {
    transition: all 0.2s ease;
}

.slide-fade-enter,
.slide-fade-leave-to {
    transform: translate3d(-30px, 0, 0);
    opacity: 0;
}