#left-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    resize: horizontal;
    height: 100vh; 
    padding-top: 50px !important; /*if you change this padding, change class 'scrollarea' height attribute calc*/
    background-color: rgba(0, 85, 150, .1);
    border: solid rgba(0, 85, 150, .15);
    /* background-color: #dfdee0;
    border: solid #757576; */
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 85, 150, .1), inset 0 .125em .5em rgba(0, 85, 150, .15);
    box-sizing: border-box;
}
#content {
    margin-left: 225px;
}

.pageHeader, #footer {
    z-index: 10;
}

.scrollarea {
    padding-bottom: 50px;
    height: calc(100vh - 50px);
    overflow-y: auto;
}
.align-center {
    align-items: center;
} 
.colFlex {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    flex-shrink: 0 !important;
}
.ctrFlex {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}
.bgWhite {
    background-color: white;
}
.p1rem {
    padding: 1rem !important;
}
.txtDecNone {
    text-decoration: none !important;
}
.borderBottom {
    border-bottom: 1px solid #dee2e6 !important;
}
/* Section for responsive font-size */
.fs1 {
    font-size: calc(1.375rem + 1.5vw) !important;
}
.fs2 {
    font-size: calc(1.325rem + 0.9vw) !important;
}
.fs3 {
    font-size: calc(1.3rem + 0.6vw) !important;
}
.fs4 {
    font-size: calc(1.275rem + 0.3vw) !important;
}
.fs5 {
    font-size: 1.2rem !important;
}
.fs6 {
    font-size: 1rem !important;
}
/* Section for responsive padding on y-axis */
.py0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.py1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.py2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.py3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.py4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.py5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Section for list groups & list items */
.listGroupColumn {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
    box-sizing: border-box;
}  
.listGroupItemAction {
    width: 100%;
    color: #495057;
    text-align: inherit;
}
.listGroupItemAction:hover, .listGroupItemAction:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}
.listGroupItemAction:active {
    color: #212529;
    background-color: #e9ecef;
}
.listGroupItem {
    cursor: pointer;
    position: relative;
    display: block;
    padding: 0.64rem 1rem !important;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 85, 150, 0.125) !important;
    box-sizing: border-box;
}
.listGroupItem:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.listGroupItem:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}
.listGroupItem.disabled, .listGroupItem:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}
.listGroupItem.active {
    z-index: 2;
    color: #fff;
    background-color: #1BA3DD;
    border-color:#1BA3DD;
    /* background-color: #005596;
    border-color: #005596; */
}
.listGroupItem + .listGroupItem {
    border-top-width: 0;
}
.listGroupItem + .listGroupItem.active {
    margin-top: -1px;
    border-top-width: 1px;
}
.listGroupFlush {
    border-radius: 0;
}
.listGroupFlush > .listGroupItem {
    border-width: 0 0 1px;
}
.listGroupFlush > .listGroupItem:last-child {
    border-bottom-width: 0;
}
.pt-1 {
    padding-top: .6em !important;
}
@media screen and (max-width: 576px) {
    #left-sidebar {
      max-width: 75px;
    }
    .menuTitle {
        display: none;
    }
    #content {
        margin-left: 75px;
    }
    .listGroupItem {
        font-size: 12px;
        padding: 0.2rem 0.2rem !important;
        word-wrap: break-word;
        max-width: 75px;
    }
}