body{
    font-family: "Times New Roman", Times, serif;
}
#body-row {
    margin-left:0;
    margin-right:0;
}

#sidebar-container {
    background-color: white;
    height: 100%;
}

#labelstyle{
    width: 90px;
    font-weight: bolder;
}

/* Sidebar sizes when expanded and expanded */
.sidebar-expanded {
    width: 220px;
}

.sidebar-collapsed {
    width: 60px;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    margin: 10px;
}
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

/* Menu item*/
#sidebar-container .list-group a {
    height: 45px;
    color: white;
}

/* Submenu item*/
#sidebar-container .list-group .sidebar-submenu a {
    height: 35px;
    padding-left: 30px;
}

.sidebar-submenu {
    font-size: 0.9rem;
}

/* Separators */
.sidebar-separator-title {
    background-color: #002F58;
    height: 35px;
}

.sidebar-separator {
    background-color: #002F58;
    height: 25px;
}

.logo-separator {
    background-color: #002F58;    
    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: " \f0da";
  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;
}

#padding{
    padding: 0;
}

.blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {  
    50% { opacity: 0; }
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: whitesmoke; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #555; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}