﻿:root {
    --height-Header: 3.5rem;
}

.HeaderBar {
    height: var(--height-Header);
}

.Main {
    height: calc(100vh - var(--height-Header));

}

.SideBar {
    width: 11rem;
    min-width: 11rem;
}

.MobileMenu {
    z-index: 1;
    position: fixed;
    width: 100%;
}

@media (min-width: 1200px) {
    .MobileShow {
        display: none;
    }
}

@media (max-width: 1200px) {
    .MobileShow {
        display: inline-block;
    }
}
.Unlinelinks {
    text-decoration: none;
}
.MinWidth-200 {
    min-width:160px;
}
.cur-hand{
    cursor:pointer;
}