#body-row {
    margin-left:0;
    margin-right:0;
    /*margin-top: 3%;*/
}
#sidebar-container {
/*                height: 600px;
    min-height: 600px;*/
/*    background-color: white;
    padding: 0;*/
    /*overflow-y: scroll;*/
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: lightskyblue;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
/* Sidebar sizes when expanded and expanded */
.sidebar-expanded {width: 200px;}
.sidebar-collapsed {width: 45px;}
/* Menu item*/
#sidebar-container .list-group a {
    height: 45px;
    color: white;
}
/* Submenu item*/
#sidebar-container .list-group .sidebar-submenu a {
    height: 55px;
    padding-left: 30px;
}
.sidebar-submenu {
    font-size: 0.9rem;
    color: white;
}
/* Separators */
.sidebar-separator-title {
    background-color: #333;
    height: 40px;
}
.sidebar-separator {
    background-color: #333;
    height: 25px;
}
.logo-separator {
    background-color: #333;    
    height: 60px;
}
/* Closed submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="false"] .submenu-icon::after {
  content: " \f0d7";
  font-family: FontAwesome;
  display: inline;
  text-align: right;
  padding-left: 10px;
}
/* Opened submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="true"] .submenu-icon::after {
  content: " \f0d8";
  font-family: FontAwesome;
  display: inline;
  text-align: right;
  padding-left: 10px;
}
#mySidenav a {
    position: absolute; /* Position them relative to the browser window */
    right: -100px; /* Position them outside of the screen */
    transition: 0.3s; /* Add transition on hover */
    padding: 5px; /* 15px padding */
    /*width: 100px;  Set a specific width */
    text-decoration: none; /* Remove underline */
    font-size: 20px; /* Increase font size */
    color: white; /* White text color */
    border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
    border: none;
}
#mySidenav a:hover {
    right: 0; /* On mouse-over, make the elements appear as they should */
    border: none;
}
.sticky-container {
    padding: 0px;
    margin: 0px;
    position: fixed;
    right: -119px;
    width: 200px;
}
.sticky li {
    list-style-type: none;
    background-color: #002F58;
    color: #efefef;
    height: 43px;
    padding: 0px;
    margin: 0px 0px 1px 0px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    filter: gray;
}
.sticky li button{
    background-color: #002F58;
    border: none;
}
.sticky li:hover {
    margin-left: -115px;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}
.sticky li img {
    float: left;
    margin: 5px 5px;
    margin-right: 10px;
}
.sticky li i {
    float: left;
    margin: 7px 7px;
    margin-right: 18px;
    color: white;
    text-align: left;
}
.sticky li span {
    float: left;
    margin: 7px 7px;
    margin-right: 18px;
    color: white;
    text-align: left;
}
.sticky li p {
    padding: 0px;
    margin: 0px;
    text-transform: uppercase;
    line-height: 43px;
}
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}
#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
.social {
    position: fixed;
    top: 20px;
    right:0px;
}
.social ul {
    padding: 0px;
    -webkit-transform: translate(270px, 0);
    -moz-transform: translate(270px, 0);
    -ms-transform: translate(270px, 0);
    -o-transform: translate(270px, 0);
    transform: translate(270px, 0);
}
.social ul li {
    display: block;
    margin: 3px;
    background: rgba(171, 219, 209, 0.36);
    width: 300px;
    text-align: left;
    padding: 5px;
    -webkit-border-radius: 30px 0 0 30px;
    -moz-border-radius: 30px 0 0 30px;
    border-radius: 30px 0 0 30px;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
.social ul li:hover {
    -webkit-transform: translate(-110px, 0);
    -moz-transform: translate(-110px, 0);
    -ms-transform: translate(-110px, 0);
    -o-transform: translate(-110px, 0);
    transform: translate(-110px, 0);
    background: rgba(173, 178, 177, 0.4);
}
.social ul li:hover a {color: #007bff;text-decoration: none;}
.social ul li:hover i {
    color: #fff;
    background: #007bff;
}
.social ul li i {
    margin-right: 10px;
    color: white;
    background: #fff;
    padding: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 40px;
    height: 40px; 
    font-size: 20px;
    background: orange;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
/* width */ ::-webkit-scrollbar {width: 10px;}
/* Track */ ::-webkit-scrollbar-track {background: lightgray; }
/* Handle */ ::-webkit-scrollbar-thumb {background: lightgray;}
/* Handle on hover */ ::-webkit-scrollbar-thumb:hover {background: lightgray;}