#sidebar{
    background-color: #280C1E;
    background: rgba(30, 0, 19, 0.95);
    padding: 34px 28px 26px 28px; /* - 4px added left/right margin for :focus */
    min-height: calc(100vh - 80px - 92px); /* - header height - padding */
    position: relative;
}
.home #sidebar{
    background: rgba(30,0,19,0.9);
}

.sidebar-wrapper{
    position: fixed;
    top: 128px;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: scroll;    
    padding: 0 0 40px 0;
    max-width: calc(100% - 56px);
}
.sidebar-wrapper .scroll-wrapper{
    width: calc(20vw - 64px);
    margin: 4px; /* for :focus */
}
.sidebar-wrapper h4{
    color: #6F7170;
    margin: 12px 0;
}

.sidebar-wrapper .user-menu-content a:not(.btn){
    color: #547aee;
}

/* Scrollbar */
.sidebar-wrapper::-webkit-scrollbar {
    width: 4px;
}
.sidebar-wrapper::-webkit-scrollbar-track {
    background: none;
}
.sidebar-wrapper::-webkit-scrollbar-thumb {
    background: #5a5a5a;
	border-radius: 0px;
}
.sidebar-wrapper::-webkit-scrollbar-thumb:hover {
    background: #878587;
}

/* Slide In */
#sidebar.off-canvas{
    position: fixed;
    top: 80px;
    left: -100%;
    bottom: 0;
    transition: all 0.5s ease;
    z-index: 98;
}
#sidebar.off-canvas.in{
    left: 0;
}
#sidebar.off-canvas .sidebar-wrapper{
}


/* Login Form */
.login-wrapper .user-icon{
    width: 40px;
    height: 40px;
    background: url(../images/icons/account-green.svg) 50% 50% no-repeat;
    margin: 0 auto 20px;
}
.login-wrapper .login-title{
    font-size: 0.875em; /* 14px */
    font-weight: bold;
    line-height: 1; /* 16px */
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 44px;
}


/* Right Sidebar */
#right-sidebar{
    background: rgba(0,0,0,0.95);
    padding: 36px 32px 28px 32px;
    min-height: calc(100vh - 80px - 92px); /* - header height - padding */
    width: 20vw;
    color: #fff;
}
#right-sidebar.off-canvas{
    position: fixed;
    top: 80px;
    right: -100%;
    bottom: 0;
    /*transition: all 0.5s ease;*/
    z-index: 100;
}
#right-sidebar.off-canvas.in{
    /*right: 0;*/
}
#right-sidebar.off-canvas .sidebar-wrapper{
    position: absolute;
    top: 36px; /*116px;*/
}

.user-menu-content{
    display: none;
}

.icon-header{
    margin-bottom: 44px;
    text-align: center;
}
.icon-header .icon{
    width: 40px;
    height: 40px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto 16px;
}
.icon-header .user-icon{
    background-image: url(../images/icons/icon-user-green.svg);
}
.icon-header .globe-icon{
    background-image: url(../images/icons/icon-globe-blue.svg);
}
.icon-header .help-icon{
    background-image: url(../images/icons/icon-help-blue.svg);
}
.icon-header .label{
    font-size: 0.875em; /* 14px */
    font-weight: bold;
    line-height: 1; /* 16px */
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}
.icon-header .signout {margin-top: 22px;}


#feedback textarea{
    height: 368px;
}