/* CSS Document */

.btn-label {
    position: relative;
    left: -12px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0,0,0,0.15);
    border-radius: 3px 0 0 3px;}

.btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-logo {
    height: 70px;
    padding: 0px;
    padding-left: 15px;
    padding-right: 20px
}

.navbar-logo-xs {
    height: 70px;
    padding: 10px;
    padding-left: 5px;
}

.navbar-title-xs {
    margin-top: -4px;
    margin-left: -15px;
    font-size: 1.1em;
}

.navbar img {  
  height: 70px;
}


/* Style the links inside the sidenav */
#backButton a {
    position: absolute; /* Position them relative to the browser window */
    left: -10px; /* Position them outside of the screen */
    /* top: 72px; */
    transition: 0.3s; /* Add transition on hover */
    padding: 10px; /* 10px padding */
    width: 35x; /* Set a specific width */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Increase font size */
    color: white; /* White text color */
    border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
    margin-top: 1em;
}

#backButton a:hover {
	left: 0; /* On mouse-over, make the elements appear as they should */
}

.panel-heading a.collapsed .glyphicon-chevron-down {
  transform:rotateX(0deg);
}
.panel-heading a .glyphicon-chevron-down {
  transition:transform .5s;
  transform:rotateX(180deg);
}